collavre

Manage Collavre Creatives (hierarchical tasks/content blocks) via CLI. Use when creating, retrieving, updating, importing, or batch-operating on Creatives. Creatives are tree-structured items with automatic progress rollup — like a smart to-do list that doubles as a structured document.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "collavre" with this command: npx skills add sh1nj1/plan42/sh1nj1-plan42-collavre

Collavre

CLI for managing Collavre Creatives via MCP protocol.

Setup

# Configure (once)
collavre auth --url https://collavre.example.com --token <oauth_token>

# Verify
collavre list

The collavre script lives in scripts/collavre. Config is stored at ~/.config/collavre/config.json.

Commands

List root creatives

collavre list
collavre list --level 5              # deeper tree
collavre list --format json          # structured output

Get a creative subtree

collavre get 123
collavre get 123 --level 5 --comments

Search

collavre search "project name"
collavre search "urgent" --tags "v2"

Create

collavre create --parent 123 --desc "New task"
collavre create --parent 123 --desc "<h1>Rich content</h1>"

Update

collavre update 456 --desc "Updated title"
collavre update 456 --progress 1.0        # mark complete (leaf only)
collavre update 456 --parent 789           # move

Import markdown

collavre import --parent 123 --file plan.md
collavre import --parent 123 --stdin < plan.md
echo "# Quick\n## Plan" | collavre import --parent 123 --stdin

Batch operations

collavre batch --file ops.json

ops.json format:

[
  { "action": "create", "parent_id": 100, "description": "Task A" },
  { "action": "update", "id": 200, "progress": 1.0 },
  { "action": "delete", "id": 300 }
]

Key Concepts

  • Tree structure: Creatives nest via parent_id. Use --level to control depth.
  • Progress: Leaf = manual (0.0 or 1.0). Parent = auto-calculated from children.
  • Import: Markdown headings/bullets become nested Creatives.
  • Batch: All-or-nothing transaction. Requires approval.
  • Description format: Accepts HTML. Plain text auto-wraps in <p> tags.

For detailed MCP tool parameters, see references/tool-reference.md.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated
Coding

ai-dating

This skill enables dating and matchmaking workflows. Use it when a user asks to make friends, find a partner, run matchmaking, or provide dating preferences/profile updates. The skill should execute `dating-cli` commands to complete profile setup, task creation/update, match checking, contact reveal, and review.

Archived SourceRecently Updated
collavre | V50.AI