skilly. Buy ad slot
All skills
Personal Productivity / AGENT SKILL

status

FelixSoderstrom/GIVERNY
0 installs 5 GitHub stars
0

Report the current state of GIVERNY thoughts and context.
GIVERNY reports current state of thoughts/ and context.

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

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.

The full skill.

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.
```