Agent skill
Write Noridoc
Write or update documentation in the server-side noridocs system.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/write-noridoc
SKILL.md
Write Noridoc
Writes documentation to the server-side noridocs system.
When to Use
Use this when:
- Creating new server-side documentation
- Updating existing noridoc content
- Adding git repository links to docs
Use regular Write tool instead for:
- Local file modifications
- Files not managed by noridocs
Usage
node {{skills_dir}}/write-noridoc/script.js --filePath="@<repository>/path" --content="# Documentation" [--gitRepoUrl="https://github.com/..."]
Parameters
--filePath(required): Path in format@<repository>/<path>(e.g.,@my-repo/server/src/persistence)- Use
@<repository>/pathfor repository-scoped docs - Use
@/pathor plain paths forno-repositoryscope (backward compatible)
- Use
--content(required): Markdown content--gitRepoUrl(optional): Link to git repository
Repository Detection
The repository is automatically extracted from the filePath by the server:
@my-repo/server/src/api→ repository:my-repo@/server/src/api→ repository:no-repositoryserver/src/api→ repository:no-repository
Repository names must be lowercase letters, numbers, and hyphens only.
Examples
Create repository-scoped noridoc
node {{skills_dir}}/write-noridoc/script.js \
--filePath="@my-repo/server/src/api" \
--content="# API Client
Provides access to Nori backend." \
--gitRepoUrl="https://github.com/username/my-repo"
Create noridoc without repository scope
node {{skills_dir}}/write-noridoc/script.js \
--filePath="@/server/src/api" \
--content="# API Client"
Output
Returns confirmation with version number (creates new version automatically).
Requirements
- Paid Nori subscription
- Configured credentials in
~/nori-config.json
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?