SECURITY REVIEW
Not yet assessed
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
Report the current state of GIVERNY thoughts and context.
GIVERNY reports current state of thoughts/ and context.
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.
No quality assessment is available for this catalog entry yet.
Original instructions from the publisherβs SKILL.md
## MODE: STATUS Report the current state of the thoughts/ directory and session context. ### EXECUTION 1. **Check thoughts/ structure:** ```bash find thoughts/ -name "*.md" -type f 2>/dev/null | head -20 ``` 2. **List recent research:** ```bash ls -lt thoughts/shared/research/*.md 2>/dev/null | head -5 ``` 3. **List active plans:** ```bash ls -lt thoughts/shared/plans/*.md 2>/dev/null | head -5 ``` 4. **Check git status:** ```bash git status --short ``` 5. **Report context usage** ### OUTPUT FORMAT ``` GIVERNY STATUS π thoughts/ structure: shared/research/ [N docs] shared/plans/ [N docs] personal/notes/ [N docs] π Recent Research: - 2025-12-05-pipeline-nulls.md (today) - 2025-12-04-auth-flow.md (yesterday) π Active Plans: - 2025-12-05-null-handling.md [approved] - 2025-12-04-auth-refactor.md [draft] π Context: X% π Git Status: [staged/unstaged changes summary] Ready for commands. ``` ### IF NO THOUGHTS/ EXISTS ``` β οΈ No thoughts/ directory found. Initialize with the /init-thoughts skill. ```