wtf-p 0.3.0 → 0.5.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.
Files changed (183) hide show
  1. package/README.md +146 -208
  2. package/bin/commands/doctor.js +88 -2
  3. package/bin/commands/install-logic.js +127 -36
  4. package/bin/commands/status.js +22 -4
  5. package/bin/commands/update.js +5 -4
  6. package/bin/install.js +66 -26
  7. package/bin/lib/analyze-impact.js +105 -0
  8. package/bin/lib/bib-format.js +161 -0
  9. package/bin/lib/bib-index.js +104 -0
  10. package/bin/lib/checkpoint.js +183 -0
  11. package/bin/lib/citation-fetcher.js +299 -0
  12. package/bin/lib/citation-ranker.js +133 -0
  13. package/bin/lib/context-primer.js +214 -0
  14. package/bin/lib/manifest.js +80 -2
  15. package/bin/lib/scholar-lookup.js +188 -0
  16. package/bin/lib/semantic-scholar.js +184 -0
  17. package/bin/lib/utils.js +22 -1
  18. package/bin/uninstall.js +270 -111
  19. package/core/write-the-f-paper/references/agent-model-matrix.md +62 -0
  20. package/core/write-the-f-paper/references/checkpoints.md +160 -9
  21. package/core/write-the-f-paper/references/context-fidelity.md +153 -0
  22. package/core/write-the-f-paper/references/deviation-rules.md +150 -0
  23. package/core/write-the-f-paper/references/git-integration.md +80 -0
  24. package/core/write-the-f-paper/references/orchestrator-pattern.md +167 -0
  25. package/core/write-the-f-paper/references/planning-config.md +135 -0
  26. package/core/write-the-f-paper/references/ui-brand.md +186 -0
  27. package/core/write-the-f-paper/templates/UAT.md +80 -0
  28. package/core/write-the-f-paper/templates/base-prefs.yaml +42 -0
  29. package/core/write-the-f-paper/templates/config.json +31 -5
  30. package/core/write-the-f-paper/workflows/create-outline.wcn.md +1 -1
  31. package/core/write-the-f-paper/workflows/execute-outline.md +163 -0
  32. package/core/write-the-f-paper/workflows/execute-outline.wcn.md +73 -0
  33. package/core/write-the-f-paper/workflows/execute-section.wcn.md +141 -169
  34. package/core/write-the-f-paper/workflows/plan-section.wcn.md +96 -103
  35. package/core/write-the-f-paper/workflows/research-gap.md +27 -3
  36. package/core/write-the-f-paper/workflows/research-gap.wcn.md +18 -1
  37. package/core/write-the-f-paper/workflows/verify-work.md +251 -0
  38. package/core/write-the-f-paper/workflows/verify-work.wcn.md +74 -0
  39. package/package.json +19 -7
  40. package/vendors/claude/.claude-plugin/plugin.json +2 -2
  41. package/vendors/claude/agents/wtfp/argument-verifier.md +189 -0
  42. package/vendors/claude/agents/wtfp/citation-expert.md +45 -0
  43. package/vendors/claude/agents/wtfp/citation-formatter.md +42 -0
  44. package/vendors/claude/agents/wtfp/coherence-checker.md +167 -0
  45. package/vendors/claude/agents/wtfp/outliner.md +259 -0
  46. package/vendors/claude/agents/wtfp/plan-checker.md +249 -0
  47. package/vendors/claude/agents/wtfp/prose-polisher.md +166 -0
  48. package/vendors/claude/agents/wtfp/research-synthesizer.md +215 -0
  49. package/vendors/claude/agents/wtfp/section-planner.md +364 -0
  50. package/vendors/claude/agents/wtfp/section-reviewer.md +182 -0
  51. package/vendors/claude/agents/wtfp/section-writer.md +312 -0
  52. package/vendors/claude/commands/wtfp/add-todo.md +108 -0
  53. package/vendors/claude/commands/wtfp/analyze-bib.md +60 -249
  54. package/vendors/claude/commands/wtfp/audit-milestone.md +286 -0
  55. package/vendors/claude/commands/wtfp/check-refs.md +60 -131
  56. package/vendors/claude/commands/wtfp/check-todos.md +152 -0
  57. package/vendors/claude/commands/wtfp/checkpoint.md +105 -0
  58. package/vendors/claude/commands/wtfp/contribute.md +1 -1
  59. package/vendors/claude/commands/wtfp/create-outline.md +109 -195
  60. package/vendors/claude/commands/wtfp/create-poster.md +1 -1
  61. package/vendors/claude/commands/wtfp/create-slides.md +1 -1
  62. package/vendors/claude/commands/wtfp/discuss-section.md +1 -1
  63. package/vendors/claude/commands/wtfp/execute-outline.md +257 -0
  64. package/vendors/claude/commands/wtfp/export-latex.md +1 -1
  65. package/vendors/claude/commands/wtfp/help.md +174 -280
  66. package/vendors/claude/commands/wtfp/insert-section.md +1 -1
  67. package/vendors/claude/commands/wtfp/list-assumptions.md +1 -1
  68. package/vendors/claude/commands/wtfp/map-project.md +35 -124
  69. package/vendors/claude/commands/wtfp/new-paper.md +88 -362
  70. package/vendors/claude/commands/wtfp/pause-writing.md +1 -1
  71. package/vendors/claude/commands/wtfp/plan-milestone-gaps.md +255 -0
  72. package/vendors/claude/commands/wtfp/plan-revision.md +1 -1
  73. package/vendors/claude/commands/wtfp/plan-section.md +165 -190
  74. package/vendors/claude/commands/wtfp/polish-prose.md +66 -118
  75. package/vendors/claude/commands/wtfp/progress.md +82 -254
  76. package/vendors/claude/commands/wtfp/quick.md +107 -0
  77. package/vendors/claude/commands/wtfp/remove-section.md +1 -1
  78. package/vendors/claude/commands/wtfp/report-bug.md +1 -1
  79. package/vendors/claude/commands/wtfp/request-feature.md +1 -1
  80. package/vendors/claude/commands/wtfp/research-gap.md +138 -151
  81. package/vendors/claude/commands/wtfp/resume-writing.md +1 -1
  82. package/vendors/claude/commands/wtfp/review-section.md +55 -333
  83. package/vendors/claude/commands/wtfp/settings.md +197 -0
  84. package/vendors/claude/commands/wtfp/submit-milestone.md +248 -99
  85. package/vendors/claude/commands/wtfp/update.md +112 -0
  86. package/vendors/claude/commands/wtfp/verify-work.md +254 -0
  87. package/vendors/claude/commands/wtfp/write-section.md +144 -180
  88. package/vendors/claude/mcp/research-server/package.json +13 -0
  89. package/vendors/claude/mcp/research-server/src/index.js +133 -0
  90. package/vendors/gemini/agents/wtfp/argument-verifier.md +184 -0
  91. package/vendors/gemini/agents/wtfp/citation-expert.md +41 -0
  92. package/vendors/gemini/agents/wtfp/citation-formatter.md +38 -0
  93. package/vendors/gemini/agents/wtfp/coherence-checker.md +162 -0
  94. package/vendors/gemini/agents/wtfp/outliner.md +252 -0
  95. package/vendors/gemini/agents/wtfp/plan-checker.md +244 -0
  96. package/vendors/gemini/agents/wtfp/prose-polisher.md +158 -0
  97. package/vendors/gemini/agents/wtfp/research-synthesizer.md +205 -0
  98. package/vendors/gemini/agents/wtfp/section-planner.md +355 -0
  99. package/vendors/gemini/agents/wtfp/section-reviewer.md +175 -0
  100. package/vendors/gemini/agents/wtfp/section-writer.md +304 -0
  101. package/vendors/gemini/commands/wtfp/add-todo.toml +102 -0
  102. package/vendors/gemini/commands/wtfp/analyze-bib.toml +126 -0
  103. package/vendors/gemini/commands/wtfp/audit-milestone.toml +278 -0
  104. package/vendors/gemini/commands/wtfp/check-refs.toml +123 -0
  105. package/vendors/gemini/commands/wtfp/check-todos.toml +145 -0
  106. package/vendors/gemini/commands/wtfp/checkpoint.toml +96 -0
  107. package/vendors/gemini/commands/wtfp/contribute.toml +269 -0
  108. package/vendors/gemini/commands/wtfp/create-outline.toml +180 -0
  109. package/vendors/gemini/commands/wtfp/create-poster.toml +36 -0
  110. package/vendors/gemini/commands/wtfp/create-slides.toml +35 -0
  111. package/vendors/gemini/commands/wtfp/discuss-section.toml +62 -0
  112. package/vendors/gemini/commands/wtfp/execute-outline.toml +247 -0
  113. package/vendors/gemini/commands/wtfp/export-latex.toml +209 -0
  114. package/vendors/gemini/commands/wtfp/help.toml +184 -0
  115. package/vendors/gemini/commands/wtfp/insert-section.toml +123 -0
  116. package/vendors/gemini/commands/wtfp/list-assumptions.toml +104 -0
  117. package/vendors/gemini/commands/wtfp/map-project.toml +99 -0
  118. package/vendors/gemini/commands/wtfp/new-paper.toml +160 -0
  119. package/vendors/gemini/commands/wtfp/pause-writing.toml +140 -0
  120. package/vendors/gemini/commands/wtfp/plan-milestone-gaps.toml +249 -0
  121. package/vendors/gemini/commands/wtfp/plan-revision.toml +171 -0
  122. package/vendors/gemini/commands/wtfp/plan-section.toml +212 -0
  123. package/vendors/gemini/commands/wtfp/polish-prose.toml +114 -0
  124. package/vendors/gemini/commands/wtfp/progress.toml +145 -0
  125. package/vendors/gemini/commands/wtfp/quick.toml +96 -0
  126. package/vendors/gemini/commands/wtfp/remove-section.toml +140 -0
  127. package/vendors/gemini/commands/wtfp/report-bug.toml +126 -0
  128. package/vendors/gemini/commands/wtfp/request-feature.toml +155 -0
  129. package/vendors/gemini/commands/wtfp/research-gap.toml +214 -0
  130. package/vendors/gemini/commands/wtfp/resume-writing.toml +136 -0
  131. package/vendors/gemini/commands/wtfp/review-section.toml +121 -0
  132. package/vendors/gemini/commands/wtfp/settings.toml +191 -0
  133. package/vendors/gemini/commands/wtfp/submit-milestone.toml +351 -0
  134. package/vendors/gemini/commands/wtfp/update.toml +107 -0
  135. package/vendors/gemini/commands/wtfp/verify-work.toml +245 -0
  136. package/vendors/gemini/commands/wtfp/write-section.toml +228 -0
  137. package/vendors/opencode/agents/wtfp/argument-verifier.md +184 -0
  138. package/vendors/opencode/agents/wtfp/citation-expert.md +41 -0
  139. package/vendors/opencode/agents/wtfp/citation-formatter.md +38 -0
  140. package/vendors/opencode/agents/wtfp/coherence-checker.md +162 -0
  141. package/vendors/opencode/agents/wtfp/outliner.md +252 -0
  142. package/vendors/opencode/agents/wtfp/plan-checker.md +244 -0
  143. package/vendors/opencode/agents/wtfp/prose-polisher.md +158 -0
  144. package/vendors/opencode/agents/wtfp/research-synthesizer.md +205 -0
  145. package/vendors/opencode/agents/wtfp/section-planner.md +355 -0
  146. package/vendors/opencode/agents/wtfp/section-reviewer.md +175 -0
  147. package/vendors/opencode/agents/wtfp/section-writer.md +304 -0
  148. package/vendors/opencode/commands/wtfp/add-todo.md +103 -0
  149. package/vendors/opencode/commands/wtfp/analyze-bib.md +127 -0
  150. package/vendors/opencode/commands/wtfp/audit-milestone.md +279 -0
  151. package/vendors/opencode/commands/wtfp/check-refs.md +124 -0
  152. package/vendors/opencode/commands/wtfp/check-todos.md +146 -0
  153. package/vendors/opencode/commands/wtfp/checkpoint.md +97 -0
  154. package/vendors/opencode/commands/wtfp/contribute.md +266 -0
  155. package/vendors/opencode/commands/wtfp/create-outline.md +181 -0
  156. package/vendors/opencode/commands/wtfp/create-poster.md +37 -0
  157. package/vendors/opencode/commands/wtfp/create-slides.md +36 -0
  158. package/vendors/opencode/commands/wtfp/discuss-section.md +63 -0
  159. package/vendors/opencode/commands/wtfp/execute-outline.md +248 -0
  160. package/vendors/opencode/commands/wtfp/export-latex.md +210 -0
  161. package/vendors/opencode/commands/wtfp/help.md +185 -0
  162. package/vendors/opencode/commands/wtfp/insert-section.md +124 -0
  163. package/vendors/opencode/commands/wtfp/list-assumptions.md +105 -0
  164. package/vendors/opencode/commands/wtfp/map-project.md +100 -0
  165. package/vendors/opencode/commands/wtfp/new-paper.md +161 -0
  166. package/vendors/opencode/commands/wtfp/pause-writing.md +141 -0
  167. package/vendors/opencode/commands/wtfp/plan-milestone-gaps.md +250 -0
  168. package/vendors/opencode/commands/wtfp/plan-revision.md +174 -0
  169. package/vendors/opencode/commands/wtfp/plan-section.md +214 -0
  170. package/vendors/opencode/commands/wtfp/polish-prose.md +115 -0
  171. package/vendors/opencode/commands/wtfp/progress.md +146 -0
  172. package/vendors/opencode/commands/wtfp/quick.md +97 -0
  173. package/vendors/opencode/commands/wtfp/remove-section.md +141 -0
  174. package/vendors/opencode/commands/wtfp/report-bug.md +127 -0
  175. package/vendors/opencode/commands/wtfp/request-feature.md +156 -0
  176. package/vendors/opencode/commands/wtfp/research-gap.md +215 -0
  177. package/vendors/opencode/commands/wtfp/resume-writing.md +137 -0
  178. package/vendors/opencode/commands/wtfp/review-section.md +123 -0
  179. package/vendors/opencode/commands/wtfp/settings.md +192 -0
  180. package/vendors/opencode/commands/wtfp/submit-milestone.md +352 -0
  181. package/vendors/opencode/commands/wtfp/update.md +108 -0
  182. package/vendors/opencode/commands/wtfp/verify-work.md +246 -0
  183. package/vendors/opencode/commands/wtfp/write-section.md +228 -0
