skills/sight/SKILL.md
Use when the user says 'draw', 'diagram', 'visualize', 'architecture', or needs a visual overview of code structure.
npx skillsauth add cwinvestments/memstack sightInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate Mermaid diagrams showing project architecture, schema, and data flow.
When this skill activates, output:
👁️ Sight — The hidden becomes clear.
Then execute the protocol below.
| Context | Status | |---------|--------| | User asks for a diagram or visualization | ACTIVE — generate diagram | | User says "draw", "diagram", "architecture" | ACTIVE — generate diagram | | User asks to "show" or "map" the structure | ACTIVE — generate diagram | | Discussing diagrams conceptually | DORMANT — do not activate | | User is looking at existing diagrams | DORMANT — do not activate |
Determine diagram type from context:
erDiagramflowchart TDgraph TDflowchart TD (system overview)sequenceDiagramScan the relevant code:
database/src/app/api/src/app/Generate Mermaid diagram as a code block
Optionally save to docs/diagrams/{name}.mermaid
User: "draw the AdminStack database schema"
👁️ Sight — The hidden becomes clear.
```mermaid
erDiagram
accounts ||--o{ organizations : "has"
accounts ||--o{ cc_sessions : "tracks"
organizations ||--o{ projects : "contains"
organizations ||--o{ contacts : "stores"
organizations ||--o{ orders : "processes"
accounts {
uuid id PK
text email
boolean is_platform_admin
}
cc_sessions {
uuid id PK
text name
text status
}
```
tools
Use when the user says 'save diary', 'log session', 'wrapping up', or at end of a productive session.
tools
Use when the user says 'submit to marketplace', 'publish my skill', 'share this skill', 'list on marketplace', 'submit plugin', 'publish to community', or needs to submit a skill or plugin to a community marketplace via PR. Do NOT use for building skills or writing plugin code.
development
Use when the user says 'write browser tests', 'test this page', 'playwright test', 'e2e test', 'end to end test', 'browser test', 'test the UI', or needs Playwright-based browser testing for a web application. Do NOT use for unit tests, API tests, or non-browser testing.
development
Use when the user says 'teach me', 'explain as you go', 'mentor mode', 'walk me through', 'help me learn', 'explain why', 'learning mode', or wants real-time plain language narration of decisions and tradeoffs while building. Do NOT use for code review or debugging.