build-workspace-docs
SolidUse when regenerating README.md and WORK_AREAS.md in a managed library workspace. Always dry-run first to preview changes.
Web & Frontend 1,073 stars
124 forks Updated 1 months ago MIT
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Build Workspace Docs
## Goal
Keep workspace documentation in sync with the skills catalog after adding, removing, or curating skills.
## Guardrails
- Always use `--dry-run` before regenerating docs to preview what will change.
- Only run from inside an initialized library workspace (a directory with `.workspace.json`).
- Never hand-edit the generated sections of README.md or WORK_AREAS.md. The CLI will overwrite them.
- Use `--format json` to capture structured results for automation pipelines.
## Workflow
1. Preview what would change.
```bash
npx ai-agent-skills build-docs --dry-run
```
2. Regenerate the docs.
```bash
npx ai-agent-skills build-docs
```
3. Verify the output.
```bash
npx ai-agent-skills build-docs --dry-run --format json
```
The JSON output includes `currentlyInSync` to tell you whether docs were already up to date.
## When to Run
- After `add`, `catalog`, `vendor`, or `curate` commands that change the skills catalog.
- After bulk imports from a remote library.
- Before committing workspace changes to git.
## Gotchas
- Running outside a workspace will fail with a clear error. Use `init-library` to create one first.
- The generated docs use HTML comment markers (`<!-- GENERATED:...:start/end -->`) as boundaries. Do not remove these markers from the template sections.
Details
- Author
- MoizIbnYousaf
- Repository
- MoizIbnYousaf/Ai-Agent-Skills
- Created
- 5 months ago
- Last Updated
- 1 months ago
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
docs-generate-agents-md
Give every AI agent in your repo the same context about your docs. Reads your Docsbook workspace and writes an AGENTS.md at repo root so Claude Code, Cursor, Codex, Copilot and Gemini CLI all start each session knowing the docs URL, languages, AI-chat conventions and available @docs-skills commands.
0 Updated 6 days ago
Docsbook-io AI & Automation Solid
init-workspace-documentation
Rosetta skill to create CONTEXT.md, ARCHITECTURE.md, IMPLEMENTATION.md, ASSUMPTIONS.md, and AGENT MEMORY.md from workspace analysis.
295 Updated today
griddynamics AI & Automation Listed
workspace-standards
Use when setting up or managing multi-repo workspaces
3 Updated today
JacobPEvans