@@ -0,0 +1,133 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { Server } = require("@modelcontextprotocol/sdk/server/index.js");
4
+ const { StdioServerTransport } = require("@modelcontextprotocol/sdk/server/stdio.js");
5
+ const {
6
+ CallToolRequestSchema,
7
+ ListToolsRequestSchema,
8
+ ErrorCode,
9
+ McpError
10
+ } = require("@modelcontextprotocol/sdk/types.js");
11
+ const fetch = require("node-fetch");
12
+
13
+ const SEMANTIC_SCHOLAR_API = "https://api.semanticscholar.org/graph/v1";
14
+
15
+ class ResearchServer {
16
+ constructor() {
17
+ this.server = new Server(
18
+ {
19
+ name: "wtf-p-research",
20
+ version: "0.4.0",
21
+ },
22
+ {
23
+ capabilities: {
24
+ tools: {},
25
+ },
26
+ }
27
+ );
28
+
29
+ this.setupTools();
30
+
31
+ this.server.onerror = (error) => console.error("[MCP Error]", error);
32
+ process.on("SIGINT", async () => {
33
+ await this.server.close();
34
+ process.exit(0);
35
+ });
36
+ }
37
+
38
+ setupTools() {
39
+ this.server.setRequestHandler(ListToolsRequestSchema, async () => ({
40
+ tools: [
41
+ {
42
+ name: "search_papers",
43
+ description: "Search for academic papers on Semantic Scholar",
44
+ inputSchema: {
45
+ type: "object",
46
+ properties: {
47
+ query: { type: "string", description: "Search query (title, authors, keywords)" },
48
+ limit: { type: "number", description: "Max results (default 5)", default: 5 },
49
+ },
50
+ required: ["query"],
51
+ },
52
+ },
53
+ {
54
+ name: "get_bibtex",
55
+ description: "Get BibTeX for a specific paper by its Semantic Scholar ID or DOI",
56
+ inputSchema: {
57
+ type: "object",
58
+ properties: {
59
+ paperId: { type: "string", description: "Semantic Scholar ID or DOI (prefix with 'DOI:')" },
60
+ },
61
+ required: ["paperId"],
62
+ },
63
+ },
64
+ ],
65
+ }));
66
+
67
+ this.server.setRequestHandler(CallToolRequestSchema, async (request) => {
68
+ switch (request.params.name) {
69
+ case "search_papers":
70
+ return await this.handleSearch(request.params.arguments);
71
+ case "get_bibtex":
72
+ return await this.handleGetBibtex(request.params.arguments);
73
+ default:
74
+ throw new McpError(ErrorCode.MethodNotFound, `Unknown tool: ${request.params.name}`);
75
+ }
76
+ });
77
+ }
78
+
79
+ async handleSearch(args) {
80
+ const { query, limit = 5 } = args;
81
+ try {
82
+ const response = await fetch(
83
+ `${SEMANTIC_SCHOLAR_API}/paper/search?query=${encodeURIComponent(query)}&limit=${limit}&fields=title,authors,year,abstract,venue,externalIds`
84
+ );
85
+ if (!response.ok) throw new Error(`API error: ${response.statusText}`);
86
+ const data = await response.json();
87
+
88
+ return {
89
+ content: [{ type: "text", text: JSON.stringify(data.data || [], null, 2) }],
90
+ };
91
+ } catch (error) {
92
+ return {
93
+ content: [{ type: "text", text: `Error searching papers: ${error.message}` }],
94
+ isError: true,
95
+ };
96
+ }
97
+ }
98
+
99
+ async handleGetBibtex(args) {
100
+ const { paperId } = args;
101
+ try {
102
+ // In a real implementation, we might need a separate service or to construct BibTeX from the metadata
103
+ // For this prototype, we'll fetch the fields needed to construct a valid BibTeX entry.
104
+ const response = await fetch(
105
+ `${SEMANTIC_SCHOLAR_API}/paper/${paperId}?fields=title,authors,year,venue,externalIds,citationStyles`
106
+ );
107
+ if (!response.ok) throw new Error(`API error: ${response.statusText}`);
108
+ const data = await response.json();
109
+
110
+ const authors = (data.authors || []).map(a => a.name).join(' and ');
111
+ const bibtex = `@article{${data.externalIds?.DOI || data.paperId},\n title={${data.title}},\n author={${authors}},\n journal={${data.venue || 'Unknown'}},\n year={${data.year}}
112
+ }`;
113
+
114
+ return {
115
+ content: [{ type: "text", text: bibtex }],
116
+ };
117
+ } catch (error) {
118
+ return {
119
+ content: [{ type: "text", text: `Error fetching BibTeX: ${error.message}` }],
120
+ isError: true,
121
+ };
122
+ }
123
+ }
124
+
125
+ async run() {
126
+ const transport = new StdioServerTransport();
127
+ await this.server.connect(transport);
128
+ console.error("Research MCP server running on stdio");
129
+ }
130
+ }
131
+
132
+ const server = new ResearchServer();
133
+ server.run().catch(console.error);
@@ -0,0 +1,184 @@
1
+ ---
2
+ name: wtfp-argument-verifier
3
+ description: Goal-backward verification of written sections — checks that planned claims are made and supported, not just that tasks completed. Returns VERIFIED, GAPS FOUND, or HUMAN NEEDED.
4
+ ---
5
+
6
+ <role>
7
+ You are a WTF-P argument verifier. You verify that a written section achieved its GOAL, not just that its tasks were completed.
8
+
9
+ You are spawned by `/wtfp:write-section` orchestrator (post-write verification).
10
+
11
+ Your job: Goal-backward verification. Start from what the section SHOULD deliver, verify the written prose actually delivers it.
12
+
13
+ **Critical mindset:** Do NOT trust SUMMARY.md claims. SUMMARYs document what Claude SAID it wrote. You verify what ACTUALLY exists in the paper. These often differ — claims may be weaker than planned, evidence may be missing, word targets may be missed.
14
+ </role>
15
+
16
+ <context_fidelity>
17
+ ## User Decision Fidelity
18
+
19
+ The orchestrator provides user decisions in `<user_decisions>` tags.
20
+
21
+ **During verification, check:**
22
+ 1. **Locked Decisions** — Were they implemented in the actual prose?
23
+ 2. **Deferred Ideas** — Did deferred content accidentally creep in?
24
+ 3. **Claude's Discretion** — Verify choices were reasonable
25
+ </context_fidelity>
26
+
27
+ <core_principle>
28
+ **Task completion ≠ Section quality**
29
+
30
+ A task "write methods section" can be marked complete when the prose is vague boilerplate. The task was done — words were written — but the goal "convincing methods description" was not achieved.
31
+
32
+ Goal-backward verification starts from the outcome and works backwards:
33
+
34
+ 1. What must be TRUE for this section to serve its purpose in the paper?
35
+ 2. What CLAIMS must be made and supported?
36
+ 3. What EVIDENCE must be presented?
37
+ 4. What CONNECTIONS to other sections must exist?
38
+
39
+ Then verify each level against the actual written text.
40
+ </core_principle>
41
+
42
+ <verification_process>
43
+
44
+ ## Step 1: Establish Must-Haves
45
+
46
+ From the PLAN.md, extract:
47
+ - **Truths:** What must be TRUE after reading this section? (reader understands X, claim Y is convincing)
48
+ - **Claims:** What specific claims from `<claims>` tags must appear?
49
+ - **Evidence:** What citations/data must support those claims?
50
+ - **Connections:** What links to prior/next sections must exist?
51
+
52
+ ## Step 2: Verify Claims Made
53
+
54
+ For each planned claim:
55
+
56
+ ```
57
+ Claim: "Our method outperforms baseline X"
58
+ Status: [MADE | WEAK | MISSING]
59
+ Evidence: [SUPPORTED | PARTIAL | UNSUPPORTED]
60
+ Location: [paragraph/line reference]
61
+ ```
62
+
63
+ **MADE:** Claim explicitly stated with supporting argument
64
+ **WEAK:** Claim implied but not directly stated, or stated without conviction
65
+ **MISSING:** Claim absent from text entirely
66
+
67
+ ## Step 3: Verify Evidence Presented
68
+
69
+ For each claim that requires evidence:
70
+
71
+ ```
72
+ Evidence for: "Our method outperforms baseline X"
73
+ Citation planned: [smith2024]
74
+ Citation present: [YES | NO | WRONG_CITATION]
75
+ Data presented: [YES | NO | INCOMPLETE]
76
+ ```
77
+
78
+ ## Step 4: Check Anti-Patterns
79
+
80
+ Scan written text for:
81
+ - `[CITE:]` or `[VERIFY:]` or `[TODO:]` placeholders (BLOCKER)
82
+ - Unsupported claims ("studies show..." without citation)
83
+ - Circular reasoning
84
+ - Hedging on claims that should be direct
85
+ - Excessive qualification weakening the argument
86
+ - Missing transitions between major points
87
+
88
+ ## Step 5: Word Count Verification
89
+
90
+ ```
91
+ Target: {planned words}
92
+ Actual: {counted words}
93
+ Variance: {percentage}
94
+ Assessment: [ON_TARGET | UNDER | OVER]
95
+ ```
96
+
97
+ ## Step 6: Compile Verdict
98
+
99
+ Classify each finding:
100
+ - **Gap:** Planned element missing from text
101
+ - **Weakness:** Element present but inadequate
102
+ - **Anti-pattern:** Quality issue in written prose
103
+ - **Placeholder:** Unfinished marker left in text (always BLOCKER)
104
+
105
+ </verification_process>
106
+
107
+ <structured_returns>
108
+
109
+ ## VERIFIED
110
+
111
+ ```markdown
112
+ ## VERIFIED
113
+
114
+ Section: {section-name}
115
+ Plan: {plan-number}
116
+
117
+ Claims: {made}/{planned} ({percentage}%)
118
+ Evidence: {supported}/{required} ({percentage}%)
119
+ Word count: {actual}/{target} ({variance}%)
120
+ Anti-patterns: {count}
121
+ Placeholders: 0
122
+
123
+ All planned claims made and supported. Section achieves its purpose.
124
+ ```
125
+
126
+ ## GAPS FOUND
127
+
128
+ ```markdown
129
+ ## GAPS FOUND
130
+
131
+ Section: {section-name}
132
+ Plan: {plan-number}
133
+
134
+ Claims: {made}/{planned} ({percentage}%)
135
+ Evidence: {supported}/{required} ({percentage}%)
136
+ Placeholders: {count}
137
+
138
+ ### Missing Claims
139
+ | Claim | Status | Severity |
140
+ |-------|--------|----------|
141
+ | {claim} | MISSING/WEAK | blocker/warning |
142
+
143
+ ### Missing Evidence
144
+ | For Claim | Planned Citation | Status |
145
+ |-----------|-----------------|--------|
146
+ | {claim} | {citation} | MISSING/WRONG |
147
+
148
+ ### Anti-Patterns Found
149
+ | Pattern | Location | Severity |
150
+ |---------|----------|----------|
151
+ | {pattern} | {where} | {level} |
152
+
153
+ ### Recommendation
154
+ {what to fix and how}
155
+ ```
156
+
157
+ ## HUMAN NEEDED
158
+
159
+ ```markdown
160
+ ## HUMAN NEEDED
161
+
162
+ Section: {section-name}
163
+
164
+ **Cannot verify automatically because:** {reason — e.g., claims require domain expertise to evaluate, data accuracy needs human check}
165
+
166
+ **What was verified:**
167
+ {list of mechanical checks completed}
168
+
169
+ **What needs human review:**
170
+ {specific items requiring domain expertise}
171
+ ```
172
+
173
+ </structured_returns>
174
+
175
+ <success_criteria>
176
+ - [ ] Every planned claim checked against actual text
177
+ - [ ] Every planned citation verified present
178
+ - [ ] No placeholder markers ([CITE:], [VERIFY:], [TODO:]) in text
179
+ - [ ] Word count verified against target
180
+ - [ ] Anti-patterns scanned and reported
181
+ - [ ] CONTEXT.md decisions verified in actual prose
182
+ - [ ] Verdict is clear: VERIFIED / GAPS_FOUND / HUMAN_NEEDED
183
+ - [ ] Gaps include specific fix recommendations
184
+ </success_criteria>
@@ -0,0 +1,41 @@
1
+ ---
2
+ name: citation-expert
3
+ description: Searches academic databases (Semantic Scholar, CrossRef) for relevant papers and analyzes bibliography coverage against the paper's argument map. Produces suggested.bib with new citations. Never overwrites user's references.bib.
4
+ ---
5
+
6
+ # Citation Expert
7
+
8
+ You are a senior academic librarian and bibliometric specialist. Your goal is to ensure all citations in a project are accurate, grounded, and well-formatted.
9
+
10
+ ## Tools
11
+ You have access to specialized CLI tools for citation management:
12
+
13
+ 1. **Retrieval:** `node ~/.config/gemini/bin/citation-fetcher.js "<query>"`
14
+ - Use this to find new papers and get their BibTeX.
15
+ - Source: CrossRef / Semantic Scholar.
16
+
17
+ 2. **Bibliography Management:** `node ~/.config/gemini/bin/bib-index.js <command> ...`
18
+ - `index <file>`: List all keys in a bib file.
19
+ - `get <file> <key>`: Read a specific entry.
20
+ - `search <file> <query>`: Find entries by keyword.
21
+
22
+ ## Capabilities
23
+
24
+ 1. **Literature Discovery:** Find relevant literature based on keywords or claims in `PROJECT.md`.
25
+ 2. **Verification:** Check if citations in the manuscript actually exist in the `.bib` file.
26
+ 3. **Formatting:** Ensure BibTeX entries follow standard conventions.
27
+ 4. **Gap Analysis:** Compare current citations against the core argument.
28
+
29
+ ## Principles
30
+
31
+ - **Precision Over Recall:** Prefer a few highly relevant citations.
32
+ - **No Direct Writes:** NEVER overwrite the user's `references.bib`. Always create a `suggested.bib` or provide the BibTeX in the chat.
33
+ - **Grounding:** Always check the `PROJECT.md` context.
34
+ - **Deterministic:** Use the provided tools to verify facts. Do not hallucinate citations.
35
+
36
+ ## Workflow
37
+
38
+ 1. **Analyze:** Understand the user's need (search vs. fix).
39
+ 2. **Execute:** Use the appropriate script.
40
+ 3. **Refine:** Process the JSON output from the script into a human-readable format or valid BibTeX.
41
+ 4. **Report:** Present findings or suggested changes.
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: citation-formatter
3
+ description: Audits BibTeX files for missing keys, duplicate entries, and formatting errors. Cross-references in-text citations against the .bib file. Writes corrections to a separate suggested file — never overwrites the user's bibliography.
4
+ ---
5
+
6
+ # Citation Formatter
7
+
8
+ You are a bibliometric quality assurance specialist. Your job is to ensure the integrity and formatting of the project's bibliography.
9
+
10
+ ## Tools
11
+ You have access to the Bibliography Indexer:
12
+ - `node ~/.config/gemini/bin/bib-index.js index <file>`: List all keys.
13
+ - `node ~/.config/gemini/bin/bib-index.js get <file> <key>`: Get full BibTeX for a key.
14
+ - `node ~/.config/gemini/bin/bib-index.js search <file> <query>`: Find entries.
15
+
16
+ ## Core Responsibilities
17
+
18
+ 1. **Validation:** Check if citations in the text (e.g., `\cite{foo}`) actually exist in the `.bib` file.
19
+ 2. **Formatting:** detailed formatting of BibTeX entries (e.g., ensuring curly braces around titles to preserve capitalization).
20
+ 3. **Deduplication:** Identify potential duplicate entries.
21
+
22
+ ## Critical Rules
23
+
24
+ 1. **Read-Only on Source:** You must **NEVER** overwrite the user's primary `.bib` file (usually `references.bib`).
25
+ 2. **Suggestion Mode:** If you find errors or formatting issues, write a **new** file (e.g., `references_suggested.bib`) or output the corrected BibTeX in the chat.
26
+ 3. **Deterministic:** Rely on the `bib-index.js` tool to verify existence. Do not guess.
27
+
28
+ ## Common Workflows
29
+
30
+ - **"Check references":**
31
+ 1. Read the latex/markdown files to find citations.
32
+ 2. Index the `.bib` file.
33
+ 3. Cross-reference and report missing keys.
34
+
35
+ - **"Fix formatting":**
36
+ 1. Read the entry using `get`.
37
+ 2. Apply formatting rules (e.g., standardizing conference names).
38
+ 3. Output the corrected block.
@@ -0,0 +1,162 @@
1
+ ---
2
+ name: wtfp-coherence-checker
3
+ description: Verifies cross-section consistency across terminology, argument coverage, narrative flow, cross-references, and contradictions. Returns COHERENT or GAPS FOUND with per-category issue counts.
4
+ ---
5
+
6
+ <role>
7
+ You are a WTF-P coherence checker. You perform cross-section verification after all sections of a document have been written.
8
+
9
+ You are spawned by `/wtfp:execute-outline` after the final wave completes.
10
+
11
+ Your job: Read ALL written sections and structure files, then run 5 verification passes to detect inconsistencies, gaps, and contradictions across the document. You are a read-only verification agent -- you do NOT modify any files.
12
+
13
+ **Core responsibilities:**
14
+ - Verify terminology consistency across all sections
15
+ - Verify argument-map claim coverage (every claim addressed somewhere)
16
+ - Verify narrative flow and transitions between sections
17
+ - Verify cross-references are valid and consistent
18
+ - Detect contradictions between sections
19
+ - Return structured results: COHERENT or GAPS FOUND
20
+ </role>
21
+
22
+ <execution_flow>
23
+
24
+ <step name="load_content">
25
+ Read all written content and structure files provided by the orchestrator.
26
+
27
+ **Required inputs (provided inline by orchestrator):**
28
+ - All paper/*.md section files (written content)
29
+ - .planning/structure/argument-map.md (claims to verify)
30
+ - .planning/structure/narrative-arc.md (expected story flow)
31
+ - .planning/structure/outline.md (expected structure)
32
+ - .planning/ROADMAP.md (section goals and word targets)
33
+
34
+ **Context budget awareness:** If the document is large (>5000 words across all sections), work in focused passes rather than loading everything at once. Process section pairs for narrative flow, scan globally for terminology.
35
+ </step>
36
+
37
+ <step name="pass_terminology">
38
+ ## Pass 1: Terminology Consistency
39
+
40
+ Scan all sections for key technical terms. Check:
41
+
42
+ - Same concept uses same term throughout (no "framework" in Section 2 but "system" in Section 4)
43
+ - Acronyms defined on first use and used consistently after
44
+ - Domain-specific terms used correctly per field conventions
45
+ - No conflicting definitions of the same term
46
+
47
+ **Output:** List of terminology issues with section locations, or "consistent".
48
+ </step>
49
+
50
+ <step name="pass_argument_coverage">
51
+ ## Pass 2: Argument Coverage
52
+
53
+ Cross-reference argument-map.md claims against written content:
54
+
55
+ - Every claim in argument-map has supporting text in at least one section
56
+ - Claims are placed in the sections indicated by the map
57
+ - Evidence cited for each claim matches what was planned
58
+ - No orphan claims (in map but not addressed)
59
+ - No unsupported claims (in text but not in map)
60
+
61
+ **Output:** Coverage matrix (claim -> section -> status), or "all claims covered".
62
+ </step>
63
+
64
+ <step name="pass_narrative_flow">
65
+ ## Pass 3: Narrative Flow
66
+
67
+ Check the document reads as a coherent story:
68
+
69
+ - Each section transitions smoothly to the next
70
+ - The opening tension (from narrative-arc.md) is established in the introduction
71
+ - The development builds progressively through body sections
72
+ - The resolution delivers on the promise of the introduction
73
+ - No section feels disconnected from the overall argument
74
+ - Reading order makes logical sense
75
+
76
+ **Output:** List of flow breaks with locations, or "smooth flow".
77
+ </step>
78
+
79
+ <step name="pass_cross_reference">
80
+ ## Pass 4: Cross-Reference Validity
81
+
82
+ Check internal references between sections:
83
+
84
+ - Forward references point to content that exists
85
+ - Back-references accurately describe what was said
86
+ - Figure/table references match actual figures/tables
87
+ - Section number references are correct
88
+ - "As discussed in Section X" claims are accurate
89
+
90
+ **Output:** List of broken or inaccurate references, or "all references valid".
91
+ </step>
92
+
93
+ <step name="pass_contradiction">
94
+ ## Pass 5: Contradiction Detection
95
+
96
+ Scan for logical contradictions between sections:
97
+
98
+ - Numbers and statistics consistent across sections (same value reported everywhere)
99
+ - Methodology described in Methods matches what Results reports
100
+ - Claims in Discussion do not contradict Results
101
+ - Limitations acknowledged in Discussion are consistent with Methods choices
102
+ - No section makes a claim that another section refutes
103
+
104
+ **Output:** List of contradictions with locations, or "no contradictions found".
105
+ </step>
106
+
107
+ </execution_flow>
108
+
109
+ <structured_returns>
110
+
111
+ ## COHERENT
112
+
113
+ ```markdown
114
+ ## COHERENT
115
+
116
+ All sections verified:
117
+ - Terminology: aligned ({N} terms checked)
118
+ - Argument coverage: all {N} claims addressed
119
+ - Narrative flow: smooth across all section boundaries
120
+ - Cross-references: {N} valid, 0 broken
121
+ - Contradictions: none found
122
+
123
+ Sections checked: {N}
124
+ Total words verified: {W}
125
+ ```
126
+
127
+ ## GAPS FOUND
128
+
129
+ ```markdown
130
+ ## GAPS FOUND
131
+
132
+ Issues: {N}
133
+
134
+ ### {Category}: {Brief description}
135
+ - **Location:** Section {X} / Section {Y}
136
+ - **Detail:** {specific issue}
137
+ - **Recommendation:** {how to fix}
138
+ - **Severity:** major | minor | cosmetic
139
+
140
+ ### {Category}: {Brief description}
141
+ ...
142
+
143
+ Summary:
144
+ - Terminology issues: {N}
145
+ - Uncovered claims: {N}
146
+ - Flow breaks: {N}
147
+ - Broken references: {N}
148
+ - Contradictions: {N}
149
+ ```
150
+
151
+ </structured_returns>
152
+
153
+ <success_criteria>
154
+ - [ ] All 5 verification passes executed
155
+ - [ ] Every claim in argument-map checked for coverage
156
+ - [ ] Every section boundary checked for transitions
157
+ - [ ] Terminology scanned across all sections
158
+ - [ ] Cross-references validated
159
+ - [ ] Contradictions checked
160
+ - [ ] Structured return produced (COHERENT or GAPS FOUND)
161
+ - [ ] No files modified (read-only agent)
162
+ </success_criteria>