Agent skill
List Noridocs
List all server-side noridocs, optionally filtered by repository and/or path prefix.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/list-noridocs
SKILL.md
List Noridocs
Lists all noridocs, optionally filtered by repository and/or path prefix.
When to Use
Use this when:
- Exploring available server-side documentation
- Finding docs in a specific repository
- Finding docs in a specific directory/module
- Checking what documentation exists
Usage
node {{skills_dir}}/list-noridocs/script.js [--repository="repo-name"] [--pathPrefix="@/server"] [--limit=100]
Parameters
--repository(optional): Filter by repository name (e.g., "my-repo", "no-repository")--pathPrefix(optional): Filter by prefix like "@/server" or "@my-repo/server"--limit(optional): Maximum results (default: 100)
Examples
# List all noridocs
node {{skills_dir}}/list-noridocs/script.js
# List noridocs in my-repo repository
node {{skills_dir}}/list-noridocs/script.js --repository="my-repo"
# List noridocs under server directory (any repository)
node {{skills_dir}}/list-noridocs/script.js --pathPrefix="@/server"
# Combine repository and path filtering
node {{skills_dir}}/list-noridocs/script.js --repository="my-repo" --pathPrefix="@my-repo/server"
# List with custom limit
node {{skills_dir}}/list-noridocs/script.js --repository="my-repo" --limit=50
Repository Filtering
- Use
--repositoryto filter by repository scope - Repository names match those in the
@<repository>/pathformat - Use
"no-repository"to find docs without a repository scope (old@/format) - Server-side filtering is more efficient than client-side path filtering
Output
Returns list of noridoc paths with last updated timestamps.
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?