ワンクリックで
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.