一键导入
trello-cli
Use Trello CLI in orgops agents for Trello board/list/card operations with non-interactive command patterns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use Trello CLI in orgops agents for Trello board/list/card operations with non-interactive command patterns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create, list, and configure OrgOps agents from native agents. Use when the user asks an agent to create agents, list agents, set up WRAPPED agents, OpenClaw wrappers, sidecars, or Cursor coding harnesses.
Manage package secrets (write, list keys, delete). Secrets are stored encrypted; agents can set values and list or delete keys but cannot read secret values. Use for API keys and tokens (e.g. OPENAI_API_KEY). Values are injected as env when running skills and LLM.
Thin CLI bridge to Cursor via official @cursor/sdk (prompt -> streamed stdout)
Use Google Cloud CLI (gcloud) for project/account checks and Google API operations. Use when users ask for gcloud commands, Google Cloud auth, project configuration, IAM, or cloud resource inspection and updates.
Install and use Tavily CLI (tvly) for web search/extract/crawl. Uses secret/env TAVILY_API_KEY.
Slack skill: per-agent Slack skill + Socket Mode listener server. Run the server on lifecycle start.
| name | trello-cli |
| description | Use Trello CLI in orgops agents for Trello board/list/card operations with non-interactive command patterns. |
Use this skill as a lightweight wrapper around the local Trello CLI.
Store Trello API credentials under the trello package using the secrets skill:
TRELLO_API_KEYTRELLO_TOKENExample:
node --import tsx skills/secrets/assets/set.ts -- trello TRELLO_API_KEY <value>
node --import tsx skills/secrets/assets/set.ts -- trello TRELLO_TOKEN <value>
The runner injects secrets as environment variables, and this skill's scripts use those env vars automatically.
Run this first:
node --import tsx skills/trello-cli/assets/ensure.ts
What it checks:
npx is available@trello-cli/cli)TRELLO_API_KEY and TRELLO_TOKEN)Use the wrapper script:
node --import tsx skills/trello-cli/assets/run.ts -- --help
Examples:
node --import tsx skills/trello-cli/assets/run.ts -- boards
node --import tsx skills/trello-cli/assets/run.ts -- cards --help
If your command supports JSON output, pass its JSON flag so downstream agents can parse results deterministically.
skills/trello-cli/assets/ensure.ts before real work.TRELLO_API_KEY and TRELLO_TOKEN setup.