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

OPC Landing Page Manager

Landing page strategy, copywriting, design, and code generation for solo entrepreneurs. From product idea to a complete, self-contained, conversion-optimized...

Registry SourceRecently Updated
Coding

OPC Product Manager

Product spec generation for solo entrepreneurs. Turns a one-sentence idea into a build-ready spec that AI coding agents (Claude Code, etc.) can execute direc...

Registry SourceRecently Updated
Coding

设备

Use when querying or modifying device configurations on ESD service, calling REST APIs with sigV2 authentication on HK baseline or STG environments

Registry SourceRecently Updated
Coding

My Agent Browser

A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured co...

Registry SourceRecently Updated