frames-engineering/skills

wordspace

CLI for bootstrapping and managing wordspace projects

First seen Feb 15, 2026

Installation

$ npx skills add frames-engineering/skills --skill wordspace

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from frames-engineering/skills.

npx skills add frames-engineering/skills

Browse all from frames-engineering/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4
Default branch main
Open issues 7
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.0.5
Declared agents claude-code
More metadata
category
tooling
triggers
["wordspace","wordspace init","wordspace search","wordspace add","add workflow","search workflow","browse workflows"]
requires
{ bins: ["node", "npx"] }

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,564 B
  • docs SUMMARY.md 67 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1,041 installs

SKILL.md

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:

  1. Workflows — Fetches available .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.
  2. Claude settings — Creates .claude/settings.local.json with base permissions (curl, python3, WebFetch, WebSearch).
  3. 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:

  • all or press Enter — download everything
  • none or 0 — skip workflow download
  • 1,3,5 — pick specific numbers
  • 1-3 — pick a range
  • 1,3-5,7 — mix of both

Installation

npx wordspace init

Or install globally:

npm i -g wordspace
wordspace init