@redaksjon/protokoll 0.0.12 → 0.0.13

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.
Files changed (75) hide show
  1. package/.cursor/rules/definition-of-done.md +1 -0
  2. package/.cursor/rules/no-emoticons.md +26 -12
  3. package/README.md +483 -69
  4. package/dist/agentic/executor.js +473 -41
  5. package/dist/agentic/executor.js.map +1 -1
  6. package/dist/agentic/index.js.map +1 -1
  7. package/dist/agentic/tools/lookup-person.js +123 -4
  8. package/dist/agentic/tools/lookup-person.js.map +1 -1
  9. package/dist/agentic/tools/lookup-project.js +139 -22
  10. package/dist/agentic/tools/lookup-project.js.map +1 -1
  11. package/dist/agentic/tools/route-note.js +5 -1
  12. package/dist/agentic/tools/route-note.js.map +1 -1
  13. package/dist/arguments.js +6 -3
  14. package/dist/arguments.js.map +1 -1
  15. package/dist/cli/action.js +704 -0
  16. package/dist/cli/action.js.map +1 -0
  17. package/dist/cli/config.js +482 -0
  18. package/dist/cli/config.js.map +1 -0
  19. package/dist/cli/context.js +466 -0
  20. package/dist/cli/context.js.map +1 -0
  21. package/dist/cli/feedback.js +858 -0
  22. package/dist/cli/feedback.js.map +1 -0
  23. package/dist/cli/index.js +103 -0
  24. package/dist/cli/index.js.map +1 -0
  25. package/dist/cli/install.js +572 -0
  26. package/dist/cli/install.js.map +1 -0
  27. package/dist/cli/transcript.js +199 -0
  28. package/dist/cli/transcript.js.map +1 -0
  29. package/dist/constants.js +11 -4
  30. package/dist/constants.js.map +1 -1
  31. package/dist/context/index.js +25 -1
  32. package/dist/context/index.js.map +1 -1
  33. package/dist/context/storage.js +56 -3
  34. package/dist/context/storage.js.map +1 -1
  35. package/dist/interactive/handler.js +310 -9
  36. package/dist/interactive/handler.js.map +1 -1
  37. package/dist/main.js +11 -1
  38. package/dist/main.js.map +1 -1
  39. package/dist/output/index.js.map +1 -1
  40. package/dist/output/manager.js +46 -1
  41. package/dist/output/manager.js.map +1 -1
  42. package/dist/phases/complete.js +37 -2
  43. package/dist/phases/complete.js.map +1 -1
  44. package/dist/pipeline/orchestrator.js +104 -31
  45. package/dist/pipeline/orchestrator.js.map +1 -1
  46. package/dist/protokoll.js +68 -2
  47. package/dist/protokoll.js.map +1 -1
  48. package/dist/reasoning/client.js +83 -0
  49. package/dist/reasoning/client.js.map +1 -1
  50. package/dist/reasoning/index.js +1 -0
  51. package/dist/reasoning/index.js.map +1 -1
  52. package/dist/util/metadata.js.map +1 -1
  53. package/dist/util/sound.js +116 -0
  54. package/dist/util/sound.js.map +1 -0
  55. package/docs/duplicate-question-prevention.md +117 -0
  56. package/docs/examples.md +152 -0
  57. package/docs/interactive-context-example.md +92 -0
  58. package/docs/package-lock.json +6 -0
  59. package/docs/package.json +3 -1
  60. package/guide/action.md +375 -0
  61. package/guide/config.md +207 -0
  62. package/guide/configuration.md +82 -67
  63. package/guide/context-commands.md +574 -0
  64. package/guide/context-system.md +20 -7
  65. package/guide/development.md +106 -4
  66. package/guide/feedback.md +335 -0
  67. package/guide/index.md +100 -4
  68. package/guide/interactive.md +15 -14
  69. package/guide/quickstart.md +21 -7
  70. package/guide/reasoning.md +18 -4
  71. package/guide/routing.md +192 -97
  72. package/package.json +1 -1
  73. package/scripts/coverage-priority.mjs +323 -0
  74. package/tsconfig.tsbuildinfo +1 -1
  75. package/vitest.config.ts +5 -1
@@ -87,3 +87,4 @@ This definition of DONE ensures:
87
87
 
88
88
  Both are equally important to code quality.
89
89
 
90
+
@@ -1,6 +1,6 @@
1
1
  # No Emoticons in Documentation
2
2
 
3
- Do not use emoticons or emoji in documentation files including:
3
+ Do not use emoticons, emoji, or unicode symbols as grammatical decoration in documentation. This includes:
4
4
 
5
5
  - README.md
6
6
  - Guide files (guide/*.md)
@@ -8,36 +8,50 @@ Do not use emoticons or emoji in documentation files including:
8
8
  - Prompt files (src/prompt/**/*.md)
9
9
  - Any other markdown or documentation files
10
10
 
11
- ## Exceptions
11
+ ## What to Avoid
12
12
 
13
- The only acceptable use of special characters in documentation is:
13
+ **Never use emoticons or symbols for:**
14
14
 
15
- - Standard table checkmarks: (for completed/success status)
16
- - Standard table X marks: (for failed/error status)
15
+ - Decorating headings (🚀, 🎯, 📝, etc.)
16
+ - Bullet point prefixes (✅, ⭐, 👉, etc.)
17
+ - Emphasis or flair in prose
18
+ - Making lists look "fun" or "engaging"
17
19
 
18
- These should only be used in status tables, not in prose or headings.
20
+ Emoticons add visual noise without semantic value. Professional documentation communicates through clear language, not decorative symbols.
21
+
22
+ ## Acceptable Uses
23
+
24
+ The following are acceptable because they convey actual meaning:
25
+
26
+ - ASCII checkmarks in feature comparison tables: ✓ and ✗
27
+ - Status indicators in CI/build tables where visual scanning matters
28
+
29
+ These should only appear in structured data tables, never in prose, headings, or list items.
19
30
 
20
31
  ## Examples
21
32
 
22
33
  **Bad:**
34
+
23
35
  ```markdown
24
36
  ## 🚀 Getting Started
25
37
  ### 🎯 Features
26
38
  - 📝 Smart transcription
39
+ - ✅ **For Developers**: Great tooling
27
40
  ```
28
41
 
29
42
  **Good:**
43
+
30
44
  ```markdown
31
45
  ## Getting Started
32
46
  ### Features
33
47
  - Smart transcription
48
+ - **For Developers**: Great tooling
34
49
  ```
35
50
 
36
- **Acceptable (in status tables only):**
51
+ **Acceptable (feature comparison tables only):**
52
+
37
53
  ```markdown
38
- | Step | Status |
39
- |------|--------|
40
- | Build | |
41
- | Test | ❌ |
54
+ | Feature | Protokoll | Other |
55
+ |---------|-----------|-------|
56
+ | Name Recognition | | ✗ |
42
57
  ```
43
-