@goondocks/myco 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +22 -0
- package/.claude-plugin/plugin.json +18 -0
- package/CONTRIBUTING.md +143 -0
- package/LICENSE +21 -0
- package/README.md +74 -0
- package/commands/init.md +231 -0
- package/commands/setup-llm.md +89 -0
- package/commands/status.md +112 -0
- package/dist/src/agents/adapter.d.ts +76 -0
- package/dist/src/agents/adapter.d.ts.map +1 -0
- package/dist/src/agents/adapter.js +124 -0
- package/dist/src/agents/adapter.js.map +1 -0
- package/dist/src/agents/claude-code.d.ts +3 -0
- package/dist/src/agents/claude-code.d.ts.map +1 -0
- package/dist/src/agents/claude-code.js +22 -0
- package/dist/src/agents/claude-code.js.map +1 -0
- package/dist/src/agents/cursor.d.ts +3 -0
- package/dist/src/agents/cursor.d.ts.map +1 -0
- package/dist/src/agents/cursor.js +154 -0
- package/dist/src/agents/cursor.js.map +1 -0
- package/dist/src/agents/index.d.ts +6 -0
- package/dist/src/agents/index.d.ts.map +1 -0
- package/dist/src/agents/index.js +5 -0
- package/dist/src/agents/index.js.map +1 -0
- package/dist/src/agents/registry.d.ts +34 -0
- package/dist/src/agents/registry.d.ts.map +1 -0
- package/dist/src/agents/registry.js +95 -0
- package/dist/src/agents/registry.js.map +1 -0
- package/dist/src/artifacts/candidates.d.ts +20 -0
- package/dist/src/artifacts/candidates.d.ts.map +1 -0
- package/dist/src/artifacts/candidates.js +84 -0
- package/dist/src/artifacts/candidates.js.map +1 -0
- package/dist/src/artifacts/slugify.d.ts +2 -0
- package/dist/src/artifacts/slugify.d.ts.map +1 -0
- package/dist/src/artifacts/slugify.js +22 -0
- package/dist/src/artifacts/slugify.js.map +1 -0
- package/dist/src/capture/artifact-watcher.d.ts +19 -0
- package/dist/src/capture/artifact-watcher.d.ts.map +1 -0
- package/dist/src/capture/artifact-watcher.js +37 -0
- package/dist/src/capture/artifact-watcher.js.map +1 -0
- package/dist/src/capture/buffer.d.ts +20 -0
- package/dist/src/capture/buffer.d.ts.map +1 -0
- package/dist/src/capture/buffer.js +55 -0
- package/dist/src/capture/buffer.js.map +1 -0
- package/dist/src/capture/plan-detector.d.ts +15 -0
- package/dist/src/capture/plan-detector.d.ts.map +1 -0
- package/dist/src/capture/plan-detector.js +34 -0
- package/dist/src/capture/plan-detector.js.map +1 -0
- package/dist/src/capture/processor.d.ts +2 -0
- package/dist/src/capture/processor.d.ts.map +1 -0
- package/dist/src/capture/processor.js +3 -0
- package/dist/src/capture/processor.js.map +1 -0
- package/dist/src/capture/prompts/classify.md +28 -0
- package/dist/src/capture/prompts/debugging.md +91 -0
- package/dist/src/capture/prompts/exploration.md +88 -0
- package/dist/src/capture/prompts/extraction.md +93 -0
- package/dist/src/capture/prompts/implementation.md +90 -0
- package/dist/src/capture/prompts/prompts/classify.md +28 -0
- package/dist/src/capture/prompts/prompts/debugging.md +91 -0
- package/dist/src/capture/prompts/prompts/exploration.md +88 -0
- package/dist/src/capture/prompts/prompts/extraction.md +93 -0
- package/dist/src/capture/prompts/prompts/implementation.md +90 -0
- package/dist/src/capture/prompts/prompts/schema.yaml +97 -0
- package/dist/src/capture/prompts/prompts/session-summary.md +65 -0
- package/dist/src/capture/prompts/prompts/session-title.md +46 -0
- package/dist/src/capture/prompts/schema.yaml +97 -0
- package/dist/src/capture/prompts/session-summary.md +65 -0
- package/dist/src/capture/prompts/session-title.md +46 -0
- package/dist/src/capture/prompts.d.ts +77 -0
- package/dist/src/capture/prompts.d.ts.map +1 -0
- package/dist/src/capture/prompts.js +255 -0
- package/dist/src/capture/prompts.js.map +1 -0
- package/dist/src/capture/transcript-miner.d.ts +31 -0
- package/dist/src/capture/transcript-miner.d.ts.map +1 -0
- package/dist/src/capture/transcript-miner.js +61 -0
- package/dist/src/capture/transcript-miner.js.map +1 -0
- package/dist/src/cli.d.ts +3 -0
- package/dist/src/cli.d.ts.map +1 -0
- package/dist/src/cli.js +584 -0
- package/dist/src/cli.js.map +1 -0
- package/dist/src/config/loader.d.ts +4 -0
- package/dist/src/config/loader.d.ts.map +1 -0
- package/dist/src/config/loader.js +32 -0
- package/dist/src/config/loader.js.map +1 -0
- package/dist/src/config/schema.d.ts +83 -0
- package/dist/src/config/schema.d.ts.map +1 -0
- package/dist/src/config/schema.js +55 -0
- package/dist/src/config/schema.js.map +1 -0
- package/dist/src/constants.d.ts +73 -0
- package/dist/src/constants.d.ts.map +1 -0
- package/dist/src/constants.js +86 -0
- package/dist/src/constants.js.map +1 -0
- package/dist/src/context/injector.d.ts +18 -0
- package/dist/src/context/injector.d.ts.map +1 -0
- package/dist/src/context/injector.js +71 -0
- package/dist/src/context/injector.js.map +1 -0
- package/dist/src/context/relevance.d.ts +13 -0
- package/dist/src/context/relevance.d.ts.map +1 -0
- package/dist/src/context/relevance.js +44 -0
- package/dist/src/context/relevance.js.map +1 -0
- package/dist/src/daemon/batch.d.ts +22 -0
- package/dist/src/daemon/batch.d.ts.map +1 -0
- package/dist/src/daemon/batch.js +38 -0
- package/dist/src/daemon/batch.js.map +1 -0
- package/dist/src/daemon/lifecycle.d.ts +27 -0
- package/dist/src/daemon/lifecycle.d.ts.map +1 -0
- package/dist/src/daemon/lifecycle.js +50 -0
- package/dist/src/daemon/lifecycle.js.map +1 -0
- package/dist/src/daemon/lineage.d.ts +42 -0
- package/dist/src/daemon/lineage.d.ts.map +1 -0
- package/dist/src/daemon/lineage.js +116 -0
- package/dist/src/daemon/lineage.js.map +1 -0
- package/dist/src/daemon/logger.d.ts +33 -0
- package/dist/src/daemon/logger.d.ts.map +1 -0
- package/dist/src/daemon/logger.js +88 -0
- package/dist/src/daemon/logger.js.map +1 -0
- package/dist/src/daemon/main.d.ts +2 -0
- package/dist/src/daemon/main.d.ts.map +1 -0
- package/dist/src/daemon/main.js +738 -0
- package/dist/src/daemon/main.js.map +1 -0
- package/dist/src/daemon/processor.d.ts +44 -0
- package/dist/src/daemon/processor.d.ts.map +1 -0
- package/dist/src/daemon/processor.js +142 -0
- package/dist/src/daemon/processor.js.map +1 -0
- package/dist/src/daemon/server.d.ts +24 -0
- package/dist/src/daemon/server.d.ts.map +1 -0
- package/dist/src/daemon/server.js +117 -0
- package/dist/src/daemon/server.js.map +1 -0
- package/dist/src/daemon/watcher.d.ts +29 -0
- package/dist/src/daemon/watcher.d.ts.map +1 -0
- package/dist/src/daemon/watcher.js +67 -0
- package/dist/src/daemon/watcher.js.map +1 -0
- package/dist/src/hooks/client.d.ts +20 -0
- package/dist/src/hooks/client.d.ts.map +1 -0
- package/dist/src/hooks/client.js +111 -0
- package/dist/src/hooks/client.js.map +1 -0
- package/dist/src/hooks/post-tool-use.d.ts +2 -0
- package/dist/src/hooks/post-tool-use.d.ts.map +1 -0
- package/dist/src/hooks/post-tool-use.js +40 -0
- package/dist/src/hooks/post-tool-use.js.map +1 -0
- package/dist/src/hooks/read-stdin.d.ts +2 -0
- package/dist/src/hooks/read-stdin.d.ts.map +1 -0
- package/dist/src/hooks/read-stdin.js +10 -0
- package/dist/src/hooks/read-stdin.js.map +1 -0
- package/dist/src/hooks/session-end.d.ts +2 -0
- package/dist/src/hooks/session-end.d.ts.map +1 -0
- package/dist/src/hooks/session-end.js +23 -0
- package/dist/src/hooks/session-end.js.map +1 -0
- package/dist/src/hooks/session-start.d.ts +2 -0
- package/dist/src/hooks/session-start.d.ts.map +1 -0
- package/dist/src/hooks/session-start.js +49 -0
- package/dist/src/hooks/session-start.js.map +1 -0
- package/dist/src/hooks/stop.d.ts +2 -0
- package/dist/src/hooks/stop.d.ts.map +1 -0
- package/dist/src/hooks/stop.js +34 -0
- package/dist/src/hooks/stop.js.map +1 -0
- package/dist/src/hooks/user-prompt-submit.d.ts +2 -0
- package/dist/src/hooks/user-prompt-submit.d.ts.map +1 -0
- package/dist/src/hooks/user-prompt-submit.js +46 -0
- package/dist/src/hooks/user-prompt-submit.js.map +1 -0
- package/dist/src/index/fts.d.ts +16 -0
- package/dist/src/index/fts.d.ts.map +1 -0
- package/dist/src/index/fts.js +53 -0
- package/dist/src/index/fts.js.map +1 -0
- package/dist/src/index/rebuild.d.ts +4 -0
- package/dist/src/index/rebuild.d.ts.map +1 -0
- package/dist/src/index/rebuild.js +40 -0
- package/dist/src/index/rebuild.js.map +1 -0
- package/dist/src/index/sqlite.d.ts +33 -0
- package/dist/src/index/sqlite.d.ts.map +1 -0
- package/dist/src/index/sqlite.js +99 -0
- package/dist/src/index/sqlite.js.map +1 -0
- package/dist/src/index/vectors.d.ts +24 -0
- package/dist/src/index/vectors.d.ts.map +1 -0
- package/dist/src/index/vectors.js +97 -0
- package/dist/src/index/vectors.js.map +1 -0
- package/dist/src/intelligence/anthropic.d.ts +17 -0
- package/dist/src/intelligence/anthropic.d.ts.map +1 -0
- package/dist/src/intelligence/anthropic.js +36 -0
- package/dist/src/intelligence/anthropic.js.map +1 -0
- package/dist/src/intelligence/embeddings.d.ts +3 -0
- package/dist/src/intelligence/embeddings.d.ts.map +1 -0
- package/dist/src/intelligence/embeddings.js +15 -0
- package/dist/src/intelligence/embeddings.js.map +1 -0
- package/dist/src/intelligence/haiku.d.ts +17 -0
- package/dist/src/intelligence/haiku.d.ts.map +1 -0
- package/dist/src/intelligence/haiku.js +35 -0
- package/dist/src/intelligence/haiku.js.map +1 -0
- package/dist/src/intelligence/llm.d.ts +33 -0
- package/dist/src/intelligence/llm.d.ts.map +1 -0
- package/dist/src/intelligence/llm.js +26 -0
- package/dist/src/intelligence/llm.js.map +1 -0
- package/dist/src/intelligence/lm-studio.d.ts +20 -0
- package/dist/src/intelligence/lm-studio.d.ts.map +1 -0
- package/dist/src/intelligence/lm-studio.js +59 -0
- package/dist/src/intelligence/lm-studio.js.map +1 -0
- package/dist/src/intelligence/ollama.d.ts +22 -0
- package/dist/src/intelligence/ollama.d.ts.map +1 -0
- package/dist/src/intelligence/ollama.js +64 -0
- package/dist/src/intelligence/ollama.js.map +1 -0
- package/dist/src/intelligence/response.d.ts +29 -0
- package/dist/src/intelligence/response.d.ts.map +1 -0
- package/dist/src/intelligence/response.js +71 -0
- package/dist/src/intelligence/response.js.map +1 -0
- package/dist/src/intelligence/service.d.ts +18 -0
- package/dist/src/intelligence/service.d.ts.map +1 -0
- package/dist/src/intelligence/service.js +66 -0
- package/dist/src/intelligence/service.js.map +1 -0
- package/dist/src/logs/format.d.ts +6 -0
- package/dist/src/logs/format.d.ts.map +1 -0
- package/dist/src/logs/format.js +46 -0
- package/dist/src/logs/format.js.map +1 -0
- package/dist/src/logs/reader.d.ts +28 -0
- package/dist/src/logs/reader.d.ts.map +1 -0
- package/dist/src/logs/reader.js +106 -0
- package/dist/src/logs/reader.js.map +1 -0
- package/dist/src/mcp/server.d.ts +16 -0
- package/dist/src/mcp/server.d.ts.map +1 -0
- package/dist/src/mcp/server.js +305 -0
- package/dist/src/mcp/server.js.map +1 -0
- package/dist/src/mcp/tools/consolidate.d.ts +15 -0
- package/dist/src/mcp/tools/consolidate.d.ts.map +1 -0
- package/dist/src/mcp/tools/consolidate.js +49 -0
- package/dist/src/mcp/tools/consolidate.js.map +1 -0
- package/dist/src/mcp/tools/graph.d.ts +30 -0
- package/dist/src/mcp/tools/graph.d.ts.map +1 -0
- package/dist/src/mcp/tools/graph.js +106 -0
- package/dist/src/mcp/tools/graph.js.map +1 -0
- package/dist/src/mcp/tools/logs.d.ts +3 -0
- package/dist/src/mcp/tools/logs.d.ts.map +1 -0
- package/dist/src/mcp/tools/logs.js +7 -0
- package/dist/src/mcp/tools/logs.js.map +1 -0
- package/dist/src/mcp/tools/plans.d.ts +23 -0
- package/dist/src/mcp/tools/plans.d.ts.map +1 -0
- package/dist/src/mcp/tools/plans.js +63 -0
- package/dist/src/mcp/tools/plans.js.map +1 -0
- package/dist/src/mcp/tools/recall.d.ts +30 -0
- package/dist/src/mcp/tools/recall.d.ts.map +1 -0
- package/dist/src/mcp/tools/recall.js +34 -0
- package/dist/src/mcp/tools/recall.js.map +1 -0
- package/dist/src/mcp/tools/remember.d.ts +15 -0
- package/dist/src/mcp/tools/remember.d.ts.map +1 -0
- package/dist/src/mcp/tools/remember.js +18 -0
- package/dist/src/mcp/tools/remember.js.map +1 -0
- package/dist/src/mcp/tools/search.d.ts +19 -0
- package/dist/src/mcp/tools/search.d.ts.map +1 -0
- package/dist/src/mcp/tools/search.js +59 -0
- package/dist/src/mcp/tools/search.js.map +1 -0
- package/dist/src/mcp/tools/sessions.d.ts +21 -0
- package/dist/src/mcp/tools/sessions.d.ts.map +1 -0
- package/dist/src/mcp/tools/sessions.js +36 -0
- package/dist/src/mcp/tools/sessions.js.map +1 -0
- package/dist/src/mcp/tools/supersede.d.ts +14 -0
- package/dist/src/mcp/tools/supersede.d.ts.map +1 -0
- package/dist/src/mcp/tools/supersede.js +30 -0
- package/dist/src/mcp/tools/supersede.js.map +1 -0
- package/dist/src/mcp/tools/team.d.ts +16 -0
- package/dist/src/mcp/tools/team.d.ts.map +1 -0
- package/dist/src/mcp/tools/team.js +32 -0
- package/dist/src/mcp/tools/team.js.map +1 -0
- package/dist/src/obsidian/formatter.d.ts +80 -0
- package/dist/src/obsidian/formatter.d.ts.map +1 -0
- package/dist/src/obsidian/formatter.js +227 -0
- package/dist/src/obsidian/formatter.js.map +1 -0
- package/dist/src/prompts/classification.md +42 -0
- package/dist/src/prompts/extraction.md +45 -0
- package/dist/src/prompts/index.d.ts +13 -0
- package/dist/src/prompts/index.d.ts.map +1 -0
- package/dist/src/prompts/index.js +75 -0
- package/dist/src/prompts/index.js.map +1 -0
- package/dist/src/prompts/session-similarity.md +24 -0
- package/dist/src/prompts/summary.md +9 -0
- package/dist/src/prompts/title.md +8 -0
- package/dist/src/vault/frontmatter.d.ts +6 -0
- package/dist/src/vault/frontmatter.d.ts.map +1 -0
- package/dist/src/vault/frontmatter.js +10 -0
- package/dist/src/vault/frontmatter.js.map +1 -0
- package/dist/src/vault/observations.d.ts +10 -0
- package/dist/src/vault/observations.d.ts.map +1 -0
- package/dist/src/vault/observations.js +33 -0
- package/dist/src/vault/observations.js.map +1 -0
- package/dist/src/vault/reader.d.ts +10 -0
- package/dist/src/vault/reader.d.ts.map +1 -0
- package/dist/src/vault/reader.js +48 -0
- package/dist/src/vault/reader.js.map +1 -0
- package/dist/src/vault/resolve.d.ts +18 -0
- package/dist/src/vault/resolve.d.ts.map +1 -0
- package/dist/src/vault/resolve.js +51 -0
- package/dist/src/vault/resolve.js.map +1 -0
- package/dist/src/vault/session-id.d.ts +16 -0
- package/dist/src/vault/session-id.d.ts.map +1 -0
- package/dist/src/vault/session-id.js +29 -0
- package/dist/src/vault/session-id.js.map +1 -0
- package/dist/src/vault/types.d.ts +88 -0
- package/dist/src/vault/types.d.ts.map +1 -0
- package/dist/src/vault/types.js +94 -0
- package/dist/src/vault/types.js.map +1 -0
- package/dist/src/vault/writer.d.ts +66 -0
- package/dist/src/vault/writer.d.ts.map +1 -0
- package/dist/src/vault/writer.js +217 -0
- package/dist/src/vault/writer.js.map +1 -0
- package/hooks/hooks.json +60 -0
- package/package.json +52 -0
- package/skills/myco/SKILL.md +206 -0
- package/skills/myco/references/wisdom.md +61 -0
- package/skills/rules/SKILL.md +185 -0
- package/skills/rules/references/rules-bad-example.md +106 -0
- package/skills/rules/references/rules-good-example.md +90 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: exploration
|
|
3
|
+
description: For sessions focused on reading/searching code
|
|
4
|
+
activity_filter: Read,Grep,Glob
|
|
5
|
+
min_activities: 3
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are analyzing an exploration/research session to extract useful learnings.
|
|
9
|
+
|
|
10
|
+
## Context
|
|
11
|
+
|
|
12
|
+
The developer was exploring the codebase to understand how things work.
|
|
13
|
+
|
|
14
|
+
Duration: {{session_duration}} minutes
|
|
15
|
+
Files explored: {{files_read}}
|
|
16
|
+
|
|
17
|
+
### Search and Read Activity
|
|
18
|
+
|
|
19
|
+
{{activities}}
|
|
20
|
+
|
|
21
|
+
## Observation Types
|
|
22
|
+
|
|
23
|
+
{{observation_types}}
|
|
24
|
+
|
|
25
|
+
## Importance Levels
|
|
26
|
+
|
|
27
|
+
Rate each observation's importance based on its value for future sessions:
|
|
28
|
+
|
|
29
|
+
- **high**: Non-obvious insight that would cause bugs, confusion, or wasted time if forgotten. Cannot be easily rediscovered from code alone.
|
|
30
|
+
- **medium**: Useful context that saves time but could be rediscovered with investigation.
|
|
31
|
+
- **low**: Nice-to-know information that is easily found from code or already documented elsewhere. Skip if already captured in project docs.
|
|
32
|
+
|
|
33
|
+
Prefer fewer high-quality observations over many low-importance ones.
|
|
34
|
+
|
|
35
|
+
## Task
|
|
36
|
+
|
|
37
|
+
Extract observations about the codebase structure, patterns, or gotchas discovered during exploration.
|
|
38
|
+
|
|
39
|
+
Focus on:
|
|
40
|
+
- How specific features are implemented
|
|
41
|
+
- Important patterns or conventions used
|
|
42
|
+
- Non-obvious relationships between components
|
|
43
|
+
- Things that surprised the developer
|
|
44
|
+
|
|
45
|
+
Prefer **discovery** and **gotcha** types for exploration sessions.
|
|
46
|
+
|
|
47
|
+
## Examples
|
|
48
|
+
|
|
49
|
+
**Good observation** (non-obvious behavior — extract this):
|
|
50
|
+
```json
|
|
51
|
+
{
|
|
52
|
+
"type": "discovery",
|
|
53
|
+
"observation": "Env vars set in .claude/settings.json don't get shell expansion — tilde (~) paths must be expanded manually in code via os.homedir().",
|
|
54
|
+
"context": "src/vault/resolve.ts",
|
|
55
|
+
"importance": "high"
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
**Bad observation** (obvious from code structure — skip this):
|
|
60
|
+
```json
|
|
61
|
+
{
|
|
62
|
+
"type": "discovery",
|
|
63
|
+
"observation": "The project has a src directory with TypeScript files",
|
|
64
|
+
"context": "src/",
|
|
65
|
+
"importance": "low"
|
|
66
|
+
}
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Output Format
|
|
70
|
+
|
|
71
|
+
```json
|
|
72
|
+
{
|
|
73
|
+
"observations": [
|
|
74
|
+
{
|
|
75
|
+
"type": "{{type_names}}",
|
|
76
|
+
"observation": "What was learned",
|
|
77
|
+
"context": "File or feature area",
|
|
78
|
+
"importance": "high|medium|low"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"summary": "Brief description of what was explored"
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Guidelines:
|
|
86
|
+
- Extract at most 5 observations per session. Prefer fewer, higher-quality observations over many low-value ones.
|
|
87
|
+
|
|
88
|
+
Respond ONLY with valid JSON.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: extraction
|
|
3
|
+
description: General observation extraction from session activities
|
|
4
|
+
min_activities: 1
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
You are analyzing a coding session to extract important observations for future reference.
|
|
8
|
+
|
|
9
|
+
## Session Activity
|
|
10
|
+
|
|
11
|
+
Duration: {{session_duration}} minutes
|
|
12
|
+
Files read: {{files_read}}
|
|
13
|
+
Files modified: {{files_modified}}
|
|
14
|
+
Files created: {{files_created}}
|
|
15
|
+
Errors encountered: {{errors}}
|
|
16
|
+
|
|
17
|
+
### Tool Executions
|
|
18
|
+
|
|
19
|
+
{{activities}}
|
|
20
|
+
|
|
21
|
+
## Observation Types
|
|
22
|
+
|
|
23
|
+
Extract observations using these types:
|
|
24
|
+
|
|
25
|
+
{{observation_types}}
|
|
26
|
+
|
|
27
|
+
## Importance Levels
|
|
28
|
+
|
|
29
|
+
Rate each observation's importance based on its value for future sessions:
|
|
30
|
+
|
|
31
|
+
- **high**: Non-obvious insight that would cause bugs, confusion, or wasted time if forgotten. Cannot be easily rediscovered from code alone.
|
|
32
|
+
- **medium**: Useful context that saves time but could be rediscovered with investigation.
|
|
33
|
+
- **low**: Nice-to-know information that is easily found from code or already documented elsewhere. Skip if already captured in project docs.
|
|
34
|
+
|
|
35
|
+
Prefer fewer high-quality observations over many low-importance ones.
|
|
36
|
+
|
|
37
|
+
## Session Context Awareness
|
|
38
|
+
|
|
39
|
+
Consider the session's activity pattern when rating observation importance:
|
|
40
|
+
|
|
41
|
+
- **Planning/investigation sessions** (many reads, few edits): Prefer lower importance ratings for observations that describe current problems or temporary state rather than permanent learnings.
|
|
42
|
+
- **Implementation sessions** (significant edits): Observations about decisions made, patterns established, or gotchas encountered are more likely to be permanent learnings and may warrant higher importance.
|
|
43
|
+
|
|
44
|
+
When in doubt, prefer a conservative (lower) importance rating.
|
|
45
|
+
|
|
46
|
+
## Examples
|
|
47
|
+
|
|
48
|
+
**Good observation** (specific, actionable):
|
|
49
|
+
```json
|
|
50
|
+
{
|
|
51
|
+
"type": "gotcha",
|
|
52
|
+
"observation": "SQLite WAL mode must be enabled before concurrent reads work. Without WAL, readers block writers and vice versa.",
|
|
53
|
+
"context": "src/index/sqlite.ts",
|
|
54
|
+
"importance": "high"
|
|
55
|
+
}
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
**Bad observation** (too generic — skip this):
|
|
59
|
+
```json
|
|
60
|
+
{
|
|
61
|
+
"type": "discovery",
|
|
62
|
+
"observation": "The project uses SQLite for storage",
|
|
63
|
+
"context": "src/index",
|
|
64
|
+
"importance": "low"
|
|
65
|
+
}
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Output Format
|
|
69
|
+
|
|
70
|
+
Respond with a JSON object:
|
|
71
|
+
|
|
72
|
+
```json
|
|
73
|
+
{
|
|
74
|
+
"observations": [
|
|
75
|
+
{
|
|
76
|
+
"type": "{{type_names}}",
|
|
77
|
+
"observation": "Concise description of what was learned",
|
|
78
|
+
"context": "Relevant file or feature name",
|
|
79
|
+
"importance": "high|medium|low"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"summary": "One sentence describing what the session accomplished"
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Guidelines:
|
|
87
|
+
- Extract at most 5 observations per session. Prefer fewer, higher-quality observations over many low-value ones.
|
|
88
|
+
- Only include genuinely useful observations that would help in future sessions
|
|
89
|
+
- Be specific - mention file names, function names, actual values
|
|
90
|
+
- If the session was just exploration without meaningful learnings, return empty observations
|
|
91
|
+
- Focus on things that aren't obvious from the code itself
|
|
92
|
+
|
|
93
|
+
Respond ONLY with valid JSON.
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: implementation
|
|
3
|
+
description: For implementation sessions with writes/edits
|
|
4
|
+
activity_filter: Write,Edit
|
|
5
|
+
min_activities: 2
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are analyzing an implementation session to capture design decisions.
|
|
9
|
+
|
|
10
|
+
## Context
|
|
11
|
+
|
|
12
|
+
The developer was implementing a new feature or making significant changes.
|
|
13
|
+
|
|
14
|
+
Duration: {{session_duration}} minutes
|
|
15
|
+
Files created: {{files_created}}
|
|
16
|
+
Files modified: {{files_modified}}
|
|
17
|
+
|
|
18
|
+
### Implementation Activity
|
|
19
|
+
|
|
20
|
+
{{activities}}
|
|
21
|
+
|
|
22
|
+
## Observation Types
|
|
23
|
+
|
|
24
|
+
{{observation_types}}
|
|
25
|
+
|
|
26
|
+
## Importance Levels
|
|
27
|
+
|
|
28
|
+
Rate each observation's importance based on its value for future sessions:
|
|
29
|
+
|
|
30
|
+
- **high**: Non-obvious insight that would cause bugs, confusion, or wasted time if forgotten. Cannot be easily rediscovered from code alone.
|
|
31
|
+
- **medium**: Useful context that saves time but could be rediscovered with investigation.
|
|
32
|
+
- **low**: Nice-to-know information that is easily found from code or already documented elsewhere. Skip if already captured in project docs.
|
|
33
|
+
|
|
34
|
+
Prefer fewer high-quality observations over many low-importance ones.
|
|
35
|
+
|
|
36
|
+
## Task
|
|
37
|
+
|
|
38
|
+
Extract design decisions, architectural choices, and implementation gotchas.
|
|
39
|
+
|
|
40
|
+
Focus on:
|
|
41
|
+
- Why specific approaches were chosen
|
|
42
|
+
- Trade-offs considered
|
|
43
|
+
- Patterns followed or established
|
|
44
|
+
- Edge cases handled
|
|
45
|
+
- Integration points with existing code
|
|
46
|
+
|
|
47
|
+
Prefer **decision**, **trade_off**, and **gotcha** types for implementation sessions.
|
|
48
|
+
|
|
49
|
+
## Examples
|
|
50
|
+
|
|
51
|
+
**Good observation** (clear rationale — extract this):
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"type": "decision",
|
|
55
|
+
"observation": "Chose plain tsc over tsup for build because native deps (better-sqlite3) can't be bundled. tsc preserves directory structure so relative imports work without path rewriting.",
|
|
56
|
+
"context": "package.json build config",
|
|
57
|
+
"importance": "medium"
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
**Bad observation** (no rationale — skip this):
|
|
62
|
+
```json
|
|
63
|
+
{
|
|
64
|
+
"type": "decision",
|
|
65
|
+
"observation": "Used TypeScript for the project",
|
|
66
|
+
"context": "src/",
|
|
67
|
+
"importance": "low"
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Output Format
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"observations": [
|
|
76
|
+
{
|
|
77
|
+
"type": "{{type_names}}",
|
|
78
|
+
"observation": "Design choice and rationale",
|
|
79
|
+
"context": "Feature or component name",
|
|
80
|
+
"importance": "high|medium|low"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"summary": "Brief description of what was implemented"
|
|
84
|
+
}
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Guidelines:
|
|
88
|
+
- Extract at most 5 observations per session. Prefer fewer, higher-quality observations over many low-value ones.
|
|
89
|
+
|
|
90
|
+
Respond ONLY with valid JSON.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: classify
|
|
3
|
+
description: Classify activity type for a single user request
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Classify the type of work done in response to a single user request.
|
|
7
|
+
|
|
8
|
+
## Activity Summary
|
|
9
|
+
|
|
10
|
+
- Duration: {{session_duration}} minutes
|
|
11
|
+
- Tools used: {{tool_summary}}
|
|
12
|
+
- Files read: {{files_read_count}}
|
|
13
|
+
- Files modified: {{files_modified_count}}
|
|
14
|
+
- Files created: {{files_created_count}}
|
|
15
|
+
- Errors encountered: {{has_errors}}
|
|
16
|
+
|
|
17
|
+
## Activity Log
|
|
18
|
+
|
|
19
|
+
{{activities}}
|
|
20
|
+
|
|
21
|
+
## Classification Types
|
|
22
|
+
|
|
23
|
+
{{classification_types}}
|
|
24
|
+
|
|
25
|
+
## Task
|
|
26
|
+
|
|
27
|
+
Based on the activities above, determine what the agent was primarily doing.
|
|
28
|
+
Respond with ONLY the classification word (e.g., exploration, debugging, implementation, refactoring), nothing else.
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: debugging
|
|
3
|
+
description: For debugging sessions with errors
|
|
4
|
+
activity_filter: Read,Edit,Bash
|
|
5
|
+
min_activities: 2
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are analyzing a debugging session to capture the root cause and fix.
|
|
9
|
+
|
|
10
|
+
## Context
|
|
11
|
+
|
|
12
|
+
The developer was debugging an issue.
|
|
13
|
+
|
|
14
|
+
Duration: {{session_duration}} minutes
|
|
15
|
+
Files investigated: {{files_read}}
|
|
16
|
+
Files modified: {{files_modified}}
|
|
17
|
+
Errors: {{errors}}
|
|
18
|
+
|
|
19
|
+
### Debugging Activity
|
|
20
|
+
|
|
21
|
+
{{activities}}
|
|
22
|
+
|
|
23
|
+
## Observation Types
|
|
24
|
+
|
|
25
|
+
{{observation_types}}
|
|
26
|
+
|
|
27
|
+
## Importance Levels
|
|
28
|
+
|
|
29
|
+
Rate each observation's importance based on its value for future sessions:
|
|
30
|
+
|
|
31
|
+
- **high**: Non-obvious insight that would cause bugs, confusion, or wasted time if forgotten. Cannot be easily rediscovered from code alone.
|
|
32
|
+
- **medium**: Useful context that saves time but could be rediscovered with investigation.
|
|
33
|
+
- **low**: Nice-to-know information that is easily found from code or already documented elsewhere. Skip if already captured in project docs.
|
|
34
|
+
|
|
35
|
+
Prefer fewer high-quality observations over many low-importance ones.
|
|
36
|
+
|
|
37
|
+
## Task
|
|
38
|
+
|
|
39
|
+
Extract the debugging journey: what was the symptom, what was investigated, what was the root cause, and how was it fixed.
|
|
40
|
+
|
|
41
|
+
Focus on:
|
|
42
|
+
- The initial error or symptom
|
|
43
|
+
- Wrong assumptions or dead ends
|
|
44
|
+
- The actual root cause
|
|
45
|
+
- The fix and why it works
|
|
46
|
+
- How to avoid this in the future
|
|
47
|
+
|
|
48
|
+
Prefer **bug_fix** and **gotcha** types for debugging sessions.
|
|
49
|
+
|
|
50
|
+
## Examples
|
|
51
|
+
|
|
52
|
+
**Good observation** (specific root cause and fix — extract this):
|
|
53
|
+
```json
|
|
54
|
+
{
|
|
55
|
+
"type": "bug_fix",
|
|
56
|
+
"observation": "SQLite LIMIT clause was string-interpolated, allowing SQL injection. Fix: use parameterized query with LIMIT ? and push value to params array.",
|
|
57
|
+
"context": "src/index/sqlite.ts",
|
|
58
|
+
"importance": "high"
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
**Bad observation** (too vague — skip this):
|
|
63
|
+
```json
|
|
64
|
+
{
|
|
65
|
+
"type": "bug_fix",
|
|
66
|
+
"observation": "Fixed a database error",
|
|
67
|
+
"context": "src/index",
|
|
68
|
+
"importance": "medium"
|
|
69
|
+
}
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Output Format
|
|
73
|
+
|
|
74
|
+
```json
|
|
75
|
+
{
|
|
76
|
+
"observations": [
|
|
77
|
+
{
|
|
78
|
+
"type": "{{type_names}}",
|
|
79
|
+
"observation": "Root cause and fix description",
|
|
80
|
+
"context": "File where bug was",
|
|
81
|
+
"importance": "high|medium|low"
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
"summary": "Brief description of bug and fix"
|
|
85
|
+
}
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Guidelines:
|
|
89
|
+
- Extract at most 5 observations per session. Prefer fewer, higher-quality observations over many low-value ones.
|
|
90
|
+
|
|
91
|
+
Respond ONLY with valid JSON.
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: exploration
|
|
3
|
+
description: For sessions focused on reading/searching code
|
|
4
|
+
activity_filter: Read,Grep,Glob
|
|
5
|
+
min_activities: 3
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are analyzing an exploration/research session to extract useful learnings.
|
|
9
|
+
|
|
10
|
+
## Context
|
|
11
|
+
|
|
12
|
+
The developer was exploring the codebase to understand how things work.
|
|
13
|
+
|
|
14
|
+
Duration: {{session_duration}} minutes
|
|
15
|
+
Files explored: {{files_read}}
|
|
16
|
+
|
|
17
|
+
### Search and Read Activity
|
|
18
|
+
|
|
19
|
+
{{activities}}
|
|
20
|
+
|
|
21
|
+
## Observation Types
|
|
22
|
+
|
|
23
|
+
{{observation_types}}
|
|
24
|
+
|
|
25
|
+
## Importance Levels
|
|
26
|
+
|
|
27
|
+
Rate each observation's importance based on its value for future sessions:
|
|
28
|
+
|
|
29
|
+
- **high**: Non-obvious insight that would cause bugs, confusion, or wasted time if forgotten. Cannot be easily rediscovered from code alone.
|
|
30
|
+
- **medium**: Useful context that saves time but could be rediscovered with investigation.
|
|
31
|
+
- **low**: Nice-to-know information that is easily found from code or already documented elsewhere. Skip if already captured in project docs.
|
|
32
|
+
|
|
33
|
+
Prefer fewer high-quality observations over many low-importance ones.
|
|
34
|
+
|
|
35
|
+
## Task
|
|
36
|
+
|
|
37
|
+
Extract observations about the codebase structure, patterns, or gotchas discovered during exploration.
|
|
38
|
+
|
|
39
|
+
Focus on:
|
|
40
|
+
- How specific features are implemented
|
|
41
|
+
- Important patterns or conventions used
|
|
42
|
+
- Non-obvious relationships between components
|
|
43
|
+
- Things that surprised the developer
|
|
44
|
+
|
|
45
|
+
Prefer **discovery** and **gotcha** types for exploration sessions.
|
|
46
|
+
|
|
47
|
+
## Examples
|
|
48
|
+
|
|
49
|
+
**Good observation** (non-obvious behavior — extract this):
|
|
50
|
+
```json
|
|
51
|
+
{
|
|
52
|
+
"type": "discovery",
|
|
53
|
+
"observation": "Env vars set in .claude/settings.json don't get shell expansion — tilde (~) paths must be expanded manually in code via os.homedir().",
|
|
54
|
+
"context": "src/vault/resolve.ts",
|
|
55
|
+
"importance": "high"
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
**Bad observation** (obvious from code structure — skip this):
|
|
60
|
+
```json
|
|
61
|
+
{
|
|
62
|
+
"type": "discovery",
|
|
63
|
+
"observation": "The project has a src directory with TypeScript files",
|
|
64
|
+
"context": "src/",
|
|
65
|
+
"importance": "low"
|
|
66
|
+
}
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Output Format
|
|
70
|
+
|
|
71
|
+
```json
|
|
72
|
+
{
|
|
73
|
+
"observations": [
|
|
74
|
+
{
|
|
75
|
+
"type": "{{type_names}}",
|
|
76
|
+
"observation": "What was learned",
|
|
77
|
+
"context": "File or feature area",
|
|
78
|
+
"importance": "high|medium|low"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"summary": "Brief description of what was explored"
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Guidelines:
|
|
86
|
+
- Extract at most 5 observations per session. Prefer fewer, higher-quality observations over many low-value ones.
|
|
87
|
+
|
|
88
|
+
Respond ONLY with valid JSON.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: extraction
|
|
3
|
+
description: General observation extraction from session activities
|
|
4
|
+
min_activities: 1
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
You are analyzing a coding session to extract important observations for future reference.
|
|
8
|
+
|
|
9
|
+
## Session Activity
|
|
10
|
+
|
|
11
|
+
Duration: {{session_duration}} minutes
|
|
12
|
+
Files read: {{files_read}}
|
|
13
|
+
Files modified: {{files_modified}}
|
|
14
|
+
Files created: {{files_created}}
|
|
15
|
+
Errors encountered: {{errors}}
|
|
16
|
+
|
|
17
|
+
### Tool Executions
|
|
18
|
+
|
|
19
|
+
{{activities}}
|
|
20
|
+
|
|
21
|
+
## Observation Types
|
|
22
|
+
|
|
23
|
+
Extract observations using these types:
|
|
24
|
+
|
|
25
|
+
{{observation_types}}
|
|
26
|
+
|
|
27
|
+
## Importance Levels
|
|
28
|
+
|
|
29
|
+
Rate each observation's importance based on its value for future sessions:
|
|
30
|
+
|
|
31
|
+
- **high**: Non-obvious insight that would cause bugs, confusion, or wasted time if forgotten. Cannot be easily rediscovered from code alone.
|
|
32
|
+
- **medium**: Useful context that saves time but could be rediscovered with investigation.
|
|
33
|
+
- **low**: Nice-to-know information that is easily found from code or already documented elsewhere. Skip if already captured in project docs.
|
|
34
|
+
|
|
35
|
+
Prefer fewer high-quality observations over many low-importance ones.
|
|
36
|
+
|
|
37
|
+
## Session Context Awareness
|
|
38
|
+
|
|
39
|
+
Consider the session's activity pattern when rating observation importance:
|
|
40
|
+
|
|
41
|
+
- **Planning/investigation sessions** (many reads, few edits): Prefer lower importance ratings for observations that describe current problems or temporary state rather than permanent learnings.
|
|
42
|
+
- **Implementation sessions** (significant edits): Observations about decisions made, patterns established, or gotchas encountered are more likely to be permanent learnings and may warrant higher importance.
|
|
43
|
+
|
|
44
|
+
When in doubt, prefer a conservative (lower) importance rating.
|
|
45
|
+
|
|
46
|
+
## Examples
|
|
47
|
+
|
|
48
|
+
**Good observation** (specific, actionable):
|
|
49
|
+
```json
|
|
50
|
+
{
|
|
51
|
+
"type": "gotcha",
|
|
52
|
+
"observation": "SQLite WAL mode must be enabled before concurrent reads work. Without WAL, readers block writers and vice versa.",
|
|
53
|
+
"context": "src/index/sqlite.ts",
|
|
54
|
+
"importance": "high"
|
|
55
|
+
}
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
**Bad observation** (too generic — skip this):
|
|
59
|
+
```json
|
|
60
|
+
{
|
|
61
|
+
"type": "discovery",
|
|
62
|
+
"observation": "The project uses SQLite for storage",
|
|
63
|
+
"context": "src/index",
|
|
64
|
+
"importance": "low"
|
|
65
|
+
}
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Output Format
|
|
69
|
+
|
|
70
|
+
Respond with a JSON object:
|
|
71
|
+
|
|
72
|
+
```json
|
|
73
|
+
{
|
|
74
|
+
"observations": [
|
|
75
|
+
{
|
|
76
|
+
"type": "{{type_names}}",
|
|
77
|
+
"observation": "Concise description of what was learned",
|
|
78
|
+
"context": "Relevant file or feature name",
|
|
79
|
+
"importance": "high|medium|low"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"summary": "One sentence describing what the session accomplished"
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Guidelines:
|
|
87
|
+
- Extract at most 5 observations per session. Prefer fewer, higher-quality observations over many low-value ones.
|
|
88
|
+
- Only include genuinely useful observations that would help in future sessions
|
|
89
|
+
- Be specific - mention file names, function names, actual values
|
|
90
|
+
- If the session was just exploration without meaningful learnings, return empty observations
|
|
91
|
+
- Focus on things that aren't obvious from the code itself
|
|
92
|
+
|
|
93
|
+
Respond ONLY with valid JSON.
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: implementation
|
|
3
|
+
description: For implementation sessions with writes/edits
|
|
4
|
+
activity_filter: Write,Edit
|
|
5
|
+
min_activities: 2
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are analyzing an implementation session to capture design decisions.
|
|
9
|
+
|
|
10
|
+
## Context
|
|
11
|
+
|
|
12
|
+
The developer was implementing a new feature or making significant changes.
|
|
13
|
+
|
|
14
|
+
Duration: {{session_duration}} minutes
|
|
15
|
+
Files created: {{files_created}}
|
|
16
|
+
Files modified: {{files_modified}}
|
|
17
|
+
|
|
18
|
+
### Implementation Activity
|
|
19
|
+
|
|
20
|
+
{{activities}}
|
|
21
|
+
|
|
22
|
+
## Observation Types
|
|
23
|
+
|
|
24
|
+
{{observation_types}}
|
|
25
|
+
|
|
26
|
+
## Importance Levels
|
|
27
|
+
|
|
28
|
+
Rate each observation's importance based on its value for future sessions:
|
|
29
|
+
|
|
30
|
+
- **high**: Non-obvious insight that would cause bugs, confusion, or wasted time if forgotten. Cannot be easily rediscovered from code alone.
|
|
31
|
+
- **medium**: Useful context that saves time but could be rediscovered with investigation.
|
|
32
|
+
- **low**: Nice-to-know information that is easily found from code or already documented elsewhere. Skip if already captured in project docs.
|
|
33
|
+
|
|
34
|
+
Prefer fewer high-quality observations over many low-importance ones.
|
|
35
|
+
|
|
36
|
+
## Task
|
|
37
|
+
|
|
38
|
+
Extract design decisions, architectural choices, and implementation gotchas.
|
|
39
|
+
|
|
40
|
+
Focus on:
|
|
41
|
+
- Why specific approaches were chosen
|
|
42
|
+
- Trade-offs considered
|
|
43
|
+
- Patterns followed or established
|
|
44
|
+
- Edge cases handled
|
|
45
|
+
- Integration points with existing code
|
|
46
|
+
|
|
47
|
+
Prefer **decision**, **trade_off**, and **gotcha** types for implementation sessions.
|
|
48
|
+
|
|
49
|
+
## Examples
|
|
50
|
+
|
|
51
|
+
**Good observation** (clear rationale — extract this):
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"type": "decision",
|
|
55
|
+
"observation": "Chose plain tsc over tsup for build because native deps (better-sqlite3) can't be bundled. tsc preserves directory structure so relative imports work without path rewriting.",
|
|
56
|
+
"context": "package.json build config",
|
|
57
|
+
"importance": "medium"
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
**Bad observation** (no rationale — skip this):
|
|
62
|
+
```json
|
|
63
|
+
{
|
|
64
|
+
"type": "decision",
|
|
65
|
+
"observation": "Used TypeScript for the project",
|
|
66
|
+
"context": "src/",
|
|
67
|
+
"importance": "low"
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Output Format
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"observations": [
|
|
76
|
+
{
|
|
77
|
+
"type": "{{type_names}}",
|
|
78
|
+
"observation": "Design choice and rationale",
|
|
79
|
+
"context": "Feature or component name",
|
|
80
|
+
"importance": "high|medium|low"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"summary": "Brief description of what was implemented"
|
|
84
|
+
}
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Guidelines:
|
|
88
|
+
- Extract at most 5 observations per session. Prefer fewer, higher-quality observations over many low-value ones.
|
|
89
|
+
|
|
90
|
+
Respond ONLY with valid JSON.
|