← 返回 Skills 市场
test
作者
fxdm41202425
· GitHub ↗
· v1.0.0
· MIT-0
223
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install fxdm-test-skill
功能描述
Manage test boards, lists, and cards via the Trello REST API.
使用说明 (SKILL.md)
Trello Skill
Manage Trello boards, lists, and cards directly from Clawdbot.
Setup
- Get your API key: https://trello.com/app-key
- Generate a token (click "Token" link on that page)
- Set environment variables:
export TRELLO_API_KEY="your-api-key" export TRELLO_TOKEN="your-token"
Usage
All commands use curl to hit the Trello REST API.
List boards
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
List lists in a board
curl -s "https://api.trello.com/1/boards/{boardId}/lists?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
List cards in a list
curl -s "https://api.trello.com/1/lists/{listId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id, desc}'
Create a card
curl -s -X POST "https://api.trello.com/1/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
-d "idList={listId}" \
-d "name=Card Title" \
-d "desc=Card description"
Move a card to another list
curl -s -X PUT "https://api.trello.com/1/cards/{cardId}?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
-d "idList={newListId}"
Add a comment to a card
curl -s -X POST "https://api.trello.com/1/cards/{cardId}/actions/comments?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
-d "text=Your comment here"
Archive a card
curl -s -X PUT "https://api.trello.com/1/cards/{cardId}?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
-d "closed=true"
Notes
- Board/List/Card IDs can be found in the Trello URL or via the list commands
- The API key and token provide full access to your Trello account - keep them secret!
- Rate limits: 300 requests per 10 seconds per API key; 100 requests per 10 seconds per token;
/1/membersendpoints are limited to 100 requests per 900 seconds
Examples
# Get all boards
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN&fields=name,id" | jq
# Find a specific board by name
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | select(.name | contains("Work"))'
# Get all cards on a board
curl -s "https://api.trello.com/1/boards/{boardId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, list: .idList}'
安全使用建议
This skill appears to do exactly what it says: run curl calls against the Trello REST API and format results with jq. Before installing: 1) Confirm the publisher/metadata mismatch (skill labeled "test" vs SKILL.md "trello" and differing ownerId) — this is likely benign but worth verifying. 2) Ensure curl is available on your agent host (the SKILL.md assumes curl but the required binaries list only jq). 3) Treat TRELLO_API_KEY and TRELLO_TOKEN as sensitive — they grant full account access; store them securely and consider creating a limited-scope token if possible. 4) Remember the agent can perform network operations autonomously by default; if you don’t want the agent to act without explicit approval, disable autonomous invocation for this skill. If you want, ask the publisher to fix metadata and declare curl in required binaries for clearer provenance.
功能分析
Type: OpenClaw Skill
Name: fxdm-test-skill
Version: 1.0.0
The skill bundle provides standard Trello API integration using curl and jq, as described in SKILL.md. All network requests are directed to the official Trello API (api.trello.com) for legitimate management tasks like listing boards and creating cards. There is no evidence of data exfiltration, malicious execution, or prompt injection.
能力评估
Purpose & Capability
The SKILL.md implements Trello REST API operations and requires TRELLO_API_KEY and TRELLO_TOKEN, which is proportionate to the stated purpose. Minor inconsistency: the top-level metadata lists the skill name as "test"/slug fxdm-test-skill while SKILL.md uses name: "trello"; _meta.json ownerId also differs from the registry ownerId. These are likely packaging/metadata errors but should be confirmed with the publisher.
Instruction Scope
Runtime instructions are explicit and limited to calling Trello endpoints with curl and formatting output with jq. They do not ask for unrelated files or system data. However, the instructions rely heavily on curl (numerous curl examples) but the required binaries list only jq — curl is not declared as a required binary. Also the skill runs network requests using the provided API key/token (expected for this purpose) — be aware the agent will transmit your Trello credentials to api.trello.com when invoked.
Install Mechanism
Instruction-only skill with no install spec or code files. This is the lowest-risk install model because nothing is written to disk by the skill bundle itself.
Credentials
The skill only requests TRELLO_API_KEY and TRELLO_TOKEN, which are appropriate and necessary for the Trello REST API. The SKILL.md explicitly warns the credentials provide full account access. No other unrelated secrets or config paths are requested.
Persistence & Privilege
The skill is not marked always:true and does not request modification of other skills or agent-wide settings. It can be invoked autonomously (default), which is normal — but combined with network access and your Trello token that increases the blast radius if you enable autonomous actions.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install fxdm-test-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/fxdm-test-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- Removed the _meta.json file from the skill.
- Updated SKILL.md: changed name to "test", adjusted description and homepage, and modified required environment variables in metadata.
v1.0.0
only for test.
元数据
常见问题
test 是什么?
Manage test boards, lists, and cards via the Trello REST API. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 223 次。
如何安装 test?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install fxdm-test-skill」即可一键安装,无需额外配置。
test 是免费的吗?
是的,test 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
test 支持哪些平台?
test 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 test?
由 fxdm41202425(@fxdm41202425)开发并维护,当前版本 v1.0.0。
推荐 Skills