home/dot_agents/adapters/copilot/skills/introspection/SKILL.md
Meta-improvement patterns for analyzing interactions. Includes VS Code Copilot session storage access for interaction analysis.
npx skillsauth add salverius-tech/dotfiles introspectionInstall 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.
Read ~/.agents/skills/introspection/knowledge.md for the full guidelines. Note: the path is ~/.agents, not ~/.claude.
Chat sessions are stored in VS Code's workspace-specific storage:
%APPDATA%\Code\User\workspaceStorage\{workspace-hash}\chatSessions\*.json
%APPDATA%\Code\User\workspaceStorage\*\workspace.jsonfolder field to current workspace (URL-encoded: file:///c%3A/Dev/project-name){
"creationDate": 1770131457017,
"lastMessageDate": 1770135987184,
"requests": [
{
"timestamp": 1770131540436,
"modelId": "copilot/claude-opus-4.5",
"message": { "text": "user prompt" },
"response": [
{ "value": "assistant text" },
{ "kind": "toolInvocationSerialized" },
{ "kind": "thinking" }
]
}
]
}
For pattern detection, extract:
| Field | Path | Use |
|-------|------|-----|
| User message | requests[].message.text | Detect correction loops |
| Assistant text | requests[].response[].value (where kind=null) | Analyze responses |
| Tool calls | requests[].response[] (where kind=toolInvocationSerialized) | Track tool usage |
| Timestamp | requests[].timestamp | Filter by checkpoint |
| Model | requests[].modelId | Context for analysis |
tools
Use when creating, reviewing, measuring, updating, or pruning Hermes skills and bundles.
tools
Design and verify Hermes cron jobs and recurring automation. Use when creating, editing, reviewing, pausing, or debugging scheduled Hermes tasks.
testing
Inspect, modify, test, and review Git repositories without unintended commits or destructive changes. Use for repository work, reviews, branch operations, or release preparation.
tools
Install, inspect, enable, load, and verify Hermes plugins and companion services. Use when a Hermes plugin, bridge, gateway integration, or plugin-provided tool is missing or unreliable.