wordspace
467
总安装量
467
周安装量
#1448
全站排名
安装命令
npx skills add https://github.com/frames-engineering/wordspace --skill wordspace
Agent 安装分布
github-copilot
467
codex
467
kimi-cli
467
gemini-cli
467
cursor
467
amp
467
Skill 文档
Wordspace
Wordspace is a CLI tool that bootstraps project workspaces with workflows â reusable .prose programs fetched from GitHub.
When 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
Bootstrap a new project in the current directory. Runs three steps:
- Workflows â Fetches available
.proseworkflows 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 â Creates
.claude/settings.local.jsonwith base permissions (curl,python3,WebFetch,WebSearch). - Directories â Creates the
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 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 file
Workflow picker (during init)
When running wordspace init, the CLI presents a numbered list of available workflows. The user can respond with:
allor press Enter â download everythingnoneor0â skip workflow download1,3,5â pick specific numbers1-3â pick a range1,3-5,7â mix of both
Installation
npx wordspace init
Or install globally:
npm i -g wordspace
wordspace init