npx claudepluginhub joshuarweaver/cascade-content-creation-misc-2 --plugin frames-engineering-skills-3This skill uses the workspace's default tool permissions.
Wordspace is a CLI tool that bootstraps project workspaces with workflows — reusable `.prose` programs fetched from GitHub.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Wordspace is a CLI tool that bootstraps project workspaces with workflows — reusable .prose programs fetched from GitHub.
Activate this skill when the user:
wordspace initBootstrap a new project in the current directory. Runs three steps:
.prose workflows from GitHub and presents an interactive picker. The user selects which ones to download. In CI (non-TTY), all workflows are downloaded automatically..claude/settings.local.json with base permissions (curl, python3, WebFetch, WebSearch).output/ directory.Use --force to re-download workflows that already exist locally.
wordspace search [query]List all available workflows from the remote repository. Optionally filter by a substring query.
wordspace search # list all
wordspace search pulse # filter by "pulse"
wordspace add <name> [...]Download one or more specific workflows by name. Automatically appends .prose if missing.
wordspace add x-daily-pulse
wordspace add x-daily-pulse x-weekly-report
wordspace add x-daily-pulse --force # overwrite existing
project/
├── .claude/
│ └── settings.local.json # Claude permissions
├── workflows/
│ └── *.prose # downloaded workflow files
├── output/ # working directory for outputs
└── skills/
└── wordspace/
└── SKILL.md # this file
When running wordspace init, the CLI presents a numbered list of available workflows. The user can respond with:
all or press Enter — download everythingnone or 0 — skip workflow download1,3,5 — pick specific numbers1-3 — pick a range1,3-5,7 — mix of bothnpx wordspace init
Or install globally:
npm i -g wordspace
wordspace init