wordspace
Original:🇺🇸 English
Translated
CLI for bootstrapping and managing wordspace projects
68installs
Added on
NPX Install
npx skill4agent add frames-engineering/wordspace wordspaceTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Wordspace
Wordspace is a CLI tool that bootstraps project workspaces with workflows — reusable programs fetched from GitHub.
.proseWhen to activate
Activate this skill when the user:
- Wants to set up a new wordspace project
- Wants to browse, search, or add workflows
- Mentions "wordspace" by name
- Asks about available workflows or how to get new ones
Commands
wordspace init
wordspace initBootstrap a new project in the current directory. Runs three steps:
- Workflows — Fetches available workflows from GitHub and presents an interactive picker. The user selects which ones to download. In CI (non-TTY), all workflows are downloaded automatically.
.prose - Claude settings — Creates with base permissions (
.claude/settings.local.json,curl,python3,WebFetch).WebSearch - Directories — Creates the directory.
output/
Use to re-download workflows that already exist locally.
--forcewordspace search [query]
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> [...]
wordspace add <name> [...]Download one or more specific workflows by name. Automatically appends if missing.
.prosewordspace add x-daily-pulse
wordspace add x-daily-pulse x-weekly-report
wordspace add x-daily-pulse --force # overwrite existingProject structure after init
project/
├── .claude/
│ └── settings.local.json # Claude permissions
├── workflows/
│ └── *.prose # downloaded workflow files
├── output/ # working directory for outputs
└── skills/
└── wordspace/
└── SKILL.md # this fileWorkflow picker (during init)
When running , the CLI presents a numbered list of available workflows. The user can respond with:
wordspace init- or press Enter — download everything
all - or
none— skip workflow download0 - — pick specific numbers
1,3,5 - — pick a range
1-3 - — mix of both
1,3-5,7
Installation
npx wordspace initOr install globally:
npm i -g wordspace
wordspace init