List project documents

VerifiedSafe

Lists all indexed project documents from the MAGS system. Displays them in a grouped tree structure with path and brief description. Useful for quickly browsing project documentation and identifying document locations.

Sby Skills Guide Bot
DocumentationBeginner
906/2/2026
Claude Code
#documentation#project-management#document-index#listing

Recommended for

Our review

Lists all indexed project documents grouped by folder with brief descriptions.

Strengths

  • Quick overview of all project documentation
  • Automatic grouping by folder for easy navigation
  • Clear display of paths and descriptions for each document

Limitations

  • Requires documents to be pre-indexed via /mags-init
  • Does not display document content (use /mags-docs-search instead)
When to use it

When you need a structured overview of all available documents in the project.

When not to use it

When you need to search for specific content within documents; use /mags-docs-search instead.

Security analysis

Safe
Quality score85/100

The skill only lists and retrieves documents using designated tools, with no destructive or exfiltrating actions.

No concerns found

Examples

List all project documents
/mags-docs
Show documentation overview
Show all project documents grouped by folder

name: mags-docs description: List all project documents version: 1.0.0 user-invocable: true allowed-tools:

  • mcp__mags_mags__mags_list_docs
  • mcp__mags_mags__mags_get_doc

MAGS Docs

List all indexed project documents.

Usage

/mags-docs

Related Commands

| Command | Purpose | |---------|---------| | /mags-docs-create <template> | Create a new document from template | | /mags-docs-validate | Run document validation checks | | /mags-docs-search <query> | Search across all documents |

Steps

  1. Call mags_list_docs to get all documents.
  2. Display as a grouped tree:
    == Project Documents ==
    
    architecture/
      overview.md          Project architecture overview
      tech-stack.md        Technology stack details
    
    rules/
      coding-standards.md  Coding conventions and rules
      backend.md           Backend development rules
    
    changelog/
      changes.md           Running changelog
    
    Total: <N> documents
    
  3. Show the path and a brief description (first line or title) for each doc.
  4. If no documents are found, say: "No indexed documents found. Run /mags-init to scan your docs/ directory or scaffold new documents from templates."
Related skills