원클릭으로
trello
Manage Trello boards/lists/cards via aivault-backed capabilities (no Trello key/token in skill runtime).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage Trello boards/lists/cards via aivault-backed capabilities (no Trello key/token in skill runtime).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Complete guide for building Moldable apps. Use this skill when creating or modifying apps, creating or managing Scheduled automations, implementing workspace-aware storage, using typed native APIs for media, location, clipboard, notifications, displays, shortcuts, power/session state, local authentication, haptics, secure storage, USB, HID, serial, MIDI, or Bluetooth, declaring nativeHardware permissions, integrating with Moldable desktop messages, publishing artifacts, configuring workspaces, managing skills/MCPs, or troubleshooting app issues.
Author, review, and template beautiful responsive presentations and interactive web artifacts in the Moldable Slides and Artifacts apps. Use when the user wants to create or edit a slide deck, pitch, talk, interactive report, calculator/chart/table experience, durable runtime state, deck/page template, or publishable artifact in Moldable. Covers optional deck runtimes, staged builds, responsive page/deck authoring, persistence, and the Slides/Artifacts RPC APIs instead of standalone files.
Complete guide for using aivault as a zero-trust local vault and proxy for API secrets. Use this skill when initializing/configuring aivault, managing secrets and credentials, invoking capability-backed API calls, setting workspace/group isolation, adding custom providers, or troubleshooting daemon and policy issues.
Search, scrape, crawl, map, parse, and operate Firecrawl browser/agent workflows through aivault-backed Firecrawl API capabilities. No Firecrawl API key is read by the skill runtime.
Transcribe audio with Deepgram through aivault capability json (no provider API key in skill runtime).
Transcribe audio with ElevenLabs speech-to-text through aivault capability json (no provider API key in skill runtime).
| name | trello |
| description | Manage Trello boards/lists/cards via aivault-backed capabilities (no Trello key/token in skill runtime). |
| compatibility | Requires `aivault` CLI and Node.js (runs via `npx tsx`). |
| credentials | [{"name":"TRELLO_API_KEY","description":"Trello API key for board access","required":true},{"name":"TRELLO_TOKEN","description":"Trello member token with read/write scope","required":true}] |
This skill uses aivault to keep your Trello credentials safe.
Install aivault if it is not already available:
curl -fsSL https://aivault.moldable.sh/install.sh | sh
Store your Trello API key and user token in aivault. The credential and all trello/* capabilities are auto-provisioned once both secrets are present.
aivault secrets create --name TRELLO_API_KEY --value "YOUR_API_KEY" --scope global
aivault secrets create --name TRELLO_TOKEN --value "YOUR_USER_TOKEN" --scope global
TRELLO_API_KEY — your Trello API key (from Power-Up admin)TRELLO_TOKEN — a user token (granted via trello.com/1/authorize)This skill uses trello/members, trello/boards, trello/lists, and trello/cards. The registry also includes capabilities for actions, checklists, labels, organizations, search, webhooks, and more — run aivault capability list to browse.
npx -y tsx {baseDir}/scripts/trello.ts boards-list
npx -y tsx {baseDir}/scripts/trello.ts boards-list --json
npx -y tsx {baseDir}/scripts/trello.ts lists-list --board-id <board-id>
npx -y tsx {baseDir}/scripts/trello.ts cards-list --list-id <list-id>
npx -y tsx {baseDir}/scripts/trello.ts card-create --list-id <list-id> --name "Ship it" --desc "Created via aivault"