@redaksjon/protokoll 0.0.15 → 0.2.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/.cursor/rules/no-auto-summary-files.md +43 -0
- package/README.md +612 -31
- package/dist/main.js +750 -231
- package/dist/main.js.map +1 -1
- package/dist/mcp/server.js +2053 -78
- package/dist/mcp/server.js.map +1 -1
- package/dist/term-assist.js +274 -0
- package/dist/term-assist.js.map +1 -0
- package/dist/term-context.js +146 -0
- package/dist/term-context.js.map +1 -0
- package/dist/{feedback.js → transcript.js} +1636 -155
- package/dist/transcript.js.map +1 -0
- package/docs/entity-metadata.md +416 -0
- package/docs/examples.md +21 -0
- package/docs/transcript-listing.md +371 -0
- package/guide/action.md +266 -4
- package/guide/context-commands.md +523 -93
- package/guide/feedback.md +1 -1
- package/guide/index.md +65 -2
- package/guide/interactive.md +224 -9
- package/guide/mcp-integration.md +94 -20
- package/guide/transcript-listing.md +444 -0
- package/package.json +17 -8
- package/scripts/test-mcp-compliance.js +97 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/feedback.js.map +0 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Do Not Create Automatic Summary Files
|
|
2
|
+
|
|
3
|
+
## Rule: No Automatic Documentation or Reflection Files
|
|
4
|
+
|
|
5
|
+
**NEVER** automatically create files that summarize, document, or reflect on actions taken during a conversation unless explicitly requested by the user.
|
|
6
|
+
|
|
7
|
+
### Prohibited Actions
|
|
8
|
+
|
|
9
|
+
Do NOT create files with names like:
|
|
10
|
+
- `agentic-reflection-*.md`
|
|
11
|
+
- `summary-*.md`
|
|
12
|
+
- `changelog-*.md`
|
|
13
|
+
- `session-notes-*.md`
|
|
14
|
+
- Any other automatically generated documentation files
|
|
15
|
+
|
|
16
|
+
### When This Rule Applies
|
|
17
|
+
|
|
18
|
+
This rule applies to ALL interactions unless the user explicitly says:
|
|
19
|
+
- "Create a summary file"
|
|
20
|
+
- "Document what you did"
|
|
21
|
+
- "Write a reflection"
|
|
22
|
+
- Or similar explicit requests
|
|
23
|
+
|
|
24
|
+
### What You Should Do Instead
|
|
25
|
+
|
|
26
|
+
1. **Communicate directly**: Explain what you did in your response to the user
|
|
27
|
+
2. **Only create necessary files**: Create only the files needed to complete the actual task (source code, configuration files, etc.)
|
|
28
|
+
3. **Ask first**: If you think documentation would be helpful, ASK the user if they want it before creating it
|
|
29
|
+
|
|
30
|
+
### Example Scenarios
|
|
31
|
+
|
|
32
|
+
❌ **WRONG**: User asks to fix a bug → You fix it AND create `agentic-reflection-commit-2026-01-10.md`
|
|
33
|
+
|
|
34
|
+
✅ **CORRECT**: User asks to fix a bug → You fix it and explain what you did in your response
|
|
35
|
+
|
|
36
|
+
❌ **WRONG**: User asks to add a feature → You add it AND create a summary document
|
|
37
|
+
|
|
38
|
+
✅ **CORRECT**: User asks to add a feature → You add it and describe the changes in your response
|
|
39
|
+
|
|
40
|
+
### Rationale
|
|
41
|
+
|
|
42
|
+
The user finds these automatically generated files cluttering the workspace. They prefer clean, focused changes that only include the files necessary for the actual task at hand.
|
|
43
|
+
|