← 返回 Skills 市场
stanestane

Flickr Claw

作者 Stanislav Stankovic · GitHub ↗ · v1.5.0 · MIT-0
cross-platform ✓ 安全检测通过
138
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install flickr-claw
功能描述
Access Flickr with user-supplied local API credentials and OAuth tokens, verify authorization, export recent-upload or album metadata, download recent or alb...
使用说明 (SKILL.md)

Flickr Claw

Use the bundled script for Flickr authentication, export, download, and metadata editing.

Security & Privacy

  • This skill keeps Flickr credentials and OAuth tokens on the local machine.
  • The bundled script talks only to official Flickr OAuth and REST endpoints.
  • The skill does not send Flickr credentials, tokens, album data, or photo metadata to any third-party service by itself.
  • Review the bundled Python script before trusting it in your environment, especially before using write-capable tokens.

Requirements

Have these available before using the skill:

  • A Flickr API key and secret from the user's own Flickr app
  • Python
  • requests-oauthlib
  • A local credentials file at ~/.openclaw/flickr-app-credentials.json

Install the Python dependency with:

pip install requests-oauthlib

Credentials file format:

{
  "api_key": "YOUR_FLICKR_API_KEY",
  "api_secret": "YOUR_FLICKR_API_SECRET"
}

Quick start

Run from the workspace root:

Cross-platform form

python skills/flickr-claw/scripts/flickr_skill.py --check-auth
python skills/flickr-claw/scripts/flickr_skill.py --list-albums
python skills/flickr-claw/scripts/flickr_skill.py --album-photos --album-id ALBUM_ID --out ./flickr_album_photos.csv

Windows PowerShell form

python .\skills\flickr-claw\scripts\flickr_skill.py --check-auth
python .\skills\flickr-claw\scripts\flickr_skill.py --list-albums
python .\skills\flickr-claw\scripts\flickr_skill.py --album-photos --album-id ALBUM_ID --out .\flickr_album_photos.csv

If --check-auth fails because credentials or tokens are missing, use the authorization flow in references/workflow.md.

Workflow

  1. Confirm credentials exist at ~/.openclaw/flickr-app-credentials.json.
  2. Run --check-auth before larger operations.
  3. Use --list-albums to find the album/photoset ID you want.
  4. Use --album-photos or --download-album when you want to work from a specific album instead of recent uploads.
  5. Use a read token for export-only work.
  6. Use a write token for tags, titles, or descriptions.
  7. Prefer --add-tags over --set-tags unless full replacement is intended.
  8. Use --download-latest or --download-album before real image review.
  9. Delete local downloaded image copies after tagging/review unless the user explicitly wants to keep them.
  10. Expect occasional Flickr UI lag after writes; verify through API or refresh later if needed.

Metadata guidance

  • Preserve useful existing location and event tags unless cleanup is requested.
  • Add subject/content tags from real image review when the user wants actual image understanding.
  • Keep tags concrete and searchable: subject, scene, material, environment, light, place.
  • Avoid speculative tags.
  • Prefer short descriptive titles and plain factual descriptions unless the user asks for a different style.

Commands

Check auth

python skills/flickr-claw/scripts/flickr_skill.py --check-auth

List albums

python skills/flickr-claw/scripts/flickr_skill.py --list-albums

Export photos from one album

python skills/flickr-claw/scripts/flickr_skill.py --album-photos --album-id ALBUM_ID --out ./flickr_album_photos.csv

Download one album for local review

python skills/flickr-claw/scripts/flickr_skill.py --download-album --album-id ALBUM_ID --out-dir ./flickr-album-downloads

Start write auth

python skills/flickr-claw/scripts/flickr_skill.py --start-auth --perms write

Finish auth

python skills/flickr-claw/scripts/flickr_skill.py --finish-auth --verifier CODE

Audit recent uploads

python skills/flickr-claw/scripts/flickr_skill.py --audit --days 30 --out ./flickr_recent_uploads_audit.csv

Download latest images for local review

python skills/flickr-claw/scripts/flickr_skill.py --download-latest --count 10 --days 30 --out-dir ./flickr-latest-downloads

Add tags to a photo

python skills/flickr-claw/scripts/flickr_skill.py --add-tags --photo-id PHOTO_ID --tags "harbor, waterfront, blue-sky"

Replace all tags on a photo

python skills/flickr-claw/scripts/flickr_skill.py --set-tags --photo-id PHOTO_ID --tags "harbor waterfront cityscape"

Set title only

python skills/flickr-claw/scripts/flickr_skill.py --set-title --photo-id PHOTO_ID --title "Urban waterfront scene"

Set description only

python skills/flickr-claw/scripts/flickr_skill.py --set-description --photo-id PHOTO_ID --description "View across an urban waterfront with clear weather and industrial details."

Set title and description together

python skills/flickr-claw/scripts/flickr_skill.py --set-meta --photo-id PHOTO_ID --title "Urban waterfront scene" --description "View across an urban waterfront with clear weather and industrial details."

Publication scope

Include:

  • auth flow
  • auth verification
  • album listing/export/download
  • recent-upload audit export
  • recent-image download
  • tag/title/description editing

Exclude:

  • real API keys or secrets
  • OAuth tokens
  • request-token files
  • user-specific audit CSVs, manifests, or downloaded images
  • account-specific examples when generic ones work

Resources

  • scripts/flickr_skill.py — Flickr helper with auth, verification, album/recent export, download, and metadata editing support.
  • references/workflow.md — setup details and command examples.
安全使用建议
This skill appears to do what it says: it uses local Flickr API credentials and OAuth tokens to read/export/download and optionally edit metadata. Before using it: (1) review the bundled Python script yourself (or with someone you trust) before running, especially if you plan to perform write operations; (2) keep your Flickr api_key/api_secret and access-token files in a safe location (the script stores them under ~/.openclaw) and do not share them; (3) the registry metadata omitted declaring the required credentials file and the need for Python + requests-oauthlib — make sure you have those and point token files to the expected paths or use flags to override; (4) prefer read-only tokens for exports and only mint write tokens when you intend to edit tags/titles/descriptions; and (5) delete downloaded image copies when you no longer need them. If you want higher assurance, run the script in a sandboxed environment or inspect the full script logic for any changes before granting write permission.
功能分析
Type: OpenClaw Skill Name: flickr-claw Version: 1.5.0 The flickr-claw skill is a legitimate tool for managing Flickr photo metadata and downloads using the official Flickr API. It implements a standard OAuth 1.0a flow, stores user-provided credentials and tokens locally in ~/.openclaw/ as documented, and communicates exclusively with official flickr.com endpoints. The Python script scripts/flickr_skill.py and the agent instructions in SKILL.md are transparent, well-documented, and contain no signs of malicious intent, data exfiltration, or unauthorized execution.
能力评估
Purpose & Capability
Name/description (Flickr auth, export, download, edit metadata) match the included Python script and README. The script performs Flickr OAuth, API reads/writes, album listing, CSV export, and image download — all consistent with the stated capability.
Instruction Scope
SKILL.md instructs the agent to read/write local Flickr credential and token files, call Flickr OAuth and REST endpoints, and optionally download images locally or perform write actions. It does not instruct collection of unrelated system files or transmission to third-party endpoints beyond Flickr.
Install Mechanism
No install spec is provided (instruction-only with bundled script). The skill relies on the user having Python and the requests-oauthlib package; nothing is downloaded from third-party URLs or installed automatically.
Credentials
The skill uses local credential and token files under ~/.openclaw (api_key/api_secret and request/access token files), which is appropriate for Flickr integration. However, the registry metadata did not declare the required config path or list Python/requests-oauthlib as a requirement — a minor metadata omission the user should be aware of. The script stores tokens locally and requires user-supplied write-capable tokens for edits; those are sensitive and proportional to the feature set.
Persistence & Privilege
always:false and no system-wide configuration changes. The script writes only its own credential/request/access token files under the user's home ~/.openclaw directory and output CSVs/downloads to the current working directory (or specified out/out-dir). It does not modify other skills or global agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install flickr-claw
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /flickr-claw 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.5.0
- Adds album support: list, export, and download photos from specific Flickr albums. - Renamed skill to flickr-claw. - Updated description, commands, and documentation for album features. - Expanded publication scope to include album operations. - No code changes detected for this version.
v1.0.0
Initial release of flickr-tagging skill. - Provides local-only Flickr API access using user-supplied credentials and OAuth tokens. - Supports authentication, authorization verification, audit of recent uploads, and local download of recent images. - Enables local editing of Flickr photo tags, titles, and descriptions. - Includes detailed security, usage, and metadata guidance. - Ships with command-line scripts for all operations; works cross-platform.
元数据
Slug flickr-claw
版本 1.5.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Flickr Claw 是什么?

Access Flickr with user-supplied local API credentials and OAuth tokens, verify authorization, export recent-upload or album metadata, download recent or alb... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 138 次。

如何安装 Flickr Claw?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install flickr-claw」即可一键安装,无需额外配置。

Flickr Claw 是免费的吗?

是的,Flickr Claw 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Flickr Claw 支持哪些平台?

Flickr Claw 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Flickr Claw?

由 Stanislav Stankovic(@stanestane)开发并维护,当前版本 v1.5.0。

💬 留言讨论