wtf-p 0.4.0 → 0.6.0-rc.1

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 (1796) hide show
  1. package/README.md +243 -292
  2. package/bin/commands/doctor.js +115 -8
  3. package/bin/commands/install-logic.js +678 -99
  4. package/bin/commands/list.js +4 -12
  5. package/bin/commands/status.js +33 -12
  6. package/bin/commands/update.js +10 -8
  7. package/bin/install.js +262 -38
  8. package/bin/lib/adapter-compiler.js +1344 -0
  9. package/bin/lib/adapter-metadata.js +12 -0
  10. package/bin/lib/analyze-impact.js +28 -24
  11. package/bin/lib/bib-format.js +2 -2
  12. package/bin/lib/bib-index.js +6 -6
  13. package/bin/lib/checkpoint.js +183 -0
  14. package/bin/lib/citation-fetcher.js +20 -20
  15. package/bin/lib/citation-ranker.js +44 -32
  16. package/bin/lib/context-primer.js +214 -0
  17. package/bin/lib/manifest.js +148 -42
  18. package/bin/lib/native-registration.js +579 -0
  19. package/bin/lib/ownership.js +984 -0
  20. package/bin/lib/scholar-lookup.js +13 -13
  21. package/bin/lib/semantic-scholar.js +19 -19
  22. package/bin/lib/utils.js +131 -44
  23. package/bin/uninstall.js +790 -359
  24. package/core/write-the-f-paper/references/agent-model-matrix.md +62 -0
  25. package/core/write-the-f-paper/references/checkpoints.md +160 -9
  26. package/core/write-the-f-paper/references/context-fidelity.md +153 -0
  27. package/core/write-the-f-paper/references/deviation-rules.md +150 -0
  28. package/core/write-the-f-paper/references/git-integration.md +80 -0
  29. package/core/write-the-f-paper/references/orchestrator-pattern.md +167 -0
  30. package/core/write-the-f-paper/references/planning-config.md +135 -0
  31. package/core/write-the-f-paper/references/ui-brand.md +186 -0
  32. package/core/write-the-f-paper/templates/UAT.md +80 -0
  33. package/core/write-the-f-paper/templates/base-prefs.yaml +42 -0
  34. package/core/write-the-f-paper/templates/config.json +31 -5
  35. package/core/write-the-f-paper/workflows/create-outline.wcn.md +1 -1
  36. package/core/write-the-f-paper/workflows/execute-outline.md +163 -0
  37. package/core/write-the-f-paper/workflows/execute-outline.wcn.md +73 -0
  38. package/core/write-the-f-paper/workflows/execute-section.wcn.md +141 -169
  39. package/core/write-the-f-paper/workflows/plan-section.wcn.md +96 -103
  40. package/core/write-the-f-paper/workflows/research-gap.md +27 -3
  41. package/core/write-the-f-paper/workflows/research-gap.wcn.md +18 -1
  42. package/core/write-the-f-paper/workflows/verify-work.md +251 -0
  43. package/core/write-the-f-paper/workflows/verify-work.wcn.md +74 -0
  44. package/package.json +39 -17
  45. package/protocol/actions/add-todo.json +52 -0
  46. package/protocol/actions/analyze-bib.json +97 -0
  47. package/protocol/actions/audit-milestone.json +63 -0
  48. package/protocol/actions/check-refs.json +80 -0
  49. package/protocol/actions/check-todos.json +52 -0
  50. package/protocol/actions/checkpoint.json +76 -0
  51. package/protocol/actions/contribute.json +57 -0
  52. package/protocol/actions/create-outline.json +80 -0
  53. package/protocol/actions/create-poster.json +59 -0
  54. package/protocol/actions/create-slides.json +59 -0
  55. package/protocol/actions/discuss-section.json +76 -0
  56. package/protocol/actions/execute-outline.json +116 -0
  57. package/protocol/actions/export-latex.json +65 -0
  58. package/protocol/actions/help.json +30 -0
  59. package/protocol/actions/insert-section.json +61 -0
  60. package/protocol/actions/list-assumptions.json +35 -0
  61. package/protocol/actions/map-project.json +57 -0
  62. package/protocol/actions/new-paper.json +70 -0
  63. package/protocol/actions/pause-writing.json +71 -0
  64. package/protocol/actions/plan-milestone-gaps.json +57 -0
  65. package/protocol/actions/plan-revision.json +58 -0
  66. package/protocol/actions/plan-section.json +97 -0
  67. package/protocol/actions/polish-prose.json +69 -0
  68. package/protocol/actions/progress.json +51 -0
  69. package/protocol/actions/quick.json +70 -0
  70. package/protocol/actions/remove-section.json +63 -0
  71. package/protocol/actions/report-bug.json +47 -0
  72. package/protocol/actions/request-feature.json +47 -0
  73. package/protocol/actions/research-gap.json +101 -0
  74. package/protocol/actions/resume-writing.json +63 -0
  75. package/protocol/actions/review-section.json +83 -0
  76. package/protocol/actions/settings.json +47 -0
  77. package/protocol/actions/submit-milestone.json +77 -0
  78. package/protocol/actions/update.json +42 -0
  79. package/protocol/actions/verify-work.json +63 -0
  80. package/protocol/actions/write-section.json +115 -0
  81. package/protocol/aliases.lock.json +42 -0
  82. package/protocol/catalog.json +127 -0
  83. package/protocol/effects.json +107 -0
  84. package/protocol/fleets/wtfp-draft-review.json +35 -0
  85. package/protocol/fleets/wtfp-plan-section.json +34 -0
  86. package/protocol/project/README.md +65 -0
  87. package/protocol/project/schemas/checkpoint.schema.json +102 -0
  88. package/protocol/project/schemas/common.schema.json +33 -0
  89. package/protocol/project/schemas/config.schema.json +69 -0
  90. package/protocol/project/schemas/decisions.schema.json +31 -0
  91. package/protocol/project/schemas/evidence.schema.json +48 -0
  92. package/protocol/project/schemas/manifest.schema.json +102 -0
  93. package/protocol/project/schemas/outline.schema.json +67 -0
  94. package/protocol/project/schemas/section.schema.json +95 -0
  95. package/protocol/project/schemas/source.schema.json +73 -0
  96. package/protocol/project/schemas/state.schema.json +58 -0
  97. package/protocol/project/schemas/validation.schema.json +74 -0
  98. package/protocol/project/templates/checkpoint.json +25 -0
  99. package/protocol/project/templates/config.json +31 -0
  100. package/protocol/project/templates/decisions.json +35 -0
  101. package/protocol/project/templates/evidence.json +18 -0
  102. package/protocol/project/templates/manifest.json +30 -0
  103. package/protocol/project/templates/outline.json +38 -0
  104. package/protocol/project/templates/section.json +32 -0
  105. package/protocol/project/templates/source.json +20 -0
  106. package/protocol/project/templates/state.json +22 -0
  107. package/protocol/project/templates/validation.json +32 -0
  108. package/protocol/roles/argument-verifier.md +62 -0
  109. package/protocol/roles/citation-expert.md +63 -0
  110. package/protocol/roles/citation-formatter.md +63 -0
  111. package/protocol/roles/coherence-checker.md +61 -0
  112. package/protocol/roles/outliner.md +68 -0
  113. package/protocol/roles/plan-checker.md +62 -0
  114. package/protocol/roles/prose-polisher.md +63 -0
  115. package/protocol/roles/research-synthesizer.md +65 -0
  116. package/protocol/roles/section-planner.md +65 -0
  117. package/protocol/roles/section-reviewer.md +61 -0
  118. package/protocol/roles/section-writer.md +66 -0
  119. package/protocol/schemas/action.schema.json +129 -0
  120. package/protocol/schemas/aliases.schema.json +26 -0
  121. package/protocol/schemas/catalog.schema.json +61 -0
  122. package/protocol/schemas/effects.schema.json +26 -0
  123. package/protocol/schemas/role-result.schema.json +74 -0
  124. package/protocol/schemas/tools.schema.json +26 -0
  125. package/protocol/skills/wtfp-deliver-research/SKILL.md +39 -0
  126. package/protocol/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  127. package/protocol/skills/wtfp-deliver-research/references/actions.md +77 -0
  128. package/protocol/skills/wtfp-manage-project/SKILL.md +40 -0
  129. package/protocol/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  130. package/protocol/skills/wtfp-manage-project/references/actions.md +90 -0
  131. package/protocol/skills/wtfp-plan-section/SKILL.md +39 -0
  132. package/protocol/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  133. package/protocol/skills/wtfp-plan-section/references/actions.md +113 -0
  134. package/protocol/skills/wtfp-research-literature/SKILL.md +37 -0
  135. package/protocol/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  136. package/protocol/skills/wtfp-research-literature/references/actions.md +75 -0
  137. package/protocol/skills/wtfp-review-manuscript/SKILL.md +40 -0
  138. package/protocol/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  139. package/protocol/skills/wtfp-review-manuscript/references/actions.md +96 -0
  140. package/protocol/skills/wtfp-start-project/SKILL.md +38 -0
  141. package/protocol/skills/wtfp-start-project/agents/openai.yaml +4 -0
  142. package/protocol/skills/wtfp-start-project/references/actions.md +80 -0
  143. package/protocol/skills/wtfp-write-section/SKILL.md +37 -0
  144. package/protocol/skills/wtfp-write-section/agents/openai.yaml +4 -0
  145. package/protocol/skills/wtfp-write-section/references/actions.md +69 -0
  146. package/protocol/tools.json +54 -0
  147. package/protocol/workflows/add-todo.md +32 -0
  148. package/protocol/workflows/analyze-bib.md +33 -0
  149. package/protocol/workflows/audit-milestone.md +32 -0
  150. package/protocol/workflows/check-refs.md +32 -0
  151. package/protocol/workflows/check-todos.md +32 -0
  152. package/protocol/workflows/checkpoint.md +32 -0
  153. package/protocol/workflows/contribute.md +30 -0
  154. package/protocol/workflows/create-outline.md +32 -0
  155. package/protocol/workflows/create-poster.md +32 -0
  156. package/protocol/workflows/create-slides.md +32 -0
  157. package/protocol/workflows/discuss-section.md +32 -0
  158. package/protocol/workflows/execute-outline.md +32 -0
  159. package/protocol/workflows/export-latex.md +32 -0
  160. package/protocol/workflows/help.md +30 -0
  161. package/protocol/workflows/insert-section.md +32 -0
  162. package/protocol/workflows/list-assumptions.md +32 -0
  163. package/protocol/workflows/map-project.md +32 -0
  164. package/protocol/workflows/new-paper.md +37 -0
  165. package/protocol/workflows/pause-writing.md +32 -0
  166. package/protocol/workflows/plan-milestone-gaps.md +32 -0
  167. package/protocol/workflows/plan-revision.md +32 -0
  168. package/protocol/workflows/plan-section.md +32 -0
  169. package/protocol/workflows/polish-prose.md +32 -0
  170. package/protocol/workflows/progress.md +32 -0
  171. package/protocol/workflows/quick.md +32 -0
  172. package/protocol/workflows/remove-section.md +32 -0
  173. package/protocol/workflows/report-bug.md +30 -0
  174. package/protocol/workflows/request-feature.md +30 -0
  175. package/protocol/workflows/research-gap.md +32 -0
  176. package/protocol/workflows/resume-writing.md +32 -0
  177. package/protocol/workflows/review-section.md +32 -0
  178. package/protocol/workflows/settings.md +32 -0
  179. package/protocol/workflows/submit-milestone.md +32 -0
  180. package/protocol/workflows/update.md +30 -0
  181. package/protocol/workflows/verify-work.md +32 -0
  182. package/protocol/workflows/write-section.md +32 -0
  183. package/scripts/build-adapters.js +30 -0
  184. package/vendors/antigravity/.wtfp-generated.json +792 -0
  185. package/vendors/antigravity/actions/add-todo.json +52 -0
  186. package/vendors/antigravity/actions/analyze-bib.json +97 -0
  187. package/vendors/antigravity/actions/audit-milestone.json +63 -0
  188. package/vendors/antigravity/actions/check-refs.json +80 -0
  189. package/vendors/antigravity/actions/check-todos.json +52 -0
  190. package/vendors/antigravity/actions/checkpoint.json +76 -0
  191. package/vendors/antigravity/actions/contribute.json +57 -0
  192. package/vendors/antigravity/actions/create-outline.json +80 -0
  193. package/vendors/antigravity/actions/create-poster.json +59 -0
  194. package/vendors/antigravity/actions/create-slides.json +59 -0
  195. package/vendors/antigravity/actions/discuss-section.json +76 -0
  196. package/vendors/antigravity/actions/execute-outline.json +116 -0
  197. package/vendors/antigravity/actions/export-latex.json +65 -0
  198. package/vendors/antigravity/actions/help.json +30 -0
  199. package/vendors/antigravity/actions/insert-section.json +61 -0
  200. package/vendors/antigravity/actions/list-assumptions.json +35 -0
  201. package/vendors/antigravity/actions/map-project.json +57 -0
  202. package/vendors/antigravity/actions/new-paper.json +70 -0
  203. package/vendors/antigravity/actions/pause-writing.json +71 -0
  204. package/vendors/antigravity/actions/plan-milestone-gaps.json +57 -0
  205. package/vendors/antigravity/actions/plan-revision.json +58 -0
  206. package/vendors/antigravity/actions/plan-section.json +97 -0
  207. package/vendors/antigravity/actions/polish-prose.json +69 -0
  208. package/vendors/antigravity/actions/progress.json +51 -0
  209. package/vendors/antigravity/actions/quick.json +70 -0
  210. package/vendors/antigravity/actions/remove-section.json +63 -0
  211. package/vendors/antigravity/actions/report-bug.json +47 -0
  212. package/vendors/antigravity/actions/request-feature.json +47 -0
  213. package/vendors/antigravity/actions/research-gap.json +101 -0
  214. package/vendors/antigravity/actions/resume-writing.json +63 -0
  215. package/vendors/antigravity/actions/review-section.json +83 -0
  216. package/vendors/antigravity/actions/settings.json +47 -0
  217. package/vendors/antigravity/actions/submit-milestone.json +77 -0
  218. package/vendors/antigravity/actions/update.json +42 -0
  219. package/vendors/antigravity/actions/verify-work.json +63 -0
  220. package/vendors/antigravity/actions/write-section.json +115 -0
  221. package/vendors/antigravity/agents/wtfp-argument-verifier.md +65 -0
  222. package/vendors/antigravity/agents/wtfp-citation-expert.md +68 -0
  223. package/vendors/antigravity/agents/wtfp-citation-formatter.md +68 -0
  224. package/vendors/antigravity/agents/wtfp-coherence-checker.md +64 -0
  225. package/vendors/antigravity/agents/wtfp-outliner.md +73 -0
  226. package/vendors/antigravity/agents/wtfp-plan-checker.md +65 -0
  227. package/vendors/antigravity/agents/wtfp-prose-polisher.md +68 -0
  228. package/vendors/antigravity/agents/wtfp-research-synthesizer.md +70 -0
  229. package/vendors/antigravity/agents/wtfp-section-planner.md +70 -0
  230. package/vendors/antigravity/agents/wtfp-section-reviewer.md +64 -0
  231. package/vendors/antigravity/agents/wtfp-section-writer.md +71 -0
  232. package/vendors/antigravity/aliases.lock.json +42 -0
  233. package/vendors/antigravity/catalog.json +127 -0
  234. package/vendors/antigravity/commands/wtfp-add-todo.md +59 -0
  235. package/vendors/antigravity/commands/wtfp-analyze-bib.md +17 -0
  236. package/vendors/antigravity/commands/wtfp-audit-milestone.md +17 -0
  237. package/vendors/antigravity/commands/wtfp-check-refs.md +17 -0
  238. package/vendors/antigravity/commands/wtfp-check-todos.md +58 -0
  239. package/vendors/antigravity/commands/wtfp-checkpoint.md +74 -0
  240. package/vendors/antigravity/commands/wtfp-contribute.md +17 -0
  241. package/vendors/antigravity/commands/wtfp-create-outline.md +73 -0
  242. package/vendors/antigravity/commands/wtfp-create-poster.md +17 -0
  243. package/vendors/antigravity/commands/wtfp-create-slides.md +17 -0
  244. package/vendors/antigravity/commands/wtfp-discuss-section.md +64 -0
  245. package/vendors/antigravity/commands/wtfp-execute-outline.md +75 -0
  246. package/vendors/antigravity/commands/wtfp-export-latex.md +17 -0
  247. package/vendors/antigravity/commands/wtfp-help.md +48 -0
  248. package/vendors/antigravity/commands/wtfp-insert-section.md +60 -0
  249. package/vendors/antigravity/commands/wtfp-list-assumptions.md +59 -0
  250. package/vendors/antigravity/commands/wtfp-map-project.md +61 -0
  251. package/vendors/antigravity/commands/wtfp-new-paper.md +69 -0
  252. package/vendors/antigravity/commands/wtfp-pause-writing.md +65 -0
  253. package/vendors/antigravity/commands/wtfp-plan-milestone-gaps.md +62 -0
  254. package/vendors/antigravity/commands/wtfp-plan-revision.md +62 -0
  255. package/vendors/antigravity/commands/wtfp-plan-section.md +75 -0
  256. package/vendors/antigravity/commands/wtfp-polish-prose.md +63 -0
  257. package/vendors/antigravity/commands/wtfp-progress.md +72 -0
  258. package/vendors/antigravity/commands/wtfp-quick.md +63 -0
  259. package/vendors/antigravity/commands/wtfp-remove-section.md +17 -0
  260. package/vendors/antigravity/commands/wtfp-report-bug.md +17 -0
  261. package/vendors/antigravity/commands/wtfp-request-feature.md +17 -0
  262. package/vendors/antigravity/commands/wtfp-research-gap.md +17 -0
  263. package/vendors/antigravity/commands/wtfp-resume-writing.md +70 -0
  264. package/vendors/antigravity/commands/wtfp-review-section.md +67 -0
  265. package/vendors/antigravity/commands/wtfp-settings.md +56 -0
  266. package/vendors/antigravity/commands/wtfp-submit-milestone.md +72 -0
  267. package/vendors/antigravity/commands/wtfp-update.md +17 -0
  268. package/vendors/antigravity/commands/wtfp-verify-work.md +62 -0
  269. package/vendors/antigravity/commands/wtfp-write-section.md +75 -0
  270. package/vendors/antigravity/compatibility/action-availability.json +314 -0
  271. package/vendors/antigravity/effects.json +107 -0
  272. package/vendors/antigravity/fleets/wtfp-draft-review.json +35 -0
  273. package/vendors/antigravity/fleets/wtfp-plan-section.json +34 -0
  274. package/vendors/antigravity/plugin.json +11 -0
  275. package/vendors/antigravity/project/README.md +65 -0
  276. package/vendors/antigravity/project/schemas/checkpoint.schema.json +102 -0
  277. package/vendors/antigravity/project/schemas/common.schema.json +33 -0
  278. package/vendors/antigravity/project/schemas/config.schema.json +69 -0
  279. package/vendors/antigravity/project/schemas/decisions.schema.json +31 -0
  280. package/vendors/antigravity/project/schemas/evidence.schema.json +48 -0
  281. package/vendors/antigravity/project/schemas/manifest.schema.json +102 -0
  282. package/vendors/antigravity/project/schemas/outline.schema.json +67 -0
  283. package/vendors/antigravity/project/schemas/section.schema.json +95 -0
  284. package/vendors/antigravity/project/schemas/source.schema.json +73 -0
  285. package/vendors/antigravity/project/schemas/state.schema.json +58 -0
  286. package/vendors/antigravity/project/schemas/validation.schema.json +74 -0
  287. package/vendors/antigravity/project/templates/checkpoint.json +25 -0
  288. package/vendors/antigravity/project/templates/config.json +31 -0
  289. package/vendors/antigravity/project/templates/decisions.json +35 -0
  290. package/vendors/antigravity/project/templates/evidence.json +18 -0
  291. package/vendors/antigravity/project/templates/manifest.json +30 -0
  292. package/vendors/antigravity/project/templates/outline.json +38 -0
  293. package/vendors/antigravity/project/templates/section.json +32 -0
  294. package/vendors/antigravity/project/templates/source.json +20 -0
  295. package/vendors/antigravity/project/templates/state.json +22 -0
  296. package/vendors/antigravity/project/templates/validation.json +32 -0
  297. package/vendors/antigravity/repository/CONTRIBUTING.md +183 -0
  298. package/vendors/antigravity/roles/argument-verifier.md +62 -0
  299. package/vendors/antigravity/roles/citation-expert.md +63 -0
  300. package/vendors/antigravity/roles/citation-formatter.md +63 -0
  301. package/vendors/antigravity/roles/coherence-checker.md +61 -0
  302. package/vendors/antigravity/roles/outliner.md +68 -0
  303. package/vendors/antigravity/roles/plan-checker.md +62 -0
  304. package/vendors/antigravity/roles/prose-polisher.md +63 -0
  305. package/vendors/antigravity/roles/research-synthesizer.md +65 -0
  306. package/vendors/antigravity/roles/section-planner.md +65 -0
  307. package/vendors/antigravity/roles/section-reviewer.md +61 -0
  308. package/vendors/antigravity/roles/section-writer.md +66 -0
  309. package/vendors/antigravity/schemas/action.schema.json +129 -0
  310. package/vendors/antigravity/schemas/aliases.schema.json +26 -0
  311. package/vendors/antigravity/schemas/catalog.schema.json +61 -0
  312. package/vendors/antigravity/schemas/effects.schema.json +26 -0
  313. package/vendors/antigravity/schemas/role-result.schema.json +74 -0
  314. package/vendors/antigravity/schemas/tools.schema.json +26 -0
  315. package/vendors/antigravity/skills/wtfp-deliver-research/SKILL.md +39 -0
  316. package/vendors/antigravity/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  317. package/vendors/antigravity/skills/wtfp-deliver-research/references/actions.md +117 -0
  318. package/vendors/antigravity/skills/wtfp-manage-project/SKILL.md +40 -0
  319. package/vendors/antigravity/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  320. package/vendors/antigravity/skills/wtfp-manage-project/references/actions.md +90 -0
  321. package/vendors/antigravity/skills/wtfp-plan-section/SKILL.md +39 -0
  322. package/vendors/antigravity/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  323. package/vendors/antigravity/skills/wtfp-plan-section/references/actions.md +129 -0
  324. package/vendors/antigravity/skills/wtfp-research-literature/SKILL.md +37 -0
  325. package/vendors/antigravity/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  326. package/vendors/antigravity/skills/wtfp-research-literature/references/actions.md +115 -0
  327. package/vendors/antigravity/skills/wtfp-review-manuscript/SKILL.md +40 -0
  328. package/vendors/antigravity/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  329. package/vendors/antigravity/skills/wtfp-review-manuscript/references/actions.md +112 -0
  330. package/vendors/antigravity/skills/wtfp-start-project/SKILL.md +38 -0
  331. package/vendors/antigravity/skills/wtfp-start-project/agents/openai.yaml +4 -0
  332. package/vendors/antigravity/skills/wtfp-start-project/references/actions.md +80 -0
  333. package/vendors/antigravity/skills/wtfp-write-section/SKILL.md +37 -0
  334. package/vendors/antigravity/skills/wtfp-write-section/agents/openai.yaml +4 -0
  335. package/vendors/antigravity/skills/wtfp-write-section/references/actions.md +69 -0
  336. package/vendors/antigravity/tools/README.md +13 -0
  337. package/vendors/antigravity/tools/bibliography/analyze-impact.js +109 -0
  338. package/vendors/antigravity/tools/bibliography/format.js +161 -0
  339. package/vendors/antigravity/tools/bibliography/index.js +104 -0
  340. package/vendors/antigravity/tools/citation/fetch.js +299 -0
  341. package/vendors/antigravity/tools/citation/rank.js +145 -0
  342. package/vendors/antigravity/tools/citation/scholar-lookup.js +188 -0
  343. package/vendors/antigravity/tools/citation/semantic-scholar.js +184 -0
  344. package/vendors/antigravity/tools.json +54 -0
  345. package/vendors/antigravity/workflows/add-todo.md +32 -0
  346. package/vendors/antigravity/workflows/analyze-bib.md +33 -0
  347. package/vendors/antigravity/workflows/audit-milestone.md +32 -0
  348. package/vendors/antigravity/workflows/check-refs.md +32 -0
  349. package/vendors/antigravity/workflows/check-todos.md +32 -0
  350. package/vendors/antigravity/workflows/checkpoint.md +32 -0
  351. package/vendors/antigravity/workflows/contribute.md +30 -0
  352. package/vendors/antigravity/workflows/create-outline.md +32 -0
  353. package/vendors/antigravity/workflows/create-poster.md +32 -0
  354. package/vendors/antigravity/workflows/create-slides.md +32 -0
  355. package/vendors/antigravity/workflows/discuss-section.md +32 -0
  356. package/vendors/antigravity/workflows/execute-outline.md +32 -0
  357. package/vendors/antigravity/workflows/export-latex.md +32 -0
  358. package/vendors/antigravity/workflows/help.md +30 -0
  359. package/vendors/antigravity/workflows/insert-section.md +32 -0
  360. package/vendors/antigravity/workflows/list-assumptions.md +32 -0
  361. package/vendors/antigravity/workflows/map-project.md +32 -0
  362. package/vendors/antigravity/workflows/new-paper.md +37 -0
  363. package/vendors/antigravity/workflows/pause-writing.md +32 -0
  364. package/vendors/antigravity/workflows/plan-milestone-gaps.md +32 -0
  365. package/vendors/antigravity/workflows/plan-revision.md +32 -0
  366. package/vendors/antigravity/workflows/plan-section.md +32 -0
  367. package/vendors/antigravity/workflows/polish-prose.md +32 -0
  368. package/vendors/antigravity/workflows/progress.md +32 -0
  369. package/vendors/antigravity/workflows/quick.md +32 -0
  370. package/vendors/antigravity/workflows/remove-section.md +32 -0
  371. package/vendors/antigravity/workflows/report-bug.md +30 -0
  372. package/vendors/antigravity/workflows/request-feature.md +30 -0
  373. package/vendors/antigravity/workflows/research-gap.md +32 -0
  374. package/vendors/antigravity/workflows/resume-writing.md +32 -0
  375. package/vendors/antigravity/workflows/review-section.md +32 -0
  376. package/vendors/antigravity/workflows/settings.md +32 -0
  377. package/vendors/antigravity/workflows/submit-milestone.md +32 -0
  378. package/vendors/antigravity/workflows/update.md +30 -0
  379. package/vendors/antigravity/workflows/verify-work.md +32 -0
  380. package/vendors/antigravity/workflows/write-section.md +32 -0
  381. package/vendors/claude/.claude-plugin/marketplace.json +24 -0
  382. package/vendors/claude/.claude-plugin/plugin.json +3 -3
  383. package/vendors/claude/.wtfp-generated.json +796 -0
  384. package/vendors/claude/actions/add-todo.json +52 -0
  385. package/vendors/claude/actions/analyze-bib.json +97 -0
  386. package/vendors/claude/actions/audit-milestone.json +63 -0
  387. package/vendors/claude/actions/check-refs.json +80 -0
  388. package/vendors/claude/actions/check-todos.json +52 -0
  389. package/vendors/claude/actions/checkpoint.json +76 -0
  390. package/vendors/claude/actions/contribute.json +57 -0
  391. package/vendors/claude/actions/create-outline.json +80 -0
  392. package/vendors/claude/actions/create-poster.json +59 -0
  393. package/vendors/claude/actions/create-slides.json +59 -0
  394. package/vendors/claude/actions/discuss-section.json +76 -0
  395. package/vendors/claude/actions/execute-outline.json +116 -0
  396. package/vendors/claude/actions/export-latex.json +65 -0
  397. package/vendors/claude/actions/help.json +30 -0
  398. package/vendors/claude/actions/insert-section.json +61 -0
  399. package/vendors/claude/actions/list-assumptions.json +35 -0
  400. package/vendors/claude/actions/map-project.json +57 -0
  401. package/vendors/claude/actions/new-paper.json +70 -0
  402. package/vendors/claude/actions/pause-writing.json +71 -0
  403. package/vendors/claude/actions/plan-milestone-gaps.json +57 -0
  404. package/vendors/claude/actions/plan-revision.json +58 -0
  405. package/vendors/claude/actions/plan-section.json +97 -0
  406. package/vendors/claude/actions/polish-prose.json +69 -0
  407. package/vendors/claude/actions/progress.json +51 -0
  408. package/vendors/claude/actions/quick.json +70 -0
  409. package/vendors/claude/actions/remove-section.json +63 -0
  410. package/vendors/claude/actions/report-bug.json +47 -0
  411. package/vendors/claude/actions/request-feature.json +47 -0
  412. package/vendors/claude/actions/research-gap.json +101 -0
  413. package/vendors/claude/actions/resume-writing.json +63 -0
  414. package/vendors/claude/actions/review-section.json +83 -0
  415. package/vendors/claude/actions/settings.json +47 -0
  416. package/vendors/claude/actions/submit-milestone.json +77 -0
  417. package/vendors/claude/actions/update.json +42 -0
  418. package/vendors/claude/actions/verify-work.json +63 -0
  419. package/vendors/claude/actions/write-section.json +115 -0
  420. package/vendors/claude/agents/wtfp/argument-verifier.md +65 -0
  421. package/vendors/claude/agents/wtfp/citation-expert.md +51 -28
  422. package/vendors/claude/agents/wtfp/citation-formatter.md +52 -26
  423. package/vendors/claude/agents/wtfp/coherence-checker.md +64 -0
  424. package/vendors/claude/agents/wtfp/outliner.md +73 -0
  425. package/vendors/claude/agents/wtfp/plan-checker.md +65 -0
  426. package/vendors/claude/agents/wtfp/prose-polisher.md +68 -0
  427. package/vendors/claude/agents/wtfp/research-synthesizer.md +70 -0
  428. package/vendors/claude/agents/wtfp/section-planner.md +70 -0
  429. package/vendors/claude/agents/wtfp/section-reviewer.md +64 -0
  430. package/vendors/claude/agents/wtfp/section-writer.md +71 -0
  431. package/vendors/claude/aliases.lock.json +42 -0
  432. package/vendors/claude/catalog.json +127 -0
  433. package/vendors/claude/commands/add-todo.md +58 -0
  434. package/vendors/claude/commands/analyze-bib.md +16 -0
  435. package/vendors/claude/commands/audit-milestone.md +16 -0
  436. package/vendors/claude/commands/check-refs.md +16 -0
  437. package/vendors/claude/commands/check-todos.md +57 -0
  438. package/vendors/claude/commands/checkpoint.md +73 -0
  439. package/vendors/claude/commands/contribute.md +16 -0
  440. package/vendors/claude/commands/create-outline.md +72 -0
  441. package/vendors/claude/commands/create-poster.md +16 -0
  442. package/vendors/claude/commands/create-slides.md +16 -0
  443. package/vendors/claude/commands/discuss-section.md +63 -0
  444. package/vendors/claude/commands/execute-outline.md +74 -0
  445. package/vendors/claude/commands/export-latex.md +16 -0
  446. package/vendors/claude/commands/help.md +47 -0
  447. package/vendors/claude/commands/insert-section.md +59 -0
  448. package/vendors/claude/commands/list-assumptions.md +58 -0
  449. package/vendors/claude/commands/map-project.md +60 -0
  450. package/vendors/claude/commands/new-paper.md +68 -0
  451. package/vendors/claude/commands/pause-writing.md +64 -0
  452. package/vendors/claude/commands/plan-milestone-gaps.md +61 -0
  453. package/vendors/claude/commands/plan-revision.md +61 -0
  454. package/vendors/claude/commands/plan-section.md +74 -0
  455. package/vendors/claude/commands/polish-prose.md +62 -0
  456. package/vendors/claude/commands/progress.md +71 -0
  457. package/vendors/claude/commands/quick.md +62 -0
  458. package/vendors/claude/commands/remove-section.md +16 -0
  459. package/vendors/claude/commands/report-bug.md +16 -0
  460. package/vendors/claude/commands/request-feature.md +16 -0
  461. package/vendors/claude/commands/research-gap.md +16 -0
  462. package/vendors/claude/commands/resume-writing.md +69 -0
  463. package/vendors/claude/commands/review-section.md +66 -0
  464. package/vendors/claude/commands/settings.md +55 -0
  465. package/vendors/claude/commands/submit-milestone.md +71 -0
  466. package/vendors/claude/commands/update.md +16 -0
  467. package/vendors/claude/commands/verify-work.md +61 -0
  468. package/vendors/claude/commands/write-section.md +74 -0
  469. package/vendors/claude/compatibility/action-availability.json +314 -0
  470. package/vendors/claude/effects.json +107 -0
  471. package/vendors/claude/fleets/wtfp-draft-review.json +35 -0
  472. package/vendors/claude/fleets/wtfp-plan-section.json +34 -0
  473. package/vendors/claude/project/README.md +65 -0
  474. package/vendors/claude/project/schemas/checkpoint.schema.json +102 -0
  475. package/vendors/claude/project/schemas/common.schema.json +33 -0
  476. package/vendors/claude/project/schemas/config.schema.json +69 -0
  477. package/vendors/claude/project/schemas/decisions.schema.json +31 -0
  478. package/vendors/claude/project/schemas/evidence.schema.json +48 -0
  479. package/vendors/claude/project/schemas/manifest.schema.json +102 -0
  480. package/vendors/claude/project/schemas/outline.schema.json +67 -0
  481. package/vendors/claude/project/schemas/section.schema.json +95 -0
  482. package/vendors/claude/project/schemas/source.schema.json +73 -0
  483. package/vendors/claude/project/schemas/state.schema.json +58 -0
  484. package/vendors/claude/project/schemas/validation.schema.json +74 -0
  485. package/vendors/claude/project/templates/checkpoint.json +25 -0
  486. package/vendors/claude/project/templates/config.json +31 -0
  487. package/vendors/claude/project/templates/decisions.json +35 -0
  488. package/vendors/claude/project/templates/evidence.json +18 -0
  489. package/vendors/claude/project/templates/manifest.json +30 -0
  490. package/vendors/claude/project/templates/outline.json +38 -0
  491. package/vendors/claude/project/templates/section.json +32 -0
  492. package/vendors/claude/project/templates/source.json +20 -0
  493. package/vendors/claude/project/templates/state.json +22 -0
  494. package/vendors/claude/project/templates/validation.json +32 -0
  495. package/vendors/claude/repository/CONTRIBUTING.md +183 -0
  496. package/vendors/claude/roles/argument-verifier.md +62 -0
  497. package/vendors/claude/roles/citation-expert.md +63 -0
  498. package/vendors/claude/roles/citation-formatter.md +63 -0
  499. package/vendors/claude/roles/coherence-checker.md +61 -0
  500. package/vendors/claude/roles/outliner.md +68 -0
  501. package/vendors/claude/roles/plan-checker.md +62 -0
  502. package/vendors/claude/roles/prose-polisher.md +63 -0
  503. package/vendors/claude/roles/research-synthesizer.md +65 -0
  504. package/vendors/claude/roles/section-planner.md +65 -0
  505. package/vendors/claude/roles/section-reviewer.md +61 -0
  506. package/vendors/claude/roles/section-writer.md +66 -0
  507. package/vendors/claude/schemas/action.schema.json +129 -0
  508. package/vendors/claude/schemas/aliases.schema.json +26 -0
  509. package/vendors/claude/schemas/catalog.schema.json +61 -0
  510. package/vendors/claude/schemas/effects.schema.json +26 -0
  511. package/vendors/claude/schemas/role-result.schema.json +74 -0
  512. package/vendors/claude/schemas/tools.schema.json +26 -0
  513. package/vendors/claude/skills/wtfp-deliver-research/SKILL.md +39 -0
  514. package/vendors/claude/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  515. package/vendors/claude/skills/wtfp-deliver-research/references/actions.md +117 -0
  516. package/vendors/claude/skills/wtfp-manage-project/SKILL.md +40 -0
  517. package/vendors/claude/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  518. package/vendors/claude/skills/wtfp-manage-project/references/actions.md +90 -0
  519. package/vendors/claude/skills/wtfp-plan-section/SKILL.md +39 -0
  520. package/vendors/claude/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  521. package/vendors/claude/skills/wtfp-plan-section/references/actions.md +129 -0
  522. package/vendors/claude/skills/wtfp-research-literature/SKILL.md +37 -0
  523. package/vendors/claude/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  524. package/vendors/claude/skills/wtfp-research-literature/references/actions.md +115 -0
  525. package/vendors/claude/skills/wtfp-review-manuscript/SKILL.md +40 -0
  526. package/vendors/claude/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  527. package/vendors/claude/skills/wtfp-review-manuscript/references/actions.md +112 -0
  528. package/vendors/claude/skills/wtfp-start-project/SKILL.md +38 -0
  529. package/vendors/claude/skills/wtfp-start-project/agents/openai.yaml +4 -0
  530. package/vendors/claude/skills/wtfp-start-project/references/actions.md +80 -0
  531. package/vendors/claude/skills/wtfp-write-section/SKILL.md +37 -0
  532. package/vendors/claude/skills/wtfp-write-section/agents/openai.yaml +4 -0
  533. package/vendors/claude/skills/wtfp-write-section/references/actions.md +69 -0
  534. package/vendors/claude/tools/README.md +13 -0
  535. package/vendors/claude/tools/bibliography/analyze-impact.js +109 -0
  536. package/vendors/claude/tools/bibliography/format.js +161 -0
  537. package/vendors/claude/tools/bibliography/index.js +104 -0
  538. package/vendors/claude/tools/citation/fetch.js +299 -0
  539. package/vendors/claude/tools/citation/rank.js +145 -0
  540. package/vendors/claude/tools/citation/scholar-lookup.js +188 -0
  541. package/vendors/claude/tools/citation/semantic-scholar.js +184 -0
  542. package/vendors/claude/tools.json +54 -0
  543. package/vendors/claude/workflows/add-todo.md +32 -0
  544. package/vendors/claude/workflows/analyze-bib.md +33 -0
  545. package/vendors/claude/workflows/audit-milestone.md +32 -0
  546. package/vendors/claude/workflows/check-refs.md +32 -0
  547. package/vendors/claude/workflows/check-todos.md +32 -0
  548. package/vendors/claude/workflows/checkpoint.md +32 -0
  549. package/vendors/claude/workflows/contribute.md +30 -0
  550. package/vendors/claude/workflows/create-outline.md +32 -0
  551. package/vendors/claude/workflows/create-poster.md +32 -0
  552. package/vendors/claude/workflows/create-slides.md +32 -0
  553. package/vendors/claude/workflows/discuss-section.md +32 -0
  554. package/vendors/claude/workflows/execute-outline.md +32 -0
  555. package/vendors/claude/workflows/export-latex.md +32 -0
  556. package/vendors/claude/workflows/help.md +30 -0
  557. package/vendors/claude/workflows/insert-section.md +32 -0
  558. package/vendors/claude/workflows/list-assumptions.md +32 -0
  559. package/vendors/claude/workflows/map-project.md +32 -0
  560. package/vendors/claude/workflows/new-paper.md +37 -0
  561. package/vendors/claude/workflows/pause-writing.md +32 -0
  562. package/vendors/claude/workflows/plan-milestone-gaps.md +32 -0
  563. package/vendors/claude/workflows/plan-revision.md +32 -0
  564. package/vendors/claude/workflows/plan-section.md +32 -0
  565. package/vendors/claude/workflows/polish-prose.md +32 -0
  566. package/vendors/claude/workflows/progress.md +32 -0
  567. package/vendors/claude/workflows/quick.md +32 -0
  568. package/vendors/claude/workflows/remove-section.md +32 -0
  569. package/vendors/claude/workflows/report-bug.md +30 -0
  570. package/vendors/claude/workflows/request-feature.md +30 -0
  571. package/vendors/claude/workflows/research-gap.md +32 -0
  572. package/vendors/claude/workflows/resume-writing.md +32 -0
  573. package/vendors/claude/workflows/review-section.md +32 -0
  574. package/vendors/claude/workflows/settings.md +32 -0
  575. package/vendors/claude/workflows/submit-milestone.md +32 -0
  576. package/vendors/claude/workflows/update.md +30 -0
  577. package/vendors/claude/workflows/verify-work.md +32 -0
  578. package/vendors/claude/workflows/write-section.md +32 -0
  579. package/vendors/clio/.wtfp-generated.json +936 -0
  580. package/vendors/clio/actions/add-todo.json +52 -0
  581. package/vendors/clio/actions/analyze-bib.json +97 -0
  582. package/vendors/clio/actions/audit-milestone.json +63 -0
  583. package/vendors/clio/actions/check-refs.json +80 -0
  584. package/vendors/clio/actions/check-todos.json +52 -0
  585. package/vendors/clio/actions/checkpoint.json +76 -0
  586. package/vendors/clio/actions/contribute.json +57 -0
  587. package/vendors/clio/actions/create-outline.json +80 -0
  588. package/vendors/clio/actions/create-poster.json +59 -0
  589. package/vendors/clio/actions/create-slides.json +59 -0
  590. package/vendors/clio/actions/discuss-section.json +76 -0
  591. package/vendors/clio/actions/execute-outline.json +116 -0
  592. package/vendors/clio/actions/export-latex.json +65 -0
  593. package/vendors/clio/actions/help.json +30 -0
  594. package/vendors/clio/actions/insert-section.json +61 -0
  595. package/vendors/clio/actions/list-assumptions.json +35 -0
  596. package/vendors/clio/actions/map-project.json +57 -0
  597. package/vendors/clio/actions/new-paper.json +70 -0
  598. package/vendors/clio/actions/pause-writing.json +71 -0
  599. package/vendors/clio/actions/plan-milestone-gaps.json +57 -0
  600. package/vendors/clio/actions/plan-revision.json +58 -0
  601. package/vendors/clio/actions/plan-section.json +97 -0
  602. package/vendors/clio/actions/polish-prose.json +69 -0
  603. package/vendors/clio/actions/progress.json +51 -0
  604. package/vendors/clio/actions/quick.json +70 -0
  605. package/vendors/clio/actions/remove-section.json +63 -0
  606. package/vendors/clio/actions/report-bug.json +47 -0
  607. package/vendors/clio/actions/request-feature.json +47 -0
  608. package/vendors/clio/actions/research-gap.json +101 -0
  609. package/vendors/clio/actions/resume-writing.json +63 -0
  610. package/vendors/clio/actions/review-section.json +83 -0
  611. package/vendors/clio/actions/settings.json +47 -0
  612. package/vendors/clio/actions/submit-milestone.json +77 -0
  613. package/vendors/clio/actions/update.json +42 -0
  614. package/vendors/clio/actions/verify-work.json +63 -0
  615. package/vendors/clio/actions/write-section.json +115 -0
  616. package/vendors/clio/agents/wtfp-argument-verifier.md +60 -0
  617. package/vendors/clio/agents/wtfp-citation-expert.md +61 -0
  618. package/vendors/clio/agents/wtfp-citation-formatter.md +61 -0
  619. package/vendors/clio/agents/wtfp-coherence-checker.md +59 -0
  620. package/vendors/clio/agents/wtfp-outliner.md +66 -0
  621. package/vendors/clio/agents/wtfp-plan-checker.md +60 -0
  622. package/vendors/clio/agents/wtfp-prose-polisher.md +61 -0
  623. package/vendors/clio/agents/wtfp-research-synthesizer.md +63 -0
  624. package/vendors/clio/agents/wtfp-section-planner.md +63 -0
  625. package/vendors/clio/agents/wtfp-section-reviewer.md +59 -0
  626. package/vendors/clio/agents/wtfp-section-writer.md +64 -0
  627. package/vendors/clio/aliases.lock.json +42 -0
  628. package/vendors/clio/catalog.json +127 -0
  629. package/vendors/clio/clio-coder-extension.yaml +12 -0
  630. package/vendors/clio/compatibility/action-availability.json +323 -0
  631. package/vendors/clio/effects.json +107 -0
  632. package/vendors/clio/fleets/wtfp-draft-review.md +25 -0
  633. package/vendors/clio/fleets/wtfp-plan-section.md +23 -0
  634. package/vendors/clio/project/README.md +65 -0
  635. package/vendors/clio/project/schemas/checkpoint.schema.json +102 -0
  636. package/vendors/clio/project/schemas/common.schema.json +33 -0
  637. package/vendors/clio/project/schemas/config.schema.json +69 -0
  638. package/vendors/clio/project/schemas/decisions.schema.json +31 -0
  639. package/vendors/clio/project/schemas/evidence.schema.json +48 -0
  640. package/vendors/clio/project/schemas/manifest.schema.json +102 -0
  641. package/vendors/clio/project/schemas/outline.schema.json +67 -0
  642. package/vendors/clio/project/schemas/section.schema.json +95 -0
  643. package/vendors/clio/project/schemas/source.schema.json +73 -0
  644. package/vendors/clio/project/schemas/state.schema.json +58 -0
  645. package/vendors/clio/project/schemas/validation.schema.json +74 -0
  646. package/vendors/clio/project/templates/checkpoint.json +25 -0
  647. package/vendors/clio/project/templates/config.json +31 -0
  648. package/vendors/clio/project/templates/decisions.json +35 -0
  649. package/vendors/clio/project/templates/evidence.json +18 -0
  650. package/vendors/clio/project/templates/manifest.json +30 -0
  651. package/vendors/clio/project/templates/outline.json +38 -0
  652. package/vendors/clio/project/templates/section.json +32 -0
  653. package/vendors/clio/project/templates/source.json +20 -0
  654. package/vendors/clio/project/templates/state.json +22 -0
  655. package/vendors/clio/project/templates/validation.json +32 -0
  656. package/vendors/clio/prompts/wtfp/add-todo.md +52 -0
  657. package/vendors/clio/prompts/wtfp/analyze-bib.md +15 -0
  658. package/vendors/clio/prompts/wtfp/audit-milestone.md +15 -0
  659. package/vendors/clio/prompts/wtfp/check-refs.md +15 -0
  660. package/vendors/clio/prompts/wtfp/check-todos.md +50 -0
  661. package/vendors/clio/prompts/wtfp/checkpoint.md +66 -0
  662. package/vendors/clio/prompts/wtfp/contribute.md +15 -0
  663. package/vendors/clio/prompts/wtfp/create-outline.md +64 -0
  664. package/vendors/clio/prompts/wtfp/create-poster.md +15 -0
  665. package/vendors/clio/prompts/wtfp/create-slides.md +15 -0
  666. package/vendors/clio/prompts/wtfp/discuss-section.md +56 -0
  667. package/vendors/clio/prompts/wtfp/execute-outline.md +66 -0
  668. package/vendors/clio/prompts/wtfp/export-latex.md +15 -0
  669. package/vendors/clio/prompts/wtfp/help.md +43 -0
  670. package/vendors/clio/prompts/wtfp/insert-section.md +52 -0
  671. package/vendors/clio/prompts/wtfp/list-assumptions.md +54 -0
  672. package/vendors/clio/prompts/wtfp/map-project.md +54 -0
  673. package/vendors/clio/prompts/wtfp/new-paper.md +61 -0
  674. package/vendors/clio/prompts/wtfp/pause-writing.md +58 -0
  675. package/vendors/clio/prompts/wtfp/plan-milestone-gaps.md +54 -0
  676. package/vendors/clio/prompts/wtfp/plan-revision.md +54 -0
  677. package/vendors/clio/prompts/wtfp/plan-section.md +66 -0
  678. package/vendors/clio/prompts/wtfp/polish-prose.md +54 -0
  679. package/vendors/clio/prompts/wtfp/progress.md +66 -0
  680. package/vendors/clio/prompts/wtfp/quick.md +54 -0
  681. package/vendors/clio/prompts/wtfp/remove-section.md +15 -0
  682. package/vendors/clio/prompts/wtfp/report-bug.md +15 -0
  683. package/vendors/clio/prompts/wtfp/request-feature.md +15 -0
  684. package/vendors/clio/prompts/wtfp/research-gap.md +15 -0
  685. package/vendors/clio/prompts/wtfp/resume-writing.md +62 -0
  686. package/vendors/clio/prompts/wtfp/review-section.md +58 -0
  687. package/vendors/clio/prompts/wtfp/settings.md +48 -0
  688. package/vendors/clio/prompts/wtfp/submit-milestone.md +64 -0
  689. package/vendors/clio/prompts/wtfp/update.md +15 -0
  690. package/vendors/clio/prompts/wtfp/verify-work.md +54 -0
  691. package/vendors/clio/prompts/wtfp/write-section.md +66 -0
  692. package/vendors/clio/prompts/wtfp-add-todo.md +52 -0
  693. package/vendors/clio/prompts/wtfp-analyze-bib.md +15 -0
  694. package/vendors/clio/prompts/wtfp-audit-milestone.md +15 -0
  695. package/vendors/clio/prompts/wtfp-check-refs.md +15 -0
  696. package/vendors/clio/prompts/wtfp-check-todos.md +50 -0
  697. package/vendors/clio/prompts/wtfp-checkpoint.md +66 -0
  698. package/vendors/clio/prompts/wtfp-contribute.md +15 -0
  699. package/vendors/clio/prompts/wtfp-create-outline.md +64 -0
  700. package/vendors/clio/prompts/wtfp-create-poster.md +15 -0
  701. package/vendors/clio/prompts/wtfp-create-slides.md +15 -0
  702. package/vendors/clio/prompts/wtfp-discuss-section.md +56 -0
  703. package/vendors/clio/prompts/wtfp-execute-outline.md +66 -0
  704. package/vendors/clio/prompts/wtfp-export-latex.md +15 -0
  705. package/vendors/clio/prompts/wtfp-help.md +43 -0
  706. package/vendors/clio/prompts/wtfp-insert-section.md +52 -0
  707. package/vendors/clio/prompts/wtfp-list-assumptions.md +54 -0
  708. package/vendors/clio/prompts/wtfp-map-project.md +54 -0
  709. package/vendors/clio/prompts/wtfp-new-paper.md +61 -0
  710. package/vendors/clio/prompts/wtfp-pause-writing.md +58 -0
  711. package/vendors/clio/prompts/wtfp-plan-milestone-gaps.md +54 -0
  712. package/vendors/clio/prompts/wtfp-plan-revision.md +54 -0
  713. package/vendors/clio/prompts/wtfp-plan-section.md +66 -0
  714. package/vendors/clio/prompts/wtfp-polish-prose.md +54 -0
  715. package/vendors/clio/prompts/wtfp-progress.md +66 -0
  716. package/vendors/clio/prompts/wtfp-quick.md +54 -0
  717. package/vendors/clio/prompts/wtfp-remove-section.md +15 -0
  718. package/vendors/clio/prompts/wtfp-report-bug.md +15 -0
  719. package/vendors/clio/prompts/wtfp-request-feature.md +15 -0
  720. package/vendors/clio/prompts/wtfp-research-gap.md +15 -0
  721. package/vendors/clio/prompts/wtfp-resume-writing.md +62 -0
  722. package/vendors/clio/prompts/wtfp-review-section.md +58 -0
  723. package/vendors/clio/prompts/wtfp-settings.md +48 -0
  724. package/vendors/clio/prompts/wtfp-submit-milestone.md +64 -0
  725. package/vendors/clio/prompts/wtfp-update.md +15 -0
  726. package/vendors/clio/prompts/wtfp-verify-work.md +54 -0
  727. package/vendors/clio/prompts/wtfp-write-section.md +66 -0
  728. package/vendors/clio/repository/CONTRIBUTING.md +183 -0
  729. package/vendors/clio/roles/argument-verifier.md +62 -0
  730. package/vendors/clio/roles/citation-expert.md +63 -0
  731. package/vendors/clio/roles/citation-formatter.md +63 -0
  732. package/vendors/clio/roles/coherence-checker.md +61 -0
  733. package/vendors/clio/roles/outliner.md +68 -0
  734. package/vendors/clio/roles/plan-checker.md +62 -0
  735. package/vendors/clio/roles/prose-polisher.md +63 -0
  736. package/vendors/clio/roles/research-synthesizer.md +65 -0
  737. package/vendors/clio/roles/section-planner.md +65 -0
  738. package/vendors/clio/roles/section-reviewer.md +61 -0
  739. package/vendors/clio/roles/section-writer.md +66 -0
  740. package/vendors/clio/schemas/action.schema.json +129 -0
  741. package/vendors/clio/schemas/aliases.schema.json +26 -0
  742. package/vendors/clio/schemas/catalog.schema.json +61 -0
  743. package/vendors/clio/schemas/effects.schema.json +26 -0
  744. package/vendors/clio/schemas/role-result.schema.json +74 -0
  745. package/vendors/clio/schemas/tools.schema.json +26 -0
  746. package/vendors/clio/skills/wtfp-deliver-research/SKILL.md +39 -0
  747. package/vendors/clio/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  748. package/vendors/clio/skills/wtfp-deliver-research/references/actions.md +117 -0
  749. package/vendors/clio/skills/wtfp-manage-project/SKILL.md +40 -0
  750. package/vendors/clio/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  751. package/vendors/clio/skills/wtfp-manage-project/references/actions.md +90 -0
  752. package/vendors/clio/skills/wtfp-plan-section/SKILL.md +39 -0
  753. package/vendors/clio/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  754. package/vendors/clio/skills/wtfp-plan-section/references/actions.md +129 -0
  755. package/vendors/clio/skills/wtfp-research-literature/SKILL.md +37 -0
  756. package/vendors/clio/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  757. package/vendors/clio/skills/wtfp-research-literature/references/actions.md +115 -0
  758. package/vendors/clio/skills/wtfp-review-manuscript/SKILL.md +40 -0
  759. package/vendors/clio/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  760. package/vendors/clio/skills/wtfp-review-manuscript/references/actions.md +112 -0
  761. package/vendors/clio/skills/wtfp-start-project/SKILL.md +38 -0
  762. package/vendors/clio/skills/wtfp-start-project/agents/openai.yaml +4 -0
  763. package/vendors/clio/skills/wtfp-start-project/references/actions.md +80 -0
  764. package/vendors/clio/skills/wtfp-write-section/SKILL.md +37 -0
  765. package/vendors/clio/skills/wtfp-write-section/agents/openai.yaml +4 -0
  766. package/vendors/clio/skills/wtfp-write-section/references/actions.md +69 -0
  767. package/vendors/clio/tools/README.md +13 -0
  768. package/vendors/clio/tools/bibliography/analyze-impact.js +109 -0
  769. package/vendors/clio/tools/bibliography/format.js +161 -0
  770. package/vendors/clio/tools/bibliography/index.js +104 -0
  771. package/vendors/clio/tools/citation/fetch.js +299 -0
  772. package/vendors/clio/tools/citation/rank.js +145 -0
  773. package/vendors/clio/tools/citation/scholar-lookup.js +188 -0
  774. package/vendors/clio/tools/citation/semantic-scholar.js +184 -0
  775. package/vendors/clio/tools.json +54 -0
  776. package/vendors/clio/workflows/add-todo.md +32 -0
  777. package/vendors/clio/workflows/analyze-bib.md +33 -0
  778. package/vendors/clio/workflows/audit-milestone.md +32 -0
  779. package/vendors/clio/workflows/check-refs.md +32 -0
  780. package/vendors/clio/workflows/check-todos.md +32 -0
  781. package/vendors/clio/workflows/checkpoint.md +32 -0
  782. package/vendors/clio/workflows/contribute.md +30 -0
  783. package/vendors/clio/workflows/create-outline.md +32 -0
  784. package/vendors/clio/workflows/create-poster.md +32 -0
  785. package/vendors/clio/workflows/create-slides.md +32 -0
  786. package/vendors/clio/workflows/discuss-section.md +32 -0
  787. package/vendors/clio/workflows/execute-outline.md +32 -0
  788. package/vendors/clio/workflows/export-latex.md +32 -0
  789. package/vendors/clio/workflows/help.md +30 -0
  790. package/vendors/clio/workflows/insert-section.md +32 -0
  791. package/vendors/clio/workflows/list-assumptions.md +32 -0
  792. package/vendors/clio/workflows/map-project.md +32 -0
  793. package/vendors/clio/workflows/new-paper.md +37 -0
  794. package/vendors/clio/workflows/pause-writing.md +32 -0
  795. package/vendors/clio/workflows/plan-milestone-gaps.md +32 -0
  796. package/vendors/clio/workflows/plan-revision.md +32 -0
  797. package/vendors/clio/workflows/plan-section.md +32 -0
  798. package/vendors/clio/workflows/polish-prose.md +32 -0
  799. package/vendors/clio/workflows/progress.md +32 -0
  800. package/vendors/clio/workflows/quick.md +32 -0
  801. package/vendors/clio/workflows/remove-section.md +32 -0
  802. package/vendors/clio/workflows/report-bug.md +30 -0
  803. package/vendors/clio/workflows/request-feature.md +30 -0
  804. package/vendors/clio/workflows/research-gap.md +32 -0
  805. package/vendors/clio/workflows/resume-writing.md +32 -0
  806. package/vendors/clio/workflows/review-section.md +32 -0
  807. package/vendors/clio/workflows/settings.md +32 -0
  808. package/vendors/clio/workflows/submit-milestone.md +32 -0
  809. package/vendors/clio/workflows/update.md +30 -0
  810. package/vendors/clio/workflows/verify-work.md +32 -0
  811. package/vendors/clio/workflows/write-section.md +32 -0
  812. package/vendors/codex/.agents/plugins/marketplace.json +20 -0
  813. package/vendors/codex/.wtfp-generated.json +12 -0
  814. package/vendors/codex/plugins/wtf-p/.codex-plugin/plugin.json +32 -0
  815. package/vendors/codex/plugins/wtf-p/.wtfp-generated.json +604 -0
  816. package/vendors/codex/plugins/wtf-p/actions/add-todo.json +52 -0
  817. package/vendors/codex/plugins/wtf-p/actions/analyze-bib.json +97 -0
  818. package/vendors/codex/plugins/wtf-p/actions/audit-milestone.json +63 -0
  819. package/vendors/codex/plugins/wtf-p/actions/check-refs.json +80 -0
  820. package/vendors/codex/plugins/wtf-p/actions/check-todos.json +52 -0
  821. package/vendors/codex/plugins/wtf-p/actions/checkpoint.json +76 -0
  822. package/vendors/codex/plugins/wtf-p/actions/contribute.json +57 -0
  823. package/vendors/codex/plugins/wtf-p/actions/create-outline.json +80 -0
  824. package/vendors/codex/plugins/wtf-p/actions/create-poster.json +59 -0
  825. package/vendors/codex/plugins/wtf-p/actions/create-slides.json +59 -0
  826. package/vendors/codex/plugins/wtf-p/actions/discuss-section.json +76 -0
  827. package/vendors/codex/plugins/wtf-p/actions/execute-outline.json +116 -0
  828. package/vendors/codex/plugins/wtf-p/actions/export-latex.json +65 -0
  829. package/vendors/codex/plugins/wtf-p/actions/help.json +30 -0
  830. package/vendors/codex/plugins/wtf-p/actions/insert-section.json +61 -0
  831. package/vendors/codex/plugins/wtf-p/actions/list-assumptions.json +35 -0
  832. package/vendors/codex/plugins/wtf-p/actions/map-project.json +57 -0
  833. package/vendors/codex/plugins/wtf-p/actions/new-paper.json +70 -0
  834. package/vendors/codex/plugins/wtf-p/actions/pause-writing.json +71 -0
  835. package/vendors/codex/plugins/wtf-p/actions/plan-milestone-gaps.json +57 -0
  836. package/vendors/codex/plugins/wtf-p/actions/plan-revision.json +58 -0
  837. package/vendors/codex/plugins/wtf-p/actions/plan-section.json +97 -0
  838. package/vendors/codex/plugins/wtf-p/actions/polish-prose.json +69 -0
  839. package/vendors/codex/plugins/wtf-p/actions/progress.json +51 -0
  840. package/vendors/codex/plugins/wtf-p/actions/quick.json +70 -0
  841. package/vendors/codex/plugins/wtf-p/actions/remove-section.json +63 -0
  842. package/vendors/codex/plugins/wtf-p/actions/report-bug.json +47 -0
  843. package/vendors/codex/plugins/wtf-p/actions/request-feature.json +47 -0
  844. package/vendors/codex/plugins/wtf-p/actions/research-gap.json +101 -0
  845. package/vendors/codex/plugins/wtf-p/actions/resume-writing.json +63 -0
  846. package/vendors/codex/plugins/wtf-p/actions/review-section.json +83 -0
  847. package/vendors/codex/plugins/wtf-p/actions/settings.json +47 -0
  848. package/vendors/codex/plugins/wtf-p/actions/submit-milestone.json +77 -0
  849. package/vendors/codex/plugins/wtf-p/actions/update.json +42 -0
  850. package/vendors/codex/plugins/wtf-p/actions/verify-work.json +63 -0
  851. package/vendors/codex/plugins/wtf-p/actions/write-section.json +115 -0
  852. package/vendors/codex/plugins/wtf-p/aliases.lock.json +42 -0
  853. package/vendors/codex/plugins/wtf-p/catalog.json +127 -0
  854. package/vendors/codex/plugins/wtf-p/compatibility/action-availability.json +314 -0
  855. package/vendors/codex/plugins/wtf-p/effects.json +107 -0
  856. package/vendors/codex/plugins/wtf-p/fleets/wtfp-draft-review.json +35 -0
  857. package/vendors/codex/plugins/wtf-p/fleets/wtfp-plan-section.json +34 -0
  858. package/vendors/codex/plugins/wtf-p/project/README.md +65 -0
  859. package/vendors/codex/plugins/wtf-p/project/schemas/checkpoint.schema.json +102 -0
  860. package/vendors/codex/plugins/wtf-p/project/schemas/common.schema.json +33 -0
  861. package/vendors/codex/plugins/wtf-p/project/schemas/config.schema.json +69 -0
  862. package/vendors/codex/plugins/wtf-p/project/schemas/decisions.schema.json +31 -0
  863. package/vendors/codex/plugins/wtf-p/project/schemas/evidence.schema.json +48 -0
  864. package/vendors/codex/plugins/wtf-p/project/schemas/manifest.schema.json +102 -0
  865. package/vendors/codex/plugins/wtf-p/project/schemas/outline.schema.json +67 -0
  866. package/vendors/codex/plugins/wtf-p/project/schemas/section.schema.json +95 -0
  867. package/vendors/codex/plugins/wtf-p/project/schemas/source.schema.json +73 -0
  868. package/vendors/codex/plugins/wtf-p/project/schemas/state.schema.json +58 -0
  869. package/vendors/codex/plugins/wtf-p/project/schemas/validation.schema.json +74 -0
  870. package/vendors/codex/plugins/wtf-p/project/templates/checkpoint.json +25 -0
  871. package/vendors/codex/plugins/wtf-p/project/templates/config.json +31 -0
  872. package/vendors/codex/plugins/wtf-p/project/templates/decisions.json +35 -0
  873. package/vendors/codex/plugins/wtf-p/project/templates/evidence.json +18 -0
  874. package/vendors/codex/plugins/wtf-p/project/templates/manifest.json +30 -0
  875. package/vendors/codex/plugins/wtf-p/project/templates/outline.json +38 -0
  876. package/vendors/codex/plugins/wtf-p/project/templates/section.json +32 -0
  877. package/vendors/codex/plugins/wtf-p/project/templates/source.json +20 -0
  878. package/vendors/codex/plugins/wtf-p/project/templates/state.json +22 -0
  879. package/vendors/codex/plugins/wtf-p/project/templates/validation.json +32 -0
  880. package/vendors/codex/plugins/wtf-p/repository/CONTRIBUTING.md +183 -0
  881. package/vendors/codex/plugins/wtf-p/roles/argument-verifier.md +62 -0
  882. package/vendors/codex/plugins/wtf-p/roles/citation-expert.md +63 -0
  883. package/vendors/codex/plugins/wtf-p/roles/citation-formatter.md +63 -0
  884. package/vendors/codex/plugins/wtf-p/roles/coherence-checker.md +61 -0
  885. package/vendors/codex/plugins/wtf-p/roles/outliner.md +68 -0
  886. package/vendors/codex/plugins/wtf-p/roles/plan-checker.md +62 -0
  887. package/vendors/codex/plugins/wtf-p/roles/prose-polisher.md +63 -0
  888. package/vendors/codex/plugins/wtf-p/roles/research-synthesizer.md +65 -0
  889. package/vendors/codex/plugins/wtf-p/roles/section-planner.md +65 -0
  890. package/vendors/codex/plugins/wtf-p/roles/section-reviewer.md +61 -0
  891. package/vendors/codex/plugins/wtf-p/roles/section-writer.md +66 -0
  892. package/vendors/codex/plugins/wtf-p/schemas/action.schema.json +129 -0
  893. package/vendors/codex/plugins/wtf-p/schemas/aliases.schema.json +26 -0
  894. package/vendors/codex/plugins/wtf-p/schemas/catalog.schema.json +61 -0
  895. package/vendors/codex/plugins/wtf-p/schemas/effects.schema.json +26 -0
  896. package/vendors/codex/plugins/wtf-p/schemas/role-result.schema.json +74 -0
  897. package/vendors/codex/plugins/wtf-p/schemas/tools.schema.json +26 -0
  898. package/vendors/codex/plugins/wtf-p/skills/wtfp-deliver-research/SKILL.md +39 -0
  899. package/vendors/codex/plugins/wtf-p/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  900. package/vendors/codex/plugins/wtf-p/skills/wtfp-deliver-research/references/actions.md +117 -0
  901. package/vendors/codex/plugins/wtf-p/skills/wtfp-manage-project/SKILL.md +40 -0
  902. package/vendors/codex/plugins/wtf-p/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  903. package/vendors/codex/plugins/wtf-p/skills/wtfp-manage-project/references/actions.md +90 -0
  904. package/vendors/codex/plugins/wtf-p/skills/wtfp-plan-section/SKILL.md +39 -0
  905. package/vendors/codex/plugins/wtf-p/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  906. package/vendors/codex/plugins/wtf-p/skills/wtfp-plan-section/references/actions.md +129 -0
  907. package/vendors/codex/plugins/wtf-p/skills/wtfp-research-literature/SKILL.md +37 -0
  908. package/vendors/codex/plugins/wtf-p/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  909. package/vendors/codex/plugins/wtf-p/skills/wtfp-research-literature/references/actions.md +115 -0
  910. package/vendors/codex/plugins/wtf-p/skills/wtfp-review-manuscript/SKILL.md +40 -0
  911. package/vendors/codex/plugins/wtf-p/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  912. package/vendors/codex/plugins/wtf-p/skills/wtfp-review-manuscript/references/actions.md +112 -0
  913. package/vendors/codex/plugins/wtf-p/skills/wtfp-start-project/SKILL.md +38 -0
  914. package/vendors/codex/plugins/wtf-p/skills/wtfp-start-project/agents/openai.yaml +4 -0
  915. package/vendors/codex/plugins/wtf-p/skills/wtfp-start-project/references/actions.md +80 -0
  916. package/vendors/codex/plugins/wtf-p/skills/wtfp-write-section/SKILL.md +37 -0
  917. package/vendors/codex/plugins/wtf-p/skills/wtfp-write-section/agents/openai.yaml +4 -0
  918. package/vendors/codex/plugins/wtf-p/skills/wtfp-write-section/references/actions.md +69 -0
  919. package/vendors/codex/plugins/wtf-p/tools/README.md +13 -0
  920. package/vendors/codex/plugins/wtf-p/tools/bibliography/analyze-impact.js +109 -0
  921. package/vendors/codex/plugins/wtf-p/tools/bibliography/format.js +161 -0
  922. package/vendors/codex/plugins/wtf-p/tools/bibliography/index.js +104 -0
  923. package/vendors/codex/plugins/wtf-p/tools/citation/fetch.js +299 -0
  924. package/vendors/codex/plugins/wtf-p/tools/citation/rank.js +145 -0
  925. package/vendors/codex/plugins/wtf-p/tools/citation/scholar-lookup.js +188 -0
  926. package/vendors/codex/plugins/wtf-p/tools/citation/semantic-scholar.js +184 -0
  927. package/vendors/codex/plugins/wtf-p/tools.json +54 -0
  928. package/vendors/codex/plugins/wtf-p/workflows/add-todo.md +32 -0
  929. package/vendors/codex/plugins/wtf-p/workflows/analyze-bib.md +33 -0
  930. package/vendors/codex/plugins/wtf-p/workflows/audit-milestone.md +32 -0
  931. package/vendors/codex/plugins/wtf-p/workflows/check-refs.md +32 -0
  932. package/vendors/codex/plugins/wtf-p/workflows/check-todos.md +32 -0
  933. package/vendors/codex/plugins/wtf-p/workflows/checkpoint.md +32 -0
  934. package/vendors/codex/plugins/wtf-p/workflows/contribute.md +30 -0
  935. package/vendors/codex/plugins/wtf-p/workflows/create-outline.md +32 -0
  936. package/vendors/codex/plugins/wtf-p/workflows/create-poster.md +32 -0
  937. package/vendors/codex/plugins/wtf-p/workflows/create-slides.md +32 -0
  938. package/vendors/codex/plugins/wtf-p/workflows/discuss-section.md +32 -0
  939. package/vendors/codex/plugins/wtf-p/workflows/execute-outline.md +32 -0
  940. package/vendors/codex/plugins/wtf-p/workflows/export-latex.md +32 -0
  941. package/vendors/codex/plugins/wtf-p/workflows/help.md +30 -0
  942. package/vendors/codex/plugins/wtf-p/workflows/insert-section.md +32 -0
  943. package/vendors/codex/plugins/wtf-p/workflows/list-assumptions.md +32 -0
  944. package/vendors/codex/plugins/wtf-p/workflows/map-project.md +32 -0
  945. package/vendors/codex/plugins/wtf-p/workflows/new-paper.md +37 -0
  946. package/vendors/codex/plugins/wtf-p/workflows/pause-writing.md +32 -0
  947. package/vendors/codex/plugins/wtf-p/workflows/plan-milestone-gaps.md +32 -0
  948. package/vendors/codex/plugins/wtf-p/workflows/plan-revision.md +32 -0
  949. package/vendors/codex/plugins/wtf-p/workflows/plan-section.md +32 -0
  950. package/vendors/codex/plugins/wtf-p/workflows/polish-prose.md +32 -0
  951. package/vendors/codex/plugins/wtf-p/workflows/progress.md +32 -0
  952. package/vendors/codex/plugins/wtf-p/workflows/quick.md +32 -0
  953. package/vendors/codex/plugins/wtf-p/workflows/remove-section.md +32 -0
  954. package/vendors/codex/plugins/wtf-p/workflows/report-bug.md +30 -0
  955. package/vendors/codex/plugins/wtf-p/workflows/request-feature.md +30 -0
  956. package/vendors/codex/plugins/wtf-p/workflows/research-gap.md +32 -0
  957. package/vendors/codex/plugins/wtf-p/workflows/resume-writing.md +32 -0
  958. package/vendors/codex/plugins/wtf-p/workflows/review-section.md +32 -0
  959. package/vendors/codex/plugins/wtf-p/workflows/settings.md +32 -0
  960. package/vendors/codex/plugins/wtf-p/workflows/submit-milestone.md +32 -0
  961. package/vendors/codex/plugins/wtf-p/workflows/update.md +30 -0
  962. package/vendors/codex/plugins/wtf-p/workflows/verify-work.md +32 -0
  963. package/vendors/codex/plugins/wtf-p/workflows/write-section.md +32 -0
  964. package/vendors/copilot/.wtfp-generated.json +848 -0
  965. package/vendors/copilot/marketplace.json +24 -0
  966. package/vendors/copilot/plugins/wtf-p/.claude-plugin/plugin.json +12 -0
  967. package/vendors/copilot/plugins/wtf-p/.wtfp-generated.json +792 -0
  968. package/vendors/copilot/plugins/wtf-p/actions/add-todo.json +52 -0
  969. package/vendors/copilot/plugins/wtf-p/actions/analyze-bib.json +97 -0
  970. package/vendors/copilot/plugins/wtf-p/actions/audit-milestone.json +63 -0
  971. package/vendors/copilot/plugins/wtf-p/actions/check-refs.json +80 -0
  972. package/vendors/copilot/plugins/wtf-p/actions/check-todos.json +52 -0
  973. package/vendors/copilot/plugins/wtf-p/actions/checkpoint.json +76 -0
  974. package/vendors/copilot/plugins/wtf-p/actions/contribute.json +57 -0
  975. package/vendors/copilot/plugins/wtf-p/actions/create-outline.json +80 -0
  976. package/vendors/copilot/plugins/wtf-p/actions/create-poster.json +59 -0
  977. package/vendors/copilot/plugins/wtf-p/actions/create-slides.json +59 -0
  978. package/vendors/copilot/plugins/wtf-p/actions/discuss-section.json +76 -0
  979. package/vendors/copilot/plugins/wtf-p/actions/execute-outline.json +116 -0
  980. package/vendors/copilot/plugins/wtf-p/actions/export-latex.json +65 -0
  981. package/vendors/copilot/plugins/wtf-p/actions/help.json +30 -0
  982. package/vendors/copilot/plugins/wtf-p/actions/insert-section.json +61 -0
  983. package/vendors/copilot/plugins/wtf-p/actions/list-assumptions.json +35 -0
  984. package/vendors/copilot/plugins/wtf-p/actions/map-project.json +57 -0
  985. package/vendors/copilot/plugins/wtf-p/actions/new-paper.json +70 -0
  986. package/vendors/copilot/plugins/wtf-p/actions/pause-writing.json +71 -0
  987. package/vendors/copilot/plugins/wtf-p/actions/plan-milestone-gaps.json +57 -0
  988. package/vendors/copilot/plugins/wtf-p/actions/plan-revision.json +58 -0
  989. package/vendors/copilot/plugins/wtf-p/actions/plan-section.json +97 -0
  990. package/vendors/copilot/plugins/wtf-p/actions/polish-prose.json +69 -0
  991. package/vendors/copilot/plugins/wtf-p/actions/progress.json +51 -0
  992. package/vendors/copilot/plugins/wtf-p/actions/quick.json +70 -0
  993. package/vendors/copilot/plugins/wtf-p/actions/remove-section.json +63 -0
  994. package/vendors/copilot/plugins/wtf-p/actions/report-bug.json +47 -0
  995. package/vendors/copilot/plugins/wtf-p/actions/request-feature.json +47 -0
  996. package/vendors/copilot/plugins/wtf-p/actions/research-gap.json +101 -0
  997. package/vendors/copilot/plugins/wtf-p/actions/resume-writing.json +63 -0
  998. package/vendors/copilot/plugins/wtf-p/actions/review-section.json +83 -0
  999. package/vendors/copilot/plugins/wtf-p/actions/settings.json +47 -0
  1000. package/vendors/copilot/plugins/wtf-p/actions/submit-milestone.json +77 -0
  1001. package/vendors/copilot/plugins/wtf-p/actions/update.json +42 -0
  1002. package/vendors/copilot/plugins/wtf-p/actions/verify-work.json +63 -0
  1003. package/vendors/copilot/plugins/wtf-p/actions/write-section.json +115 -0
  1004. package/vendors/copilot/plugins/wtf-p/agents/wtfp-argument-verifier.md +65 -0
  1005. package/vendors/copilot/plugins/wtf-p/agents/wtfp-citation-expert.md +68 -0
  1006. package/vendors/copilot/plugins/wtf-p/agents/wtfp-citation-formatter.md +68 -0
  1007. package/vendors/copilot/plugins/wtf-p/agents/wtfp-coherence-checker.md +64 -0
  1008. package/vendors/copilot/plugins/wtf-p/agents/wtfp-outliner.md +73 -0
  1009. package/vendors/copilot/plugins/wtf-p/agents/wtfp-plan-checker.md +65 -0
  1010. package/vendors/copilot/plugins/wtf-p/agents/wtfp-prose-polisher.md +68 -0
  1011. package/vendors/copilot/plugins/wtf-p/agents/wtfp-research-synthesizer.md +70 -0
  1012. package/vendors/copilot/plugins/wtf-p/agents/wtfp-section-planner.md +70 -0
  1013. package/vendors/copilot/plugins/wtf-p/agents/wtfp-section-reviewer.md +64 -0
  1014. package/vendors/copilot/plugins/wtf-p/agents/wtfp-section-writer.md +71 -0
  1015. package/vendors/copilot/plugins/wtf-p/aliases.lock.json +42 -0
  1016. package/vendors/copilot/plugins/wtf-p/catalog.json +127 -0
  1017. package/vendors/copilot/plugins/wtf-p/commands/wtfp-add-todo.md +59 -0
  1018. package/vendors/copilot/plugins/wtf-p/commands/wtfp-analyze-bib.md +17 -0
  1019. package/vendors/copilot/plugins/wtf-p/commands/wtfp-audit-milestone.md +17 -0
  1020. package/vendors/copilot/plugins/wtf-p/commands/wtfp-check-refs.md +17 -0
  1021. package/vendors/copilot/plugins/wtf-p/commands/wtfp-check-todos.md +58 -0
  1022. package/vendors/copilot/plugins/wtf-p/commands/wtfp-checkpoint.md +74 -0
  1023. package/vendors/copilot/plugins/wtf-p/commands/wtfp-contribute.md +17 -0
  1024. package/vendors/copilot/plugins/wtf-p/commands/wtfp-create-outline.md +73 -0
  1025. package/vendors/copilot/plugins/wtf-p/commands/wtfp-create-poster.md +17 -0
  1026. package/vendors/copilot/plugins/wtf-p/commands/wtfp-create-slides.md +17 -0
  1027. package/vendors/copilot/plugins/wtf-p/commands/wtfp-discuss-section.md +64 -0
  1028. package/vendors/copilot/plugins/wtf-p/commands/wtfp-execute-outline.md +75 -0
  1029. package/vendors/copilot/plugins/wtf-p/commands/wtfp-export-latex.md +17 -0
  1030. package/vendors/copilot/plugins/wtf-p/commands/wtfp-help.md +48 -0
  1031. package/vendors/copilot/plugins/wtf-p/commands/wtfp-insert-section.md +60 -0
  1032. package/vendors/copilot/plugins/wtf-p/commands/wtfp-list-assumptions.md +59 -0
  1033. package/vendors/copilot/plugins/wtf-p/commands/wtfp-map-project.md +61 -0
  1034. package/vendors/copilot/plugins/wtf-p/commands/wtfp-new-paper.md +69 -0
  1035. package/vendors/copilot/plugins/wtf-p/commands/wtfp-pause-writing.md +65 -0
  1036. package/vendors/copilot/plugins/wtf-p/commands/wtfp-plan-milestone-gaps.md +62 -0
  1037. package/vendors/copilot/plugins/wtf-p/commands/wtfp-plan-revision.md +62 -0
  1038. package/vendors/copilot/plugins/wtf-p/commands/wtfp-plan-section.md +75 -0
  1039. package/vendors/copilot/plugins/wtf-p/commands/wtfp-polish-prose.md +63 -0
  1040. package/vendors/copilot/plugins/wtf-p/commands/wtfp-progress.md +72 -0
  1041. package/vendors/copilot/plugins/wtf-p/commands/wtfp-quick.md +63 -0
  1042. package/vendors/copilot/plugins/wtf-p/commands/wtfp-remove-section.md +17 -0
  1043. package/vendors/copilot/plugins/wtf-p/commands/wtfp-report-bug.md +17 -0
  1044. package/vendors/copilot/plugins/wtf-p/commands/wtfp-request-feature.md +17 -0
  1045. package/vendors/copilot/plugins/wtf-p/commands/wtfp-research-gap.md +17 -0
  1046. package/vendors/copilot/plugins/wtf-p/commands/wtfp-resume-writing.md +70 -0
  1047. package/vendors/copilot/plugins/wtf-p/commands/wtfp-review-section.md +67 -0
  1048. package/vendors/copilot/plugins/wtf-p/commands/wtfp-settings.md +56 -0
  1049. package/vendors/copilot/plugins/wtf-p/commands/wtfp-submit-milestone.md +72 -0
  1050. package/vendors/copilot/plugins/wtf-p/commands/wtfp-update.md +17 -0
  1051. package/vendors/copilot/plugins/wtf-p/commands/wtfp-verify-work.md +62 -0
  1052. package/vendors/copilot/plugins/wtf-p/commands/wtfp-write-section.md +75 -0
  1053. package/vendors/copilot/plugins/wtf-p/compatibility/action-availability.json +314 -0
  1054. package/vendors/copilot/plugins/wtf-p/effects.json +107 -0
  1055. package/vendors/copilot/plugins/wtf-p/fleets/wtfp-draft-review.json +35 -0
  1056. package/vendors/copilot/plugins/wtf-p/fleets/wtfp-plan-section.json +34 -0
  1057. package/vendors/copilot/plugins/wtf-p/project/README.md +65 -0
  1058. package/vendors/copilot/plugins/wtf-p/project/schemas/checkpoint.schema.json +102 -0
  1059. package/vendors/copilot/plugins/wtf-p/project/schemas/common.schema.json +33 -0
  1060. package/vendors/copilot/plugins/wtf-p/project/schemas/config.schema.json +69 -0
  1061. package/vendors/copilot/plugins/wtf-p/project/schemas/decisions.schema.json +31 -0
  1062. package/vendors/copilot/plugins/wtf-p/project/schemas/evidence.schema.json +48 -0
  1063. package/vendors/copilot/plugins/wtf-p/project/schemas/manifest.schema.json +102 -0
  1064. package/vendors/copilot/plugins/wtf-p/project/schemas/outline.schema.json +67 -0
  1065. package/vendors/copilot/plugins/wtf-p/project/schemas/section.schema.json +95 -0
  1066. package/vendors/copilot/plugins/wtf-p/project/schemas/source.schema.json +73 -0
  1067. package/vendors/copilot/plugins/wtf-p/project/schemas/state.schema.json +58 -0
  1068. package/vendors/copilot/plugins/wtf-p/project/schemas/validation.schema.json +74 -0
  1069. package/vendors/copilot/plugins/wtf-p/project/templates/checkpoint.json +25 -0
  1070. package/vendors/copilot/plugins/wtf-p/project/templates/config.json +31 -0
  1071. package/vendors/copilot/plugins/wtf-p/project/templates/decisions.json +35 -0
  1072. package/vendors/copilot/plugins/wtf-p/project/templates/evidence.json +18 -0
  1073. package/vendors/copilot/plugins/wtf-p/project/templates/manifest.json +30 -0
  1074. package/vendors/copilot/plugins/wtf-p/project/templates/outline.json +38 -0
  1075. package/vendors/copilot/plugins/wtf-p/project/templates/section.json +32 -0
  1076. package/vendors/copilot/plugins/wtf-p/project/templates/source.json +20 -0
  1077. package/vendors/copilot/plugins/wtf-p/project/templates/state.json +22 -0
  1078. package/vendors/copilot/plugins/wtf-p/project/templates/validation.json +32 -0
  1079. package/vendors/copilot/plugins/wtf-p/repository/CONTRIBUTING.md +183 -0
  1080. package/vendors/copilot/plugins/wtf-p/roles/argument-verifier.md +62 -0
  1081. package/vendors/copilot/plugins/wtf-p/roles/citation-expert.md +63 -0
  1082. package/vendors/copilot/plugins/wtf-p/roles/citation-formatter.md +63 -0
  1083. package/vendors/copilot/plugins/wtf-p/roles/coherence-checker.md +61 -0
  1084. package/vendors/copilot/plugins/wtf-p/roles/outliner.md +68 -0
  1085. package/vendors/copilot/plugins/wtf-p/roles/plan-checker.md +62 -0
  1086. package/vendors/copilot/plugins/wtf-p/roles/prose-polisher.md +63 -0
  1087. package/vendors/copilot/plugins/wtf-p/roles/research-synthesizer.md +65 -0
  1088. package/vendors/copilot/plugins/wtf-p/roles/section-planner.md +65 -0
  1089. package/vendors/copilot/plugins/wtf-p/roles/section-reviewer.md +61 -0
  1090. package/vendors/copilot/plugins/wtf-p/roles/section-writer.md +66 -0
  1091. package/vendors/copilot/plugins/wtf-p/schemas/action.schema.json +129 -0
  1092. package/vendors/copilot/plugins/wtf-p/schemas/aliases.schema.json +26 -0
  1093. package/vendors/copilot/plugins/wtf-p/schemas/catalog.schema.json +61 -0
  1094. package/vendors/copilot/plugins/wtf-p/schemas/effects.schema.json +26 -0
  1095. package/vendors/copilot/plugins/wtf-p/schemas/role-result.schema.json +74 -0
  1096. package/vendors/copilot/plugins/wtf-p/schemas/tools.schema.json +26 -0
  1097. package/vendors/copilot/plugins/wtf-p/skills/wtfp-deliver-research/SKILL.md +39 -0
  1098. package/vendors/copilot/plugins/wtf-p/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  1099. package/vendors/copilot/plugins/wtf-p/skills/wtfp-deliver-research/references/actions.md +117 -0
  1100. package/vendors/copilot/plugins/wtf-p/skills/wtfp-manage-project/SKILL.md +40 -0
  1101. package/vendors/copilot/plugins/wtf-p/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  1102. package/vendors/copilot/plugins/wtf-p/skills/wtfp-manage-project/references/actions.md +90 -0
  1103. package/vendors/copilot/plugins/wtf-p/skills/wtfp-plan-section/SKILL.md +39 -0
  1104. package/vendors/copilot/plugins/wtf-p/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  1105. package/vendors/copilot/plugins/wtf-p/skills/wtfp-plan-section/references/actions.md +129 -0
  1106. package/vendors/copilot/plugins/wtf-p/skills/wtfp-research-literature/SKILL.md +37 -0
  1107. package/vendors/copilot/plugins/wtf-p/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  1108. package/vendors/copilot/plugins/wtf-p/skills/wtfp-research-literature/references/actions.md +115 -0
  1109. package/vendors/copilot/plugins/wtf-p/skills/wtfp-review-manuscript/SKILL.md +40 -0
  1110. package/vendors/copilot/plugins/wtf-p/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  1111. package/vendors/copilot/plugins/wtf-p/skills/wtfp-review-manuscript/references/actions.md +112 -0
  1112. package/vendors/copilot/plugins/wtf-p/skills/wtfp-start-project/SKILL.md +38 -0
  1113. package/vendors/copilot/plugins/wtf-p/skills/wtfp-start-project/agents/openai.yaml +4 -0
  1114. package/vendors/copilot/plugins/wtf-p/skills/wtfp-start-project/references/actions.md +80 -0
  1115. package/vendors/copilot/plugins/wtf-p/skills/wtfp-write-section/SKILL.md +37 -0
  1116. package/vendors/copilot/plugins/wtf-p/skills/wtfp-write-section/agents/openai.yaml +4 -0
  1117. package/vendors/copilot/plugins/wtf-p/skills/wtfp-write-section/references/actions.md +69 -0
  1118. package/vendors/copilot/plugins/wtf-p/tools/README.md +13 -0
  1119. package/vendors/copilot/plugins/wtf-p/tools/bibliography/analyze-impact.js +109 -0
  1120. package/vendors/copilot/plugins/wtf-p/tools/bibliography/format.js +161 -0
  1121. package/vendors/copilot/plugins/wtf-p/tools/bibliography/index.js +104 -0
  1122. package/vendors/copilot/plugins/wtf-p/tools/citation/fetch.js +299 -0
  1123. package/vendors/copilot/plugins/wtf-p/tools/citation/rank.js +145 -0
  1124. package/vendors/copilot/plugins/wtf-p/tools/citation/scholar-lookup.js +188 -0
  1125. package/vendors/copilot/plugins/wtf-p/tools/citation/semantic-scholar.js +184 -0
  1126. package/vendors/copilot/plugins/wtf-p/tools.json +54 -0
  1127. package/vendors/copilot/plugins/wtf-p/workflows/add-todo.md +32 -0
  1128. package/vendors/copilot/plugins/wtf-p/workflows/analyze-bib.md +33 -0
  1129. package/vendors/copilot/plugins/wtf-p/workflows/audit-milestone.md +32 -0
  1130. package/vendors/copilot/plugins/wtf-p/workflows/check-refs.md +32 -0
  1131. package/vendors/copilot/plugins/wtf-p/workflows/check-todos.md +32 -0
  1132. package/vendors/copilot/plugins/wtf-p/workflows/checkpoint.md +32 -0
  1133. package/vendors/copilot/plugins/wtf-p/workflows/contribute.md +30 -0
  1134. package/vendors/copilot/plugins/wtf-p/workflows/create-outline.md +32 -0
  1135. package/vendors/copilot/plugins/wtf-p/workflows/create-poster.md +32 -0
  1136. package/vendors/copilot/plugins/wtf-p/workflows/create-slides.md +32 -0
  1137. package/vendors/copilot/plugins/wtf-p/workflows/discuss-section.md +32 -0
  1138. package/vendors/copilot/plugins/wtf-p/workflows/execute-outline.md +32 -0
  1139. package/vendors/copilot/plugins/wtf-p/workflows/export-latex.md +32 -0
  1140. package/vendors/copilot/plugins/wtf-p/workflows/help.md +30 -0
  1141. package/vendors/copilot/plugins/wtf-p/workflows/insert-section.md +32 -0
  1142. package/vendors/copilot/plugins/wtf-p/workflows/list-assumptions.md +32 -0
  1143. package/vendors/copilot/plugins/wtf-p/workflows/map-project.md +32 -0
  1144. package/vendors/copilot/plugins/wtf-p/workflows/new-paper.md +37 -0
  1145. package/vendors/copilot/plugins/wtf-p/workflows/pause-writing.md +32 -0
  1146. package/vendors/copilot/plugins/wtf-p/workflows/plan-milestone-gaps.md +32 -0
  1147. package/vendors/copilot/plugins/wtf-p/workflows/plan-revision.md +32 -0
  1148. package/vendors/copilot/plugins/wtf-p/workflows/plan-section.md +32 -0
  1149. package/vendors/copilot/plugins/wtf-p/workflows/polish-prose.md +32 -0
  1150. package/vendors/copilot/plugins/wtf-p/workflows/progress.md +32 -0
  1151. package/vendors/copilot/plugins/wtf-p/workflows/quick.md +32 -0
  1152. package/vendors/copilot/plugins/wtf-p/workflows/remove-section.md +32 -0
  1153. package/vendors/copilot/plugins/wtf-p/workflows/report-bug.md +30 -0
  1154. package/vendors/copilot/plugins/wtf-p/workflows/request-feature.md +30 -0
  1155. package/vendors/copilot/plugins/wtf-p/workflows/research-gap.md +32 -0
  1156. package/vendors/copilot/plugins/wtf-p/workflows/resume-writing.md +32 -0
  1157. package/vendors/copilot/plugins/wtf-p/workflows/review-section.md +32 -0
  1158. package/vendors/copilot/plugins/wtf-p/workflows/settings.md +32 -0
  1159. package/vendors/copilot/plugins/wtf-p/workflows/submit-milestone.md +32 -0
  1160. package/vendors/copilot/plugins/wtf-p/workflows/update.md +30 -0
  1161. package/vendors/copilot/plugins/wtf-p/workflows/verify-work.md +32 -0
  1162. package/vendors/copilot/plugins/wtf-p/workflows/write-section.md +32 -0
  1163. package/vendors/copilot/project/.github/agents/wtfp-argument-verifier.agent.md +62 -0
  1164. package/vendors/copilot/project/.github/agents/wtfp-citation-expert.agent.md +63 -0
  1165. package/vendors/copilot/project/.github/agents/wtfp-citation-formatter.agent.md +63 -0
  1166. package/vendors/copilot/project/.github/agents/wtfp-coherence-checker.agent.md +61 -0
  1167. package/vendors/copilot/project/.github/agents/wtfp-outliner.agent.md +68 -0
  1168. package/vendors/copilot/project/.github/agents/wtfp-plan-checker.agent.md +62 -0
  1169. package/vendors/copilot/project/.github/agents/wtfp-prose-polisher.agent.md +63 -0
  1170. package/vendors/copilot/project/.github/agents/wtfp-research-synthesizer.agent.md +65 -0
  1171. package/vendors/copilot/project/.github/agents/wtfp-section-planner.agent.md +65 -0
  1172. package/vendors/copilot/project/.github/agents/wtfp-section-reviewer.agent.md +61 -0
  1173. package/vendors/copilot/project/.github/agents/wtfp-section-writer.agent.md +66 -0
  1174. package/vendors/copilot/project/.github/copilot-instructions.md +7 -0
  1175. package/vendors/copilot/project/.github/prompts/wtfp-add-todo.prompt.md +54 -0
  1176. package/vendors/copilot/project/.github/prompts/wtfp-analyze-bib.prompt.md +18 -0
  1177. package/vendors/copilot/project/.github/prompts/wtfp-audit-milestone.prompt.md +18 -0
  1178. package/vendors/copilot/project/.github/prompts/wtfp-check-refs.prompt.md +18 -0
  1179. package/vendors/copilot/project/.github/prompts/wtfp-check-todos.prompt.md +18 -0
  1180. package/vendors/copilot/project/.github/prompts/wtfp-checkpoint.prompt.md +18 -0
  1181. package/vendors/copilot/project/.github/prompts/wtfp-contribute.prompt.md +18 -0
  1182. package/vendors/copilot/project/.github/prompts/wtfp-create-outline.prompt.md +18 -0
  1183. package/vendors/copilot/project/.github/prompts/wtfp-create-poster.prompt.md +18 -0
  1184. package/vendors/copilot/project/.github/prompts/wtfp-create-slides.prompt.md +18 -0
  1185. package/vendors/copilot/project/.github/prompts/wtfp-discuss-section.prompt.md +18 -0
  1186. package/vendors/copilot/project/.github/prompts/wtfp-execute-outline.prompt.md +18 -0
  1187. package/vendors/copilot/project/.github/prompts/wtfp-export-latex.prompt.md +18 -0
  1188. package/vendors/copilot/project/.github/prompts/wtfp-help.prompt.md +45 -0
  1189. package/vendors/copilot/project/.github/prompts/wtfp-insert-section.prompt.md +18 -0
  1190. package/vendors/copilot/project/.github/prompts/wtfp-list-assumptions.prompt.md +56 -0
  1191. package/vendors/copilot/project/.github/prompts/wtfp-map-project.prompt.md +56 -0
  1192. package/vendors/copilot/project/.github/prompts/wtfp-new-paper.prompt.md +18 -0
  1193. package/vendors/copilot/project/.github/prompts/wtfp-pause-writing.prompt.md +60 -0
  1194. package/vendors/copilot/project/.github/prompts/wtfp-plan-milestone-gaps.prompt.md +18 -0
  1195. package/vendors/copilot/project/.github/prompts/wtfp-plan-revision.prompt.md +18 -0
  1196. package/vendors/copilot/project/.github/prompts/wtfp-plan-section.prompt.md +18 -0
  1197. package/vendors/copilot/project/.github/prompts/wtfp-polish-prose.prompt.md +18 -0
  1198. package/vendors/copilot/project/.github/prompts/wtfp-progress.prompt.md +18 -0
  1199. package/vendors/copilot/project/.github/prompts/wtfp-quick.prompt.md +18 -0
  1200. package/vendors/copilot/project/.github/prompts/wtfp-remove-section.prompt.md +18 -0
  1201. package/vendors/copilot/project/.github/prompts/wtfp-report-bug.prompt.md +18 -0
  1202. package/vendors/copilot/project/.github/prompts/wtfp-request-feature.prompt.md +18 -0
  1203. package/vendors/copilot/project/.github/prompts/wtfp-research-gap.prompt.md +18 -0
  1204. package/vendors/copilot/project/.github/prompts/wtfp-resume-writing.prompt.md +18 -0
  1205. package/vendors/copilot/project/.github/prompts/wtfp-review-section.prompt.md +18 -0
  1206. package/vendors/copilot/project/.github/prompts/wtfp-settings.prompt.md +18 -0
  1207. package/vendors/copilot/project/.github/prompts/wtfp-submit-milestone.prompt.md +18 -0
  1208. package/vendors/copilot/project/.github/prompts/wtfp-update.prompt.md +18 -0
  1209. package/vendors/copilot/project/.github/prompts/wtfp-verify-work.prompt.md +18 -0
  1210. package/vendors/copilot/project/.github/prompts/wtfp-write-section.prompt.md +18 -0
  1211. package/vendors/copilot/project/.github/skills/wtfp-deliver-research/SKILL.md +39 -0
  1212. package/vendors/copilot/project/.github/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  1213. package/vendors/copilot/project/.github/skills/wtfp-deliver-research/references/actions.md +129 -0
  1214. package/vendors/copilot/project/.github/skills/wtfp-manage-project/SKILL.md +40 -0
  1215. package/vendors/copilot/project/.github/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  1216. package/vendors/copilot/project/.github/skills/wtfp-manage-project/references/actions.md +154 -0
  1217. package/vendors/copilot/project/.github/skills/wtfp-plan-section/SKILL.md +39 -0
  1218. package/vendors/copilot/project/.github/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  1219. package/vendors/copilot/project/.github/skills/wtfp-plan-section/references/actions.md +177 -0
  1220. package/vendors/copilot/project/.github/skills/wtfp-research-literature/SKILL.md +37 -0
  1221. package/vendors/copilot/project/.github/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  1222. package/vendors/copilot/project/.github/skills/wtfp-research-literature/references/actions.md +115 -0
  1223. package/vendors/copilot/project/.github/skills/wtfp-review-manuscript/SKILL.md +40 -0
  1224. package/vendors/copilot/project/.github/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  1225. package/vendors/copilot/project/.github/skills/wtfp-review-manuscript/references/actions.md +160 -0
  1226. package/vendors/copilot/project/.github/skills/wtfp-start-project/SKILL.md +38 -0
  1227. package/vendors/copilot/project/.github/skills/wtfp-start-project/agents/openai.yaml +4 -0
  1228. package/vendors/copilot/project/.github/skills/wtfp-start-project/references/actions.md +108 -0
  1229. package/vendors/copilot/project/.github/skills/wtfp-write-section/SKILL.md +37 -0
  1230. package/vendors/copilot/project/.github/skills/wtfp-write-section/agents/openai.yaml +4 -0
  1231. package/vendors/copilot/project/.github/skills/wtfp-write-section/references/actions.md +109 -0
  1232. package/vendors/copilot/project/.github/wtfp/actions/add-todo.json +52 -0
  1233. package/vendors/copilot/project/.github/wtfp/actions/analyze-bib.json +97 -0
  1234. package/vendors/copilot/project/.github/wtfp/actions/audit-milestone.json +63 -0
  1235. package/vendors/copilot/project/.github/wtfp/actions/check-refs.json +80 -0
  1236. package/vendors/copilot/project/.github/wtfp/actions/check-todos.json +52 -0
  1237. package/vendors/copilot/project/.github/wtfp/actions/checkpoint.json +76 -0
  1238. package/vendors/copilot/project/.github/wtfp/actions/contribute.json +57 -0
  1239. package/vendors/copilot/project/.github/wtfp/actions/create-outline.json +80 -0
  1240. package/vendors/copilot/project/.github/wtfp/actions/create-poster.json +59 -0
  1241. package/vendors/copilot/project/.github/wtfp/actions/create-slides.json +59 -0
  1242. package/vendors/copilot/project/.github/wtfp/actions/discuss-section.json +76 -0
  1243. package/vendors/copilot/project/.github/wtfp/actions/execute-outline.json +116 -0
  1244. package/vendors/copilot/project/.github/wtfp/actions/export-latex.json +65 -0
  1245. package/vendors/copilot/project/.github/wtfp/actions/help.json +30 -0
  1246. package/vendors/copilot/project/.github/wtfp/actions/insert-section.json +61 -0
  1247. package/vendors/copilot/project/.github/wtfp/actions/list-assumptions.json +35 -0
  1248. package/vendors/copilot/project/.github/wtfp/actions/map-project.json +57 -0
  1249. package/vendors/copilot/project/.github/wtfp/actions/new-paper.json +70 -0
  1250. package/vendors/copilot/project/.github/wtfp/actions/pause-writing.json +71 -0
  1251. package/vendors/copilot/project/.github/wtfp/actions/plan-milestone-gaps.json +57 -0
  1252. package/vendors/copilot/project/.github/wtfp/actions/plan-revision.json +58 -0
  1253. package/vendors/copilot/project/.github/wtfp/actions/plan-section.json +97 -0
  1254. package/vendors/copilot/project/.github/wtfp/actions/polish-prose.json +69 -0
  1255. package/vendors/copilot/project/.github/wtfp/actions/progress.json +51 -0
  1256. package/vendors/copilot/project/.github/wtfp/actions/quick.json +70 -0
  1257. package/vendors/copilot/project/.github/wtfp/actions/remove-section.json +63 -0
  1258. package/vendors/copilot/project/.github/wtfp/actions/report-bug.json +47 -0
  1259. package/vendors/copilot/project/.github/wtfp/actions/request-feature.json +47 -0
  1260. package/vendors/copilot/project/.github/wtfp/actions/research-gap.json +101 -0
  1261. package/vendors/copilot/project/.github/wtfp/actions/resume-writing.json +63 -0
  1262. package/vendors/copilot/project/.github/wtfp/actions/review-section.json +83 -0
  1263. package/vendors/copilot/project/.github/wtfp/actions/settings.json +47 -0
  1264. package/vendors/copilot/project/.github/wtfp/actions/submit-milestone.json +77 -0
  1265. package/vendors/copilot/project/.github/wtfp/actions/update.json +42 -0
  1266. package/vendors/copilot/project/.github/wtfp/actions/verify-work.json +63 -0
  1267. package/vendors/copilot/project/.github/wtfp/actions/write-section.json +115 -0
  1268. package/vendors/copilot/project/.github/wtfp/aliases.lock.json +42 -0
  1269. package/vendors/copilot/project/.github/wtfp/catalog.json +127 -0
  1270. package/vendors/copilot/project/.github/wtfp/compatibility/action-availability.json +364 -0
  1271. package/vendors/copilot/project/.github/wtfp/effects.json +107 -0
  1272. package/vendors/copilot/project/.github/wtfp/fleets/wtfp-draft-review.json +35 -0
  1273. package/vendors/copilot/project/.github/wtfp/fleets/wtfp-plan-section.json +34 -0
  1274. package/vendors/copilot/project/.github/wtfp/project/README.md +65 -0
  1275. package/vendors/copilot/project/.github/wtfp/project/schemas/checkpoint.schema.json +102 -0
  1276. package/vendors/copilot/project/.github/wtfp/project/schemas/common.schema.json +33 -0
  1277. package/vendors/copilot/project/.github/wtfp/project/schemas/config.schema.json +69 -0
  1278. package/vendors/copilot/project/.github/wtfp/project/schemas/decisions.schema.json +31 -0
  1279. package/vendors/copilot/project/.github/wtfp/project/schemas/evidence.schema.json +48 -0
  1280. package/vendors/copilot/project/.github/wtfp/project/schemas/manifest.schema.json +102 -0
  1281. package/vendors/copilot/project/.github/wtfp/project/schemas/outline.schema.json +67 -0
  1282. package/vendors/copilot/project/.github/wtfp/project/schemas/section.schema.json +95 -0
  1283. package/vendors/copilot/project/.github/wtfp/project/schemas/source.schema.json +73 -0
  1284. package/vendors/copilot/project/.github/wtfp/project/schemas/state.schema.json +58 -0
  1285. package/vendors/copilot/project/.github/wtfp/project/schemas/validation.schema.json +74 -0
  1286. package/vendors/copilot/project/.github/wtfp/project/templates/checkpoint.json +25 -0
  1287. package/vendors/copilot/project/.github/wtfp/project/templates/config.json +31 -0
  1288. package/vendors/copilot/project/.github/wtfp/project/templates/decisions.json +35 -0
  1289. package/vendors/copilot/project/.github/wtfp/project/templates/evidence.json +18 -0
  1290. package/vendors/copilot/project/.github/wtfp/project/templates/manifest.json +30 -0
  1291. package/vendors/copilot/project/.github/wtfp/project/templates/outline.json +38 -0
  1292. package/vendors/copilot/project/.github/wtfp/project/templates/section.json +32 -0
  1293. package/vendors/copilot/project/.github/wtfp/project/templates/source.json +20 -0
  1294. package/vendors/copilot/project/.github/wtfp/project/templates/state.json +22 -0
  1295. package/vendors/copilot/project/.github/wtfp/project/templates/validation.json +32 -0
  1296. package/vendors/copilot/project/.github/wtfp/roles/argument-verifier.md +62 -0
  1297. package/vendors/copilot/project/.github/wtfp/roles/citation-expert.md +63 -0
  1298. package/vendors/copilot/project/.github/wtfp/roles/citation-formatter.md +63 -0
  1299. package/vendors/copilot/project/.github/wtfp/roles/coherence-checker.md +61 -0
  1300. package/vendors/copilot/project/.github/wtfp/roles/outliner.md +68 -0
  1301. package/vendors/copilot/project/.github/wtfp/roles/plan-checker.md +62 -0
  1302. package/vendors/copilot/project/.github/wtfp/roles/prose-polisher.md +63 -0
  1303. package/vendors/copilot/project/.github/wtfp/roles/research-synthesizer.md +65 -0
  1304. package/vendors/copilot/project/.github/wtfp/roles/section-planner.md +65 -0
  1305. package/vendors/copilot/project/.github/wtfp/roles/section-reviewer.md +61 -0
  1306. package/vendors/copilot/project/.github/wtfp/roles/section-writer.md +66 -0
  1307. package/vendors/copilot/project/.github/wtfp/schemas/action.schema.json +129 -0
  1308. package/vendors/copilot/project/.github/wtfp/schemas/aliases.schema.json +26 -0
  1309. package/vendors/copilot/project/.github/wtfp/schemas/catalog.schema.json +61 -0
  1310. package/vendors/copilot/project/.github/wtfp/schemas/effects.schema.json +26 -0
  1311. package/vendors/copilot/project/.github/wtfp/schemas/role-result.schema.json +74 -0
  1312. package/vendors/copilot/project/.github/wtfp/schemas/tools.schema.json +26 -0
  1313. package/vendors/copilot/project/.github/wtfp/skills/wtfp-deliver-research/SKILL.md +39 -0
  1314. package/vendors/copilot/project/.github/wtfp/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  1315. package/vendors/copilot/project/.github/wtfp/skills/wtfp-deliver-research/references/actions.md +77 -0
  1316. package/vendors/copilot/project/.github/wtfp/skills/wtfp-manage-project/SKILL.md +40 -0
  1317. package/vendors/copilot/project/.github/wtfp/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  1318. package/vendors/copilot/project/.github/wtfp/skills/wtfp-manage-project/references/actions.md +90 -0
  1319. package/vendors/copilot/project/.github/wtfp/skills/wtfp-plan-section/SKILL.md +39 -0
  1320. package/vendors/copilot/project/.github/wtfp/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  1321. package/vendors/copilot/project/.github/wtfp/skills/wtfp-plan-section/references/actions.md +113 -0
  1322. package/vendors/copilot/project/.github/wtfp/skills/wtfp-research-literature/SKILL.md +37 -0
  1323. package/vendors/copilot/project/.github/wtfp/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  1324. package/vendors/copilot/project/.github/wtfp/skills/wtfp-research-literature/references/actions.md +75 -0
  1325. package/vendors/copilot/project/.github/wtfp/skills/wtfp-review-manuscript/SKILL.md +40 -0
  1326. package/vendors/copilot/project/.github/wtfp/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  1327. package/vendors/copilot/project/.github/wtfp/skills/wtfp-review-manuscript/references/actions.md +96 -0
  1328. package/vendors/copilot/project/.github/wtfp/skills/wtfp-start-project/SKILL.md +38 -0
  1329. package/vendors/copilot/project/.github/wtfp/skills/wtfp-start-project/agents/openai.yaml +4 -0
  1330. package/vendors/copilot/project/.github/wtfp/skills/wtfp-start-project/references/actions.md +80 -0
  1331. package/vendors/copilot/project/.github/wtfp/skills/wtfp-write-section/SKILL.md +37 -0
  1332. package/vendors/copilot/project/.github/wtfp/skills/wtfp-write-section/agents/openai.yaml +4 -0
  1333. package/vendors/copilot/project/.github/wtfp/skills/wtfp-write-section/references/actions.md +69 -0
  1334. package/vendors/copilot/project/.github/wtfp/tools.json +54 -0
  1335. package/vendors/copilot/project/.github/wtfp/workflows/add-todo.md +32 -0
  1336. package/vendors/copilot/project/.github/wtfp/workflows/analyze-bib.md +33 -0
  1337. package/vendors/copilot/project/.github/wtfp/workflows/audit-milestone.md +32 -0
  1338. package/vendors/copilot/project/.github/wtfp/workflows/check-refs.md +32 -0
  1339. package/vendors/copilot/project/.github/wtfp/workflows/check-todos.md +32 -0
  1340. package/vendors/copilot/project/.github/wtfp/workflows/checkpoint.md +32 -0
  1341. package/vendors/copilot/project/.github/wtfp/workflows/contribute.md +30 -0
  1342. package/vendors/copilot/project/.github/wtfp/workflows/create-outline.md +32 -0
  1343. package/vendors/copilot/project/.github/wtfp/workflows/create-poster.md +32 -0
  1344. package/vendors/copilot/project/.github/wtfp/workflows/create-slides.md +32 -0
  1345. package/vendors/copilot/project/.github/wtfp/workflows/discuss-section.md +32 -0
  1346. package/vendors/copilot/project/.github/wtfp/workflows/execute-outline.md +32 -0
  1347. package/vendors/copilot/project/.github/wtfp/workflows/export-latex.md +32 -0
  1348. package/vendors/copilot/project/.github/wtfp/workflows/help.md +30 -0
  1349. package/vendors/copilot/project/.github/wtfp/workflows/insert-section.md +32 -0
  1350. package/vendors/copilot/project/.github/wtfp/workflows/list-assumptions.md +32 -0
  1351. package/vendors/copilot/project/.github/wtfp/workflows/map-project.md +32 -0
  1352. package/vendors/copilot/project/.github/wtfp/workflows/new-paper.md +37 -0
  1353. package/vendors/copilot/project/.github/wtfp/workflows/pause-writing.md +32 -0
  1354. package/vendors/copilot/project/.github/wtfp/workflows/plan-milestone-gaps.md +32 -0
  1355. package/vendors/copilot/project/.github/wtfp/workflows/plan-revision.md +32 -0
  1356. package/vendors/copilot/project/.github/wtfp/workflows/plan-section.md +32 -0
  1357. package/vendors/copilot/project/.github/wtfp/workflows/polish-prose.md +32 -0
  1358. package/vendors/copilot/project/.github/wtfp/workflows/progress.md +32 -0
  1359. package/vendors/copilot/project/.github/wtfp/workflows/quick.md +32 -0
  1360. package/vendors/copilot/project/.github/wtfp/workflows/remove-section.md +32 -0
  1361. package/vendors/copilot/project/.github/wtfp/workflows/report-bug.md +30 -0
  1362. package/vendors/copilot/project/.github/wtfp/workflows/request-feature.md +30 -0
  1363. package/vendors/copilot/project/.github/wtfp/workflows/research-gap.md +32 -0
  1364. package/vendors/copilot/project/.github/wtfp/workflows/resume-writing.md +32 -0
  1365. package/vendors/copilot/project/.github/wtfp/workflows/review-section.md +32 -0
  1366. package/vendors/copilot/project/.github/wtfp/workflows/settings.md +32 -0
  1367. package/vendors/copilot/project/.github/wtfp/workflows/submit-milestone.md +32 -0
  1368. package/vendors/copilot/project/.github/wtfp/workflows/update.md +30 -0
  1369. package/vendors/copilot/project/.github/wtfp/workflows/verify-work.md +32 -0
  1370. package/vendors/copilot/project/.github/wtfp/workflows/write-section.md +32 -0
  1371. package/vendors/copilot/project/README.md +5 -0
  1372. package/vendors/gemini/.wtfp-generated.json +796 -0
  1373. package/vendors/gemini/GEMINI.md +3 -0
  1374. package/vendors/gemini/actions/add-todo.json +52 -0
  1375. package/vendors/gemini/actions/analyze-bib.json +97 -0
  1376. package/vendors/gemini/actions/audit-milestone.json +63 -0
  1377. package/vendors/gemini/actions/check-refs.json +80 -0
  1378. package/vendors/gemini/actions/check-todos.json +52 -0
  1379. package/vendors/gemini/actions/checkpoint.json +76 -0
  1380. package/vendors/gemini/actions/contribute.json +57 -0
  1381. package/vendors/gemini/actions/create-outline.json +80 -0
  1382. package/vendors/gemini/actions/create-poster.json +59 -0
  1383. package/vendors/gemini/actions/create-slides.json +59 -0
  1384. package/vendors/gemini/actions/discuss-section.json +76 -0
  1385. package/vendors/gemini/actions/execute-outline.json +116 -0
  1386. package/vendors/gemini/actions/export-latex.json +65 -0
  1387. package/vendors/gemini/actions/help.json +30 -0
  1388. package/vendors/gemini/actions/insert-section.json +61 -0
  1389. package/vendors/gemini/actions/list-assumptions.json +35 -0
  1390. package/vendors/gemini/actions/map-project.json +57 -0
  1391. package/vendors/gemini/actions/new-paper.json +70 -0
  1392. package/vendors/gemini/actions/pause-writing.json +71 -0
  1393. package/vendors/gemini/actions/plan-milestone-gaps.json +57 -0
  1394. package/vendors/gemini/actions/plan-revision.json +58 -0
  1395. package/vendors/gemini/actions/plan-section.json +97 -0
  1396. package/vendors/gemini/actions/polish-prose.json +69 -0
  1397. package/vendors/gemini/actions/progress.json +51 -0
  1398. package/vendors/gemini/actions/quick.json +70 -0
  1399. package/vendors/gemini/actions/remove-section.json +63 -0
  1400. package/vendors/gemini/actions/report-bug.json +47 -0
  1401. package/vendors/gemini/actions/request-feature.json +47 -0
  1402. package/vendors/gemini/actions/research-gap.json +101 -0
  1403. package/vendors/gemini/actions/resume-writing.json +63 -0
  1404. package/vendors/gemini/actions/review-section.json +83 -0
  1405. package/vendors/gemini/actions/settings.json +47 -0
  1406. package/vendors/gemini/actions/submit-milestone.json +77 -0
  1407. package/vendors/gemini/actions/update.json +42 -0
  1408. package/vendors/gemini/actions/verify-work.json +63 -0
  1409. package/vendors/gemini/actions/write-section.json +115 -0
  1410. package/vendors/gemini/agents/wtfp/argument-verifier.md +141 -0
  1411. package/vendors/gemini/agents/wtfp/citation-expert.md +142 -0
  1412. package/vendors/gemini/agents/wtfp/citation-formatter.md +142 -0
  1413. package/vendors/gemini/agents/wtfp/coherence-checker.md +140 -0
  1414. package/vendors/gemini/agents/wtfp/outliner.md +147 -0
  1415. package/vendors/gemini/agents/wtfp/plan-checker.md +141 -0
  1416. package/vendors/gemini/agents/wtfp/prose-polisher.md +142 -0
  1417. package/vendors/gemini/agents/wtfp/research-synthesizer.md +144 -0
  1418. package/vendors/gemini/agents/wtfp/section-planner.md +144 -0
  1419. package/vendors/gemini/agents/wtfp/section-reviewer.md +140 -0
  1420. package/vendors/gemini/agents/wtfp/section-writer.md +145 -0
  1421. package/vendors/gemini/aliases.lock.json +42 -0
  1422. package/vendors/gemini/catalog.json +127 -0
  1423. package/vendors/gemini/commands/wtfp/add-todo.toml +712 -0
  1424. package/vendors/gemini/commands/wtfp/analyze-bib.toml +14 -0
  1425. package/vendors/gemini/commands/wtfp/audit-milestone.toml +14 -0
  1426. package/vendors/gemini/commands/wtfp/check-refs.toml +14 -0
  1427. package/vendors/gemini/commands/wtfp/check-todos.toml +570 -0
  1428. package/vendors/gemini/commands/wtfp/checkpoint.toml +1469 -0
  1429. package/vendors/gemini/commands/wtfp/contribute.toml +14 -0
  1430. package/vendors/gemini/commands/wtfp/create-outline.toml +1324 -0
  1431. package/vendors/gemini/commands/wtfp/create-poster.toml +14 -0
  1432. package/vendors/gemini/commands/wtfp/create-slides.toml +14 -0
  1433. package/vendors/gemini/commands/wtfp/discuss-section.toml +996 -0
  1434. package/vendors/gemini/commands/wtfp/execute-outline.toml +1485 -0
  1435. package/vendors/gemini/commands/wtfp/export-latex.toml +14 -0
  1436. package/vendors/gemini/commands/wtfp/help.toml +276 -0
  1437. package/vendors/gemini/commands/wtfp/insert-section.toml +716 -0
  1438. package/vendors/gemini/commands/wtfp/list-assumptions.toml +818 -0
  1439. package/vendors/gemini/commands/wtfp/map-project.toml +747 -0
  1440. package/vendors/gemini/commands/wtfp/new-paper.toml +887 -0
  1441. package/vendors/gemini/commands/wtfp/pause-writing.toml +1033 -0
  1442. package/vendors/gemini/commands/wtfp/plan-milestone-gaps.toml +859 -0
  1443. package/vendors/gemini/commands/wtfp/plan-revision.toml +842 -0
  1444. package/vendors/gemini/commands/wtfp/plan-section.toml +1512 -0
  1445. package/vendors/gemini/commands/wtfp/polish-prose.toml +810 -0
  1446. package/vendors/gemini/commands/wtfp/progress.toml +1444 -0
  1447. package/vendors/gemini/commands/wtfp/quick.toml +782 -0
  1448. package/vendors/gemini/commands/wtfp/remove-section.toml +14 -0
  1449. package/vendors/gemini/commands/wtfp/report-bug.toml +14 -0
  1450. package/vendors/gemini/commands/wtfp/request-feature.toml +14 -0
  1451. package/vendors/gemini/commands/wtfp/research-gap.toml +14 -0
  1452. package/vendors/gemini/commands/wtfp/resume-writing.toml +1277 -0
  1453. package/vendors/gemini/commands/wtfp/review-section.toml +1042 -0
  1454. package/vendors/gemini/commands/wtfp/settings.toml +448 -0
  1455. package/vendors/gemini/commands/wtfp/submit-milestone.toml +1319 -0
  1456. package/vendors/gemini/commands/wtfp/update.toml +14 -0
  1457. package/vendors/gemini/commands/wtfp/verify-work.toml +779 -0
  1458. package/vendors/gemini/commands/wtfp/write-section.toml +1484 -0
  1459. package/vendors/gemini/compatibility/action-availability.json +314 -0
  1460. package/vendors/gemini/effects.json +107 -0
  1461. package/vendors/gemini/fleets/wtfp-draft-review.json +35 -0
  1462. package/vendors/gemini/fleets/wtfp-plan-section.json +34 -0
  1463. package/vendors/gemini/gemini-extension.json +6 -0
  1464. package/vendors/gemini/project/README.md +65 -0
  1465. package/vendors/gemini/project/schemas/checkpoint.schema.json +102 -0
  1466. package/vendors/gemini/project/schemas/common.schema.json +33 -0
  1467. package/vendors/gemini/project/schemas/config.schema.json +69 -0
  1468. package/vendors/gemini/project/schemas/decisions.schema.json +31 -0
  1469. package/vendors/gemini/project/schemas/evidence.schema.json +48 -0
  1470. package/vendors/gemini/project/schemas/manifest.schema.json +102 -0
  1471. package/vendors/gemini/project/schemas/outline.schema.json +67 -0
  1472. package/vendors/gemini/project/schemas/section.schema.json +95 -0
  1473. package/vendors/gemini/project/schemas/source.schema.json +73 -0
  1474. package/vendors/gemini/project/schemas/state.schema.json +58 -0
  1475. package/vendors/gemini/project/schemas/validation.schema.json +74 -0
  1476. package/vendors/gemini/project/templates/checkpoint.json +25 -0
  1477. package/vendors/gemini/project/templates/config.json +31 -0
  1478. package/vendors/gemini/project/templates/decisions.json +35 -0
  1479. package/vendors/gemini/project/templates/evidence.json +18 -0
  1480. package/vendors/gemini/project/templates/manifest.json +30 -0
  1481. package/vendors/gemini/project/templates/outline.json +38 -0
  1482. package/vendors/gemini/project/templates/section.json +32 -0
  1483. package/vendors/gemini/project/templates/source.json +20 -0
  1484. package/vendors/gemini/project/templates/state.json +22 -0
  1485. package/vendors/gemini/project/templates/validation.json +32 -0
  1486. package/vendors/gemini/repository/CONTRIBUTING.md +183 -0
  1487. package/vendors/gemini/roles/argument-verifier.md +62 -0
  1488. package/vendors/gemini/roles/citation-expert.md +63 -0
  1489. package/vendors/gemini/roles/citation-formatter.md +63 -0
  1490. package/vendors/gemini/roles/coherence-checker.md +61 -0
  1491. package/vendors/gemini/roles/outliner.md +68 -0
  1492. package/vendors/gemini/roles/plan-checker.md +62 -0
  1493. package/vendors/gemini/roles/prose-polisher.md +63 -0
  1494. package/vendors/gemini/roles/research-synthesizer.md +65 -0
  1495. package/vendors/gemini/roles/section-planner.md +65 -0
  1496. package/vendors/gemini/roles/section-reviewer.md +61 -0
  1497. package/vendors/gemini/roles/section-writer.md +66 -0
  1498. package/vendors/gemini/schemas/action.schema.json +129 -0
  1499. package/vendors/gemini/schemas/aliases.schema.json +26 -0
  1500. package/vendors/gemini/schemas/catalog.schema.json +61 -0
  1501. package/vendors/gemini/schemas/effects.schema.json +26 -0
  1502. package/vendors/gemini/schemas/role-result.schema.json +74 -0
  1503. package/vendors/gemini/schemas/tools.schema.json +26 -0
  1504. package/vendors/gemini/skills/wtfp-deliver-research/SKILL.md +39 -0
  1505. package/vendors/gemini/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  1506. package/vendors/gemini/skills/wtfp-deliver-research/references/actions.md +117 -0
  1507. package/vendors/gemini/skills/wtfp-manage-project/SKILL.md +40 -0
  1508. package/vendors/gemini/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  1509. package/vendors/gemini/skills/wtfp-manage-project/references/actions.md +90 -0
  1510. package/vendors/gemini/skills/wtfp-plan-section/SKILL.md +39 -0
  1511. package/vendors/gemini/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  1512. package/vendors/gemini/skills/wtfp-plan-section/references/actions.md +129 -0
  1513. package/vendors/gemini/skills/wtfp-research-literature/SKILL.md +37 -0
  1514. package/vendors/gemini/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  1515. package/vendors/gemini/skills/wtfp-research-literature/references/actions.md +115 -0
  1516. package/vendors/gemini/skills/wtfp-review-manuscript/SKILL.md +40 -0
  1517. package/vendors/gemini/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  1518. package/vendors/gemini/skills/wtfp-review-manuscript/references/actions.md +112 -0
  1519. package/vendors/gemini/skills/wtfp-start-project/SKILL.md +38 -0
  1520. package/vendors/gemini/skills/wtfp-start-project/agents/openai.yaml +4 -0
  1521. package/vendors/gemini/skills/wtfp-start-project/references/actions.md +80 -0
  1522. package/vendors/gemini/skills/wtfp-write-section/SKILL.md +37 -0
  1523. package/vendors/gemini/skills/wtfp-write-section/agents/openai.yaml +4 -0
  1524. package/vendors/gemini/skills/wtfp-write-section/references/actions.md +69 -0
  1525. package/vendors/gemini/tools/README.md +13 -0
  1526. package/vendors/gemini/tools/bibliography/analyze-impact.js +109 -0
  1527. package/vendors/gemini/tools/bibliography/format.js +161 -0
  1528. package/vendors/gemini/tools/bibliography/index.js +104 -0
  1529. package/vendors/gemini/tools/citation/fetch.js +299 -0
  1530. package/vendors/gemini/tools/citation/rank.js +145 -0
  1531. package/vendors/gemini/tools/citation/scholar-lookup.js +188 -0
  1532. package/vendors/gemini/tools/citation/semantic-scholar.js +184 -0
  1533. package/vendors/gemini/tools.json +54 -0
  1534. package/vendors/gemini/workflows/add-todo.md +32 -0
  1535. package/vendors/gemini/workflows/analyze-bib.md +33 -0
  1536. package/vendors/gemini/workflows/audit-milestone.md +32 -0
  1537. package/vendors/gemini/workflows/check-refs.md +32 -0
  1538. package/vendors/gemini/workflows/check-todos.md +32 -0
  1539. package/vendors/gemini/workflows/checkpoint.md +32 -0
  1540. package/vendors/gemini/workflows/contribute.md +30 -0
  1541. package/vendors/gemini/workflows/create-outline.md +32 -0
  1542. package/vendors/gemini/workflows/create-poster.md +32 -0
  1543. package/vendors/gemini/workflows/create-slides.md +32 -0
  1544. package/vendors/gemini/workflows/discuss-section.md +32 -0
  1545. package/vendors/gemini/workflows/execute-outline.md +32 -0
  1546. package/vendors/gemini/workflows/export-latex.md +32 -0
  1547. package/vendors/gemini/workflows/help.md +30 -0
  1548. package/vendors/gemini/workflows/insert-section.md +32 -0
  1549. package/vendors/gemini/workflows/list-assumptions.md +32 -0
  1550. package/vendors/gemini/workflows/map-project.md +32 -0
  1551. package/vendors/gemini/workflows/new-paper.md +37 -0
  1552. package/vendors/gemini/workflows/pause-writing.md +32 -0
  1553. package/vendors/gemini/workflows/plan-milestone-gaps.md +32 -0
  1554. package/vendors/gemini/workflows/plan-revision.md +32 -0
  1555. package/vendors/gemini/workflows/plan-section.md +32 -0
  1556. package/vendors/gemini/workflows/polish-prose.md +32 -0
  1557. package/vendors/gemini/workflows/progress.md +32 -0
  1558. package/vendors/gemini/workflows/quick.md +32 -0
  1559. package/vendors/gemini/workflows/remove-section.md +32 -0
  1560. package/vendors/gemini/workflows/report-bug.md +30 -0
  1561. package/vendors/gemini/workflows/request-feature.md +30 -0
  1562. package/vendors/gemini/workflows/research-gap.md +32 -0
  1563. package/vendors/gemini/workflows/resume-writing.md +32 -0
  1564. package/vendors/gemini/workflows/review-section.md +32 -0
  1565. package/vendors/gemini/workflows/settings.md +32 -0
  1566. package/vendors/gemini/workflows/submit-milestone.md +32 -0
  1567. package/vendors/gemini/workflows/update.md +30 -0
  1568. package/vendors/gemini/workflows/verify-work.md +32 -0
  1569. package/vendors/gemini/workflows/write-section.md +32 -0
  1570. package/vendors/opencode/.wtfp-generated.json +788 -0
  1571. package/vendors/opencode/actions/add-todo.json +52 -0
  1572. package/vendors/opencode/actions/analyze-bib.json +97 -0
  1573. package/vendors/opencode/actions/audit-milestone.json +63 -0
  1574. package/vendors/opencode/actions/check-refs.json +80 -0
  1575. package/vendors/opencode/actions/check-todos.json +52 -0
  1576. package/vendors/opencode/actions/checkpoint.json +76 -0
  1577. package/vendors/opencode/actions/contribute.json +57 -0
  1578. package/vendors/opencode/actions/create-outline.json +80 -0
  1579. package/vendors/opencode/actions/create-poster.json +59 -0
  1580. package/vendors/opencode/actions/create-slides.json +59 -0
  1581. package/vendors/opencode/actions/discuss-section.json +76 -0
  1582. package/vendors/opencode/actions/execute-outline.json +116 -0
  1583. package/vendors/opencode/actions/export-latex.json +65 -0
  1584. package/vendors/opencode/actions/help.json +30 -0
  1585. package/vendors/opencode/actions/insert-section.json +61 -0
  1586. package/vendors/opencode/actions/list-assumptions.json +35 -0
  1587. package/vendors/opencode/actions/map-project.json +57 -0
  1588. package/vendors/opencode/actions/new-paper.json +70 -0
  1589. package/vendors/opencode/actions/pause-writing.json +71 -0
  1590. package/vendors/opencode/actions/plan-milestone-gaps.json +57 -0
  1591. package/vendors/opencode/actions/plan-revision.json +58 -0
  1592. package/vendors/opencode/actions/plan-section.json +97 -0
  1593. package/vendors/opencode/actions/polish-prose.json +69 -0
  1594. package/vendors/opencode/actions/progress.json +51 -0
  1595. package/vendors/opencode/actions/quick.json +70 -0
  1596. package/vendors/opencode/actions/remove-section.json +63 -0
  1597. package/vendors/opencode/actions/report-bug.json +47 -0
  1598. package/vendors/opencode/actions/request-feature.json +47 -0
  1599. package/vendors/opencode/actions/research-gap.json +101 -0
  1600. package/vendors/opencode/actions/resume-writing.json +63 -0
  1601. package/vendors/opencode/actions/review-section.json +83 -0
  1602. package/vendors/opencode/actions/settings.json +47 -0
  1603. package/vendors/opencode/actions/submit-milestone.json +77 -0
  1604. package/vendors/opencode/actions/update.json +42 -0
  1605. package/vendors/opencode/actions/verify-work.json +63 -0
  1606. package/vendors/opencode/actions/write-section.json +115 -0
  1607. package/vendors/opencode/agents/wtfp/argument-verifier.md +141 -0
  1608. package/vendors/opencode/agents/wtfp/citation-expert.md +142 -0
  1609. package/vendors/opencode/agents/wtfp/citation-formatter.md +142 -0
  1610. package/vendors/opencode/agents/wtfp/coherence-checker.md +140 -0
  1611. package/vendors/opencode/agents/wtfp/outliner.md +147 -0
  1612. package/vendors/opencode/agents/wtfp/plan-checker.md +141 -0
  1613. package/vendors/opencode/agents/wtfp/prose-polisher.md +142 -0
  1614. package/vendors/opencode/agents/wtfp/research-synthesizer.md +144 -0
  1615. package/vendors/opencode/agents/wtfp/section-planner.md +144 -0
  1616. package/vendors/opencode/agents/wtfp/section-reviewer.md +140 -0
  1617. package/vendors/opencode/agents/wtfp/section-writer.md +145 -0
  1618. package/vendors/opencode/aliases.lock.json +42 -0
  1619. package/vendors/opencode/catalog.json +127 -0
  1620. package/vendors/opencode/commands/wtfp/add-todo.md +715 -0
  1621. package/vendors/opencode/commands/wtfp/analyze-bib.md +16 -0
  1622. package/vendors/opencode/commands/wtfp/audit-milestone.md +16 -0
  1623. package/vendors/opencode/commands/wtfp/check-refs.md +16 -0
  1624. package/vendors/opencode/commands/wtfp/check-todos.md +573 -0
  1625. package/vendors/opencode/commands/wtfp/checkpoint.md +1472 -0
  1626. package/vendors/opencode/commands/wtfp/contribute.md +16 -0
  1627. package/vendors/opencode/commands/wtfp/create-outline.md +1327 -0
  1628. package/vendors/opencode/commands/wtfp/create-poster.md +16 -0
  1629. package/vendors/opencode/commands/wtfp/create-slides.md +16 -0
  1630. package/vendors/opencode/commands/wtfp/discuss-section.md +999 -0
  1631. package/vendors/opencode/commands/wtfp/execute-outline.md +1488 -0
  1632. package/vendors/opencode/commands/wtfp/export-latex.md +16 -0
  1633. package/vendors/opencode/commands/wtfp/help.md +279 -0
  1634. package/vendors/opencode/commands/wtfp/insert-section.md +719 -0
  1635. package/vendors/opencode/commands/wtfp/list-assumptions.md +821 -0
  1636. package/vendors/opencode/commands/wtfp/map-project.md +750 -0
  1637. package/vendors/opencode/commands/wtfp/new-paper.md +890 -0
  1638. package/vendors/opencode/commands/wtfp/pause-writing.md +1036 -0
  1639. package/vendors/opencode/commands/wtfp/plan-milestone-gaps.md +862 -0
  1640. package/vendors/opencode/commands/wtfp/plan-revision.md +845 -0
  1641. package/vendors/opencode/commands/wtfp/plan-section.md +1515 -0
  1642. package/vendors/opencode/commands/wtfp/polish-prose.md +813 -0
  1643. package/vendors/opencode/commands/wtfp/progress.md +1447 -0
  1644. package/vendors/opencode/commands/wtfp/quick.md +785 -0
  1645. package/vendors/opencode/commands/wtfp/remove-section.md +16 -0
  1646. package/vendors/opencode/commands/wtfp/report-bug.md +16 -0
  1647. package/vendors/opencode/commands/wtfp/request-feature.md +16 -0
  1648. package/vendors/opencode/commands/wtfp/research-gap.md +16 -0
  1649. package/vendors/opencode/commands/wtfp/resume-writing.md +1280 -0
  1650. package/vendors/opencode/commands/wtfp/review-section.md +1045 -0
  1651. package/vendors/opencode/commands/wtfp/settings.md +451 -0
  1652. package/vendors/opencode/commands/wtfp/submit-milestone.md +1322 -0
  1653. package/vendors/opencode/commands/wtfp/update.md +16 -0
  1654. package/vendors/opencode/commands/wtfp/verify-work.md +782 -0
  1655. package/vendors/opencode/commands/wtfp/write-section.md +1487 -0
  1656. package/vendors/opencode/compatibility/action-availability.json +314 -0
  1657. package/vendors/opencode/effects.json +107 -0
  1658. package/vendors/opencode/fleets/wtfp-draft-review.json +35 -0
  1659. package/vendors/opencode/fleets/wtfp-plan-section.json +34 -0
  1660. package/vendors/opencode/project/README.md +65 -0
  1661. package/vendors/opencode/project/schemas/checkpoint.schema.json +102 -0
  1662. package/vendors/opencode/project/schemas/common.schema.json +33 -0
  1663. package/vendors/opencode/project/schemas/config.schema.json +69 -0
  1664. package/vendors/opencode/project/schemas/decisions.schema.json +31 -0
  1665. package/vendors/opencode/project/schemas/evidence.schema.json +48 -0
  1666. package/vendors/opencode/project/schemas/manifest.schema.json +102 -0
  1667. package/vendors/opencode/project/schemas/outline.schema.json +67 -0
  1668. package/vendors/opencode/project/schemas/section.schema.json +95 -0
  1669. package/vendors/opencode/project/schemas/source.schema.json +73 -0
  1670. package/vendors/opencode/project/schemas/state.schema.json +58 -0
  1671. package/vendors/opencode/project/schemas/validation.schema.json +74 -0
  1672. package/vendors/opencode/project/templates/checkpoint.json +25 -0
  1673. package/vendors/opencode/project/templates/config.json +31 -0
  1674. package/vendors/opencode/project/templates/decisions.json +35 -0
  1675. package/vendors/opencode/project/templates/evidence.json +18 -0
  1676. package/vendors/opencode/project/templates/manifest.json +30 -0
  1677. package/vendors/opencode/project/templates/outline.json +38 -0
  1678. package/vendors/opencode/project/templates/section.json +32 -0
  1679. package/vendors/opencode/project/templates/source.json +20 -0
  1680. package/vendors/opencode/project/templates/state.json +22 -0
  1681. package/vendors/opencode/project/templates/validation.json +32 -0
  1682. package/vendors/opencode/repository/CONTRIBUTING.md +183 -0
  1683. package/vendors/opencode/roles/argument-verifier.md +62 -0
  1684. package/vendors/opencode/roles/citation-expert.md +63 -0
  1685. package/vendors/opencode/roles/citation-formatter.md +63 -0
  1686. package/vendors/opencode/roles/coherence-checker.md +61 -0
  1687. package/vendors/opencode/roles/outliner.md +68 -0
  1688. package/vendors/opencode/roles/plan-checker.md +62 -0
  1689. package/vendors/opencode/roles/prose-polisher.md +63 -0
  1690. package/vendors/opencode/roles/research-synthesizer.md +65 -0
  1691. package/vendors/opencode/roles/section-planner.md +65 -0
  1692. package/vendors/opencode/roles/section-reviewer.md +61 -0
  1693. package/vendors/opencode/roles/section-writer.md +66 -0
  1694. package/vendors/opencode/schemas/action.schema.json +129 -0
  1695. package/vendors/opencode/schemas/aliases.schema.json +26 -0
  1696. package/vendors/opencode/schemas/catalog.schema.json +61 -0
  1697. package/vendors/opencode/schemas/effects.schema.json +26 -0
  1698. package/vendors/opencode/schemas/role-result.schema.json +74 -0
  1699. package/vendors/opencode/schemas/tools.schema.json +26 -0
  1700. package/vendors/opencode/skills/wtfp-deliver-research/SKILL.md +39 -0
  1701. package/vendors/opencode/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
  1702. package/vendors/opencode/skills/wtfp-deliver-research/references/actions.md +117 -0
  1703. package/vendors/opencode/skills/wtfp-manage-project/SKILL.md +40 -0
  1704. package/vendors/opencode/skills/wtfp-manage-project/agents/openai.yaml +4 -0
  1705. package/vendors/opencode/skills/wtfp-manage-project/references/actions.md +90 -0
  1706. package/vendors/opencode/skills/wtfp-plan-section/SKILL.md +39 -0
  1707. package/vendors/opencode/skills/wtfp-plan-section/agents/openai.yaml +4 -0
  1708. package/vendors/opencode/skills/wtfp-plan-section/references/actions.md +129 -0
  1709. package/vendors/opencode/skills/wtfp-research-literature/SKILL.md +37 -0
  1710. package/vendors/opencode/skills/wtfp-research-literature/agents/openai.yaml +4 -0
  1711. package/vendors/opencode/skills/wtfp-research-literature/references/actions.md +115 -0
  1712. package/vendors/opencode/skills/wtfp-review-manuscript/SKILL.md +40 -0
  1713. package/vendors/opencode/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
  1714. package/vendors/opencode/skills/wtfp-review-manuscript/references/actions.md +112 -0
  1715. package/vendors/opencode/skills/wtfp-start-project/SKILL.md +38 -0
  1716. package/vendors/opencode/skills/wtfp-start-project/agents/openai.yaml +4 -0
  1717. package/vendors/opencode/skills/wtfp-start-project/references/actions.md +80 -0
  1718. package/vendors/opencode/skills/wtfp-write-section/SKILL.md +37 -0
  1719. package/vendors/opencode/skills/wtfp-write-section/agents/openai.yaml +4 -0
  1720. package/vendors/opencode/skills/wtfp-write-section/references/actions.md +69 -0
  1721. package/vendors/opencode/tools/README.md +13 -0
  1722. package/vendors/opencode/tools/bibliography/analyze-impact.js +109 -0
  1723. package/vendors/opencode/tools/bibliography/format.js +161 -0
  1724. package/vendors/opencode/tools/bibliography/index.js +104 -0
  1725. package/vendors/opencode/tools/citation/fetch.js +299 -0
  1726. package/vendors/opencode/tools/citation/rank.js +145 -0
  1727. package/vendors/opencode/tools/citation/scholar-lookup.js +188 -0
  1728. package/vendors/opencode/tools/citation/semantic-scholar.js +184 -0
  1729. package/vendors/opencode/tools.json +54 -0
  1730. package/vendors/opencode/workflows/add-todo.md +32 -0
  1731. package/vendors/opencode/workflows/analyze-bib.md +33 -0
  1732. package/vendors/opencode/workflows/audit-milestone.md +32 -0
  1733. package/vendors/opencode/workflows/check-refs.md +32 -0
  1734. package/vendors/opencode/workflows/check-todos.md +32 -0
  1735. package/vendors/opencode/workflows/checkpoint.md +32 -0
  1736. package/vendors/opencode/workflows/contribute.md +30 -0
  1737. package/vendors/opencode/workflows/create-outline.md +32 -0
  1738. package/vendors/opencode/workflows/create-poster.md +32 -0
  1739. package/vendors/opencode/workflows/create-slides.md +32 -0
  1740. package/vendors/opencode/workflows/discuss-section.md +32 -0
  1741. package/vendors/opencode/workflows/execute-outline.md +32 -0
  1742. package/vendors/opencode/workflows/export-latex.md +32 -0
  1743. package/vendors/opencode/workflows/help.md +30 -0
  1744. package/vendors/opencode/workflows/insert-section.md +32 -0
  1745. package/vendors/opencode/workflows/list-assumptions.md +32 -0
  1746. package/vendors/opencode/workflows/map-project.md +32 -0
  1747. package/vendors/opencode/workflows/new-paper.md +37 -0
  1748. package/vendors/opencode/workflows/pause-writing.md +32 -0
  1749. package/vendors/opencode/workflows/plan-milestone-gaps.md +32 -0
  1750. package/vendors/opencode/workflows/plan-revision.md +32 -0
  1751. package/vendors/opencode/workflows/plan-section.md +32 -0
  1752. package/vendors/opencode/workflows/polish-prose.md +32 -0
  1753. package/vendors/opencode/workflows/progress.md +32 -0
  1754. package/vendors/opencode/workflows/quick.md +32 -0
  1755. package/vendors/opencode/workflows/remove-section.md +32 -0
  1756. package/vendors/opencode/workflows/report-bug.md +30 -0
  1757. package/vendors/opencode/workflows/request-feature.md +30 -0
  1758. package/vendors/opencode/workflows/research-gap.md +32 -0
  1759. package/vendors/opencode/workflows/resume-writing.md +32 -0
  1760. package/vendors/opencode/workflows/review-section.md +32 -0
  1761. package/vendors/opencode/workflows/settings.md +32 -0
  1762. package/vendors/opencode/workflows/submit-milestone.md +32 -0
  1763. package/vendors/opencode/workflows/update.md +30 -0
  1764. package/vendors/opencode/workflows/verify-work.md +32 -0
  1765. package/vendors/opencode/workflows/write-section.md +32 -0
  1766. package/vendors/claude/agents/wtfp/citation-retriever.md +0 -31
  1767. package/vendors/claude/commands/wtfp/analyze-bib.md +0 -315
  1768. package/vendors/claude/commands/wtfp/check-refs.md +0 -207
  1769. package/vendors/claude/commands/wtfp/contribute.md +0 -278
  1770. package/vendors/claude/commands/wtfp/create-outline.md +0 -275
  1771. package/vendors/claude/commands/wtfp/create-poster.md +0 -42
  1772. package/vendors/claude/commands/wtfp/create-slides.md +0 -41
  1773. package/vendors/claude/commands/wtfp/discuss-section.md +0 -71
  1774. package/vendors/claude/commands/wtfp/export-latex.md +0 -216
  1775. package/vendors/claude/commands/wtfp/help.md +0 -370
  1776. package/vendors/claude/commands/wtfp/insert-section.md +0 -130
  1777. package/vendors/claude/commands/wtfp/list-assumptions.md +0 -109
  1778. package/vendors/claude/commands/wtfp/map-project.md +0 -197
  1779. package/vendors/claude/commands/wtfp/new-paper.md +0 -404
  1780. package/vendors/claude/commands/wtfp/pause-writing.md +0 -145
  1781. package/vendors/claude/commands/wtfp/plan-revision.md +0 -180
  1782. package/vendors/claude/commands/wtfp/plan-section.md +0 -247
  1783. package/vendors/claude/commands/wtfp/polish-prose.md +0 -177
  1784. package/vendors/claude/commands/wtfp/progress.md +0 -325
  1785. package/vendors/claude/commands/wtfp/remove-section.md +0 -147
  1786. package/vendors/claude/commands/wtfp/report-bug.md +0 -131
  1787. package/vendors/claude/commands/wtfp/request-feature.md +0 -160
  1788. package/vendors/claude/commands/wtfp/research-gap.md +0 -234
  1789. package/vendors/claude/commands/wtfp/resume-writing.md +0 -142
  1790. package/vendors/claude/commands/wtfp/review-section.md +0 -409
  1791. package/vendors/claude/commands/wtfp/submit-milestone.md +0 -211
  1792. package/vendors/claude/commands/wtfp/write-section.md +0 -273
  1793. package/vendors/claude/mcp/research-server/package.json +0 -13
  1794. package/vendors/claude/mcp/research-server/src/index.js +0 -133
  1795. package/vendors/claude/skills/wtfp/echarts/SKILL.md +0 -47
  1796. package/vendors/claude/skills/wtfp/marp/SKILL.md +0 -49
package/README.md CHANGED
@@ -1,341 +1,292 @@
1
1
  <div align="center">
2
2
 
3
+ <img src="https://raw.githubusercontent.com/akougkas/wtf-p/main/assets/wtfp-banner.jpg" alt="WTF-P Banner" width="600">
4
+
3
5
  # WTF-P
4
6
 
5
- **Write The Freaking...**
6
- - **P**aper
7
- - **P**roposal
8
- - **P**resentation
9
- - **P**oster
7
+ **Write The F\*\*\*ing Paper.**
10
8
 
11
- **Context engineering for academic writing with Claude Code.**
9
+ Also: Proposal. Presentation. Poster.
12
10
 
13
- ```bash
14
- npx wtf-p
15
- ```
11
+ Portable, evidence-grounded academic workflows for modern coding agents.
16
12
 
17
13
  </div>
18
14
 
19
- ---
20
-
21
- ## What This Does
22
-
23
- WTF-P turns Claude Code into a structured academic writing system. Instead of chatting with AI and hoping for the best, you get:
24
-
25
- - **Spec-driven writing** — Define your paper's vision, then execute section by section
26
- - **Grounded output** — BibTeX integration, citation mapping, no hallucinated references
27
- - **State management** — Pause, resume, track progress across sessions
28
- - **Venue templates** — ACM, IEEE, Nature, arXiv-ML structures built in
15
+ WTF-P turns an AI coding agent into a structured research and writing system. It plans before drafting, grounds claims in evidence, isolates section context, delegates bounded work to specialist agents, and verifies the result against the approved plan.
29
16
 
30
- The philosophy: **context engineering beats prompt engineering**. The files you prepare matter more than what you type.
17
+ Version `0.6.0-rc.1` is a ground-up modernization of the agent platform. One canonical protocol now generates native resources for Clio Coder, Claude Code, Codex, GitHub Copilot CLI, OpenCode, Antigravity CLI, and Gemini CLI.
31
18
 
32
- ---
19
+ ## Quick start
33
20
 
34
- ## Quick Start
21
+ Install explicitly for the agent you use:
35
22
 
36
23
  ```bash
37
- npx wtf-p
24
+ npx wtf-p install clio --advanced
25
+ npx wtf-p install claude --advanced
26
+ npx wtf-p install codex --advanced
27
+ npx wtf-p install copilot --advanced
28
+ npx wtf-p install opencode --advanced
29
+ npx wtf-p install antigravity --advanced
30
+ npx wtf-p install gemini --advanced
38
31
  ```
39
32
 
40
- Then in Claude Code:
33
+ An interactive terminal can also run `npx wtf-p` and choose a target. A noninteractive bare invocation refuses to write anything; it requires an explicit target or scope.
41
34
 
42
- ```bash
43
- /wtfp:new-paper # Define your paper
44
- /wtfp:create-outline # Build the structure
45
- /wtfp:plan-section 1 # Plan first section
46
- /wtfp:write-section # Execute the plan
47
- ```
48
-
49
- Run `/wtfp:help` for the full command reference.
35
+ Then start a paper with the native WTF-P action exposed by your client. The
36
+ following is the slash-command form used by Clio, Claude, Copilot CLI,
37
+ OpenCode, Antigravity, and Gemini:
50
38
 
51
- <details>
52
- <summary><strong>Installation Options</strong></summary>
53
-
54
- ```bash
55
- # Global install (recommended)
56
- npx wtf-p --global
57
-
58
- # Local to current project
59
- npx wtf-p --local
60
-
61
- # Custom Claude config directory
62
- npx wtf-p --global --config-dir ~/research/.claude
63
-
64
- # Check installation status
65
- npx wtf-p status
66
-
67
- # Diagnose issues
68
- npx wtf-p doctor
39
+ ```text
40
+ /wtfp:new-paper
41
+ /wtfp:create-outline
42
+ /wtfp:plan-section 1
43
+ /wtfp:write-section 1
44
+ /wtfp:review-section 1
69
45
  ```
70
- </details>
71
-
72
- <details>
73
- <summary><strong>Upgrading</strong></summary>
74
46
 
75
- ```bash
76
- # Update existing installation
77
- npx wtf-p update
78
-
79
- # Or reinstall with conflict handling
80
- npx wtf-p --global # Interactive: prompts for conflicts
81
- npx wtf-p --global --force # Overwrite everything
82
- npx wtf-p --global --backup-all # Backup before overwriting
83
- ```
84
- </details>
85
-
86
- <details>
87
- <summary><strong>Uninstalling</strong></summary>
88
-
89
- ```bash
90
- npx wtf-p-uninstall --global
91
- npx wtf-p-uninstall --global --dry-run # Preview first
92
- ```
93
-
94
- Only WTF-P files are removed. Your `CLAUDE.md` and other configs stay intact.
95
- </details>
96
-
97
- ---
98
-
99
- ## Why AI Writing Tools Fail Researchers
100
-
101
- Most researchers using AI for writing hit the same walls:
102
-
103
- | Problem | What Happens |
104
- |---------|--------------|
105
- | **Dump and pray** | Paste a PDF, ask for a lit review, get hallucinated citations |
106
- | **No verification layer** | AI sounds confident, but claims aren't grounded in your actual sources |
107
- | **Monolithic approach** | Try to write 10k words at once, context window fills, quality degrades |
108
- | **No structure** | Generic AI doesn't know IMRaD from a blog post |
109
-
110
- WTF-P solves these by treating academic writing as a **specification problem**, not a generation problem.
111
-
112
- ---
113
-
114
- ## The Approach: Context Engineering
115
-
116
- The insight behind WTF-P: **what you prepare matters more than what you prompt**.
117
-
118
- ### 1. Specification First
119
-
120
- Before any writing, WTF-P interviews you to extract:
121
- - Research questions and hypotheses
122
- - Core argument structure
123
- - Evidence and data inventory
124
- - Target venue requirements
125
-
126
- This becomes your `PROJECT.md` — the grounding document that keeps every section aligned.
127
-
128
- ### 2. Hierarchical Planning
129
-
130
- Papers aren't written in one shot. WTF-P breaks them down:
131
-
132
- ```
133
- Paper Vision → Section Outline → Section Plan → Paragraph Execution
47
+ These five lifecycle commands are deliberately unavailable in the Copilot
48
+ cloud projection until that surface has an exact explicit-approval binding.
49
+
50
+ Clio also ships flat `/wtfp-new-paper` compatibility prompts for current releases. The coordinated Clio integration discovers the preferred nested `/wtfp:new-paper` namespace; installation probes that capability in a credential-free disposable profile and falls back gracefully for legacy clients.
51
+
52
+ Codex discovers all 36 stable method routes through seven native Agent Skills
53
+ instead of a `/wtfp:*` command namespace. Twenty-four are adapter-available in the
54
+ current adapter; the other 12 carry deterministic `WTFP_ACTION_UNAVAILABLE`
55
+ references instead of unsupported workflow instructions. Select the owning
56
+ plugin skill explicitly when the route must be unambiguous (for example,
57
+ `$wtf-p:wtfp-start-project` followed by the `new-paper` request and its exact
58
+ arguments). Existing user-level commands can take precedence over extension
59
+ commands in clients that support both; use the client's discovery listing to
60
+ confirm the reported source before testing a new installation.
61
+
62
+ ## First-class adapters
63
+
64
+ | Target | Native envelope | Semantic actions: discoverable / adapter-available | Specialists | Skills | Target-specific capabilities |
65
+ | --- | --- | ---: | ---: | ---: | --- |
66
+ | Clio Coder | Extension | 36 / 24 (72 prompt aliases: 48 available) | 11 | 7 | Strict worker recipes; host-session tool policy for slash prompts; two explicit fleets |
67
+ | Claude Code | Claude plugin | 36 / 24 | 11 | 7 | Native command permissions and plugin validation |
68
+ | Codex | Codex plugin | 36 / 24 through skills | Host-managed | 7 | `.codex-plugin` metadata and marketplace packaging |
69
+ | GitHub Copilot | Native CLI plugin plus committed cloud `.github` projection | CLI 36 / 24; cloud 36 / 5 | 11 | 7 | CLI discovery and cloud-safe prompts, agents, skills, and instructions |
70
+ | OpenCode | Filesystem bundle | 36 / 24 | 11 | 7 | Native commands and agents |
71
+ | Antigravity CLI | `agy` plugin | 36 / 24 | 11 | 7 | Commands converted to native skills by `agy` |
72
+ | Gemini CLI | Gemini extension | 36 / 24 | 11 | 7 | TOML commands and extension context |
73
+
74
+ Discovery counts stable action routes, including deterministic refusal stubs;
75
+ it does not by itself establish behavioral support. Clio, Claude, Codex,
76
+ Copilot CLI, OpenCode, Antigravity, and Gemini project 24 of the 36 canonical
77
+ actions as adapter-available and return `WTFP_ACTION_UNAVAILABLE` for `analyze-bib`,
78
+ `audit-milestone`, `check-refs`, `contribute`, `create-poster`,
79
+ `create-slides`, `export-latex`, `remove-section`, `report-bug`,
80
+ `request-feature`, `research-gap`, and `update`, because those actions lack an
81
+ exact target binding for at least one declared capability or effect. The
82
+ Copilot cloud projection marks only `add-todo`, `help`, `list-assumptions`,
83
+ `map-project`, and `pause-writing`; it refuses the other 31 because it also
84
+ lacks an exact explicit-approval binding. Each generated target records its
85
+ machine-readable result in `compatibility/action-availability.json`.
86
+
87
+ An available action has complete semantic capability, effect, and approval
88
+ bindings; that is not automatically an action-scoped host tool allowlist.
89
+ Clio 0.3.8 prompt templates expand into an ordinary main-agent turn and retain
90
+ the session tool surface. The Clio manifest records this as
91
+ `hostToolEnforcement.actionScoped: false`. Use `read-only` for previews or
92
+ supervised `suggest` autonomy for mutations, and deny and stop on any tool call
93
+ outside the action contract. A run under `auto-edit` cannot earn WTF-P's
94
+ no-undeclared-tool safety result merely because the generated prompt told the
95
+ model not to use shell.
96
+
97
+ The adapters are generated artifacts, not seven hand-maintained copies. Every generated envelope includes a cryptographic inventory and the portable protocol resources needed to understand its workflows. Copilot additionally receives a generated, commit-ready `.github` projection for cloud/repository use.
98
+
99
+ For a GitHub-hosted Copilot coding agent, review and copy the `.github/` tree from `vendors/copilot/project/` in the release archive into the target repository, then commit it through that repository's normal review process. The user-level `install copilot` command configures the CLI plugin; it deliberately does not write into an unrelated project checkout.
100
+
101
+ The release-candidate native-discovery matrix was exercised with Claude Code
102
+ 2.1.251, Codex CLI 0.144.1, Copilot CLI 1.0.80, OpenCode 1.18.16,
103
+ Antigravity 1.1.22, Gemini CLI 0.57.0, and Clio Coder 0.3.8 at merged
104
+ commit `9b7b80cc`. Real isolated `new-paper` evaluations used Claude Sonnet
105
+ 5/xhigh, Codex GPT-5.4/xhigh (GPT-5.6 was unavailable through that CLI's
106
+ ChatGPT-auth route), and Clio GPT-5.6 Terra/xhigh. The compiler-v4 Clio rerun
107
+ earned 8/8 with independent validation of all five previewed records. The
108
+ broader paid routing matrix, full lifecycle chain, and cross-version baseline
109
+ remain separate evidence gates. See [compatibility evidence](docs/COMPATIBILITY.md)
110
+ for exact claims and caveats. These are repository validation results, not a
111
+ claim that `0.6.0-rc.1` has been published.
112
+
113
+ The first retained local-model lifecycle reading used Clio 0.3.8 with
114
+ `dynamo/qwen3.8-27b`. Both native fleet contracts validated, but the lifecycle
115
+ did not pass: high effort timed out before writing, and an effort-off retry
116
+ stopped after `new-paper` because the model attempted a denied shell call and
117
+ made 5,600 section words disagree with the 6,000-word outline target. The five
118
+ records were individually schema-valid. See the
119
+ [blocked evidence](evaluation/v1/evidence/clio-dynamo-lifecycle-blocked/README.md);
120
+ the remaining lifecycle and routing roadmap items stay open. That reading
121
+ binds the earlier WTF-P source `6b58b298`; it predates later remediation for
122
+ exact outline totals and direct-tool use, and is not a behavioral reading of
123
+ the later source revisions.
124
+
125
+ Later post-remediation readings are retained separately because they bind
126
+ different WTF-P commits. At `0245818`, exact `/wtfp:new-paper` arguments arrived
127
+ but the model listed excluded `.git` metadata, read an absolute host Clio
128
+ documentation path, looped on agent discovery, and produced no planning
129
+ records. Those accesses were read-only; zero mutating and network effects were
130
+ applied. At `b4f0543`, the plan/check fleet completed structurally but its
131
+ semantic checks were ungrounded. The `cbba38c` manuscript-path projection
132
+ observation placed draft/review manuscript and summary files in the correct
133
+ roots with no boundary violation, but drafted without the required approved
134
+ plan, left portable state unreconciled, and failed its word target. See the
135
+ [retained RC readings](evaluation/v1/evidence/clio-dynamo-rc-readings/README.md).
136
+ Neither the full lifecycle nor a semantic fleet pass is claimed.
137
+
138
+ A final current-source Dynamo reading at `bf50e23` created exactly five
139
+ initialization records and passed literal schema validation 5/5. It still
140
+ failed the release gate: the outline placed a dependency in the same wave, and
141
+ the model made three successful shell calls plus ten denied shell retries
142
+ despite an explicit no-shell policy. The operator stopped the run before
143
+ `map-project`; no terminal receipt or trustworthy numeric cost exists. See the
144
+ [current-source blocked evidence](evaluation/v1/evidence/clio-dynamo-current-source-blocked/README.md).
145
+
146
+ ## The paper lifecycle
147
+
148
+ WTF-P keeps the human in control while making the repeatable work deterministic:
149
+
150
+ 1. `/wtfp:new-paper` captures research questions, intended contribution, evidence, audience, venue, and constraints.
151
+ 2. `/wtfp:map-project` indexes existing drafts, sources, data, figures, and decisions.
152
+ 3. `/wtfp:create-outline` turns the argument into sections, dependencies, and word budgets.
153
+ 4. `/wtfp:research-gap` and `/wtfp:analyze-bib` build an evidence map without inventing citations.
154
+ 5. `/wtfp:plan-section` creates a traceable section plan and can send it through an independent plan checker.
155
+ 6. `/wtfp:write-section` drafts from the approved plan in bounded context.
156
+ 7. `/wtfp:review-section`, `/wtfp:verify-work`, and `/wtfp:polish-prose` check argument coverage, evidence, coherence, venue requirements, and prose quality.
157
+ 8. `/wtfp:audit-milestone`, `/wtfp:export-latex`, `/wtfp:create-slides`, and `/wtfp:create-poster` prepare deliverables.
158
+
159
+ Use the native help route—`/wtfp:help` on slash-command clients—to inspect all
160
+ 36 stable action contracts. Executable availability is target-specific and
161
+ recorded in the generated compatibility manifest.
162
+
163
+ ## What became portable
164
+
165
+ The canonical source lives under `protocol/` and has four parts:
166
+
167
+ - A versioned `.planning` project protocol with 11 JSON schemas and ten templates for the project manifest, configuration, state, sources, evidence, decisions, outline, sections, checkpoints, and validation results.
168
+ - Seven standard Agent Skills for starting a project, literature research, section planning, section writing, manuscript review, project management, and research delivery.
169
+ - Thirty-six semantic action contracts declaring inputs, reads, outputs, specialist delegation, tools, effects, and approval boundaries.
170
+ - Eleven host-neutral specialist roles with strict mutation or verification result contracts.
171
+
172
+ Concrete model names and client tool syntax do not live in canonical workflow prose. Each adapter maps semantic needs such as filesystem access, research search, user interaction, and delegation into the active client's capabilities.
173
+
174
+ ## Project state
175
+
176
+ New workflows use a versioned `.planning/` directory. Its records are JSON-schema validated and designed to survive movement between clients:
177
+
178
+ ```text
179
+ .planning/
180
+ ├── project.json
181
+ ├── config.json
182
+ ├── state.json
183
+ ├── decisions.json
184
+ ├── structure/outline.json
185
+ ├── sources/*.json
186
+ ├── evidence/*.json
187
+ ├── sections/*/section.json
188
+ ├── checkpoints/*.json
189
+ └── validations/*.json
134
190
  ```
135
191
 
136
- Each level has its own document. Each document is version-controlled. You always know where you are.
192
+ The protocol records evidence separately from prose and records author decisions explicitly. That lets a reviewer trace a claim back to a source and lets a different agent resume without guessing what the author intended.
137
193
 
138
- ### 3. Isolated Execution
194
+ ## Installation safety
139
195
 
140
- When writing a section, WTF-P spawns a fresh context with only what's needed:
141
- - The paper vision
142
- - That section's plan
143
- - Relevant citations from your BibTeX
144
- - Prior sections for continuity
196
+ The `0.6` installer is an ownership-aware transaction engine:
145
197
 
146
- No context pollution. No degradation over long documents.
198
+ - It rejects filesystem roots, the home directory itself, the repository root, traversal, and symlink escapes.
199
+ - It snapshots package sources and refuses source or destination path races.
200
+ - It publishes files atomically where possible and rolls back a failed transaction.
201
+ - It compensates native marketplace/plugin registration if a later activation step fails.
202
+ - It does not register a partial adapter when any conflicting file was preserved.
203
+ - It records only files it actually wrote, with SHA-256 hashes, adapter-contract v1, and generator-v4 metadata, in a v2 receipt.
204
+ - Reinstallation cannot claim ownership of files it skipped.
205
+ - Uninstall removes exact unchanged owned files. It preserves modified files and unrelated siblings by default.
206
+ - Dry runs are byte-preserving.
147
207
 
148
- ### 4. Human Verification
149
-
150
- AI drafts. Humans verify. Every section goes through:
151
- - Citation audit (are these real? are they relevant?)
152
- - Argument check (does this follow from the evidence?)
153
- - Rubric validation (does this meet venue requirements?)
154
-
155
- The system flags issues. You fix them. Iterate until solid.
156
-
157
- ---
158
-
159
- ## The Workflow
160
-
161
- ### Starting Fresh
162
-
163
- ```bash
164
- /wtfp:new-paper # Deep interview about your research
165
- /wtfp:create-outline # Generate section structure + word budgets
166
- ```
167
-
168
- Creates `.planning/` with your paper's specification:
169
- - `PROJECT.md` — Vision, requirements, constraints
170
- - `ROADMAP.md` — Section breakdown with status
171
- - `STATE.md` — Writing progress and context
172
-
173
- ### Writing Sections
208
+ Use a custom isolated client root when evaluating an adapter:
174
209
 
175
210
  ```bash
176
- /wtfp:plan-section 1 # Create detailed plan for section 1
177
- /wtfp:write-section # Execute the plan
178
- /wtfp:progress # Check status, get next action
211
+ CODEX_HOME=/tmp/wtfp-codex npx wtf-p install codex --advanced
212
+ CLIO_CODER_CONFIG_DIR=/tmp/wtfp-clio npx wtf-p install clio --advanced
179
213
  ```
180
214
 
181
- Each section gets its own planning documents. Plans are explicit — you see exactly what Claude intends before it writes.
182
-
183
- ### Review and Polish
184
-
185
- ```bash
186
- /wtfp:review-section 1 # Three-layer verification
187
- /wtfp:polish-prose # Remove AI-speak, improve flow
188
- /wtfp:check-refs # BibTeX audit
189
- ```
190
-
191
- ### Export
192
-
193
- ```bash
194
- /wtfp:export-latex # Generate .tex with proper formatting
195
- ```
196
-
197
- ---
198
-
199
- ## Reviving Stalled Projects
200
-
201
- Got a half-finished paper? WTF-P can work with existing material.
215
+ Inspect or remove an installation with:
202
216
 
203
217
  ```bash
204
- /wtfp:map-project # Index your existing files
205
- /wtfp:new-paper # Initialize with awareness of prior work
218
+ npx wtf-p status
219
+ npx wtf-p doctor
220
+ npx wtf-p uninstall --clio --dry-run
221
+ npx wtf-p uninstall --clio --yes
206
222
  ```
207
223
 
208
- The mapping phase analyzes:
209
- - Existing drafts and their state
210
- - Your BibTeX and how citations are used
211
- - Data files and figures
212
- - What's missing vs. what's done
213
-
214
- ---
215
-
216
- ## Citation Expert (v0.4.0)
224
+ The legacy `--global`, `--local`, `--claude`, `--gemini`, and `--opencode` selectors remain compatibility aliases during the release-candidate cycle.
217
225
 
218
- WTF-P includes a specialized tiered pipeline for bibliography management.
226
+ ## Developing adapters
219
227
 
220
- ```bash
221
- /wtfp:analyze-bib # Deep analysis of impact (seminal vs rising)
222
- /wtfp:research-gap # Intent-aware search (seminal/recent)
223
- /wtfp:check-refs # Auto-suggest missing citations
224
- ```
225
-
226
- Capabilities:
227
- - **Tiered Search:** Integrated Semantic Scholar, SerpAPI (Google Scholar), and CrossRef.
228
- - **Impact Ranking:** Automatically scores papers by citations, velocity, and venue prestige.
229
- - **Deduplication:** universal anchoring via DOI and Scholar Cluster IDs.
230
- - **Provenance:** Entries track their metadata source and verification status.
231
-
232
- ---
233
-
234
- ## Command Reference
235
-
236
- ### Setup
237
- | Command | Purpose |
238
- |---------|---------|
239
- | `/wtfp:new-paper` | Initialize paper with deep context gathering |
240
- | `/wtfp:create-outline` | Generate section structure |
241
- | `/wtfp:map-project` | Index existing project materials |
242
- | `/wtfp:analyze-bib` | Deep analysis of your bibliography |
243
-
244
- ### Planning
245
- | Command | Purpose |
246
- |---------|---------|
247
- | `/wtfp:discuss-section [N]` | Articulate vision before planning |
248
- | `/wtfp:plan-section [N]` | Create execution plan |
249
- | `/wtfp:list-assumptions [N]` | See what Claude plans to write |
250
- | `/wtfp:research-gap [N]` | Literature analysis for a section |
251
-
252
- ### Writing
253
- | Command | Purpose |
254
- |---------|---------|
255
- | `/wtfp:write-section` | Execute a plan |
256
- | `/wtfp:progress` | Status + intelligent next action |
257
- | `/wtfp:pause-writing` | Save state for later |
258
- | `/wtfp:resume-writing` | Restore context and continue |
259
-
260
- ### Review
261
- | Command | Purpose |
262
- |---------|---------|
263
- | `/wtfp:review-section [N]` | Three-layer verification |
264
- | `/wtfp:plan-revision [N]` | Create fix plan from issues |
265
- | `/wtfp:polish-prose` | Improve readability |
266
- | `/wtfp:check-refs` | Citation audit |
267
-
268
- ### Export
269
- | Command | Purpose |
270
- |---------|---------|
271
- | `/wtfp:export-latex` | Generate .tex output |
272
- | `/wtfp:submit-milestone` | Archive submission version |
273
-
274
- ### Contributing
275
- | Command | Purpose |
276
- |---------|---------|
277
- | `/wtfp:report-bug` | File a GitHub issue |
278
- | `/wtfp:request-feature` | Request new functionality |
279
- | `/wtfp:contribute` | Submit a pull request |
280
-
281
- ---
282
-
283
- ## Venue Templates
284
-
285
- | Template | Structure |
286
- |----------|-----------|
287
- | `acm-cs` | Intro → Background → Approach → Evaluation → Related Work → Conclusion |
288
- | `ieee-cs` | Intro → Background → Design → Implementation → Evaluation → Conclusion |
289
- | `arxiv-ml` | Intro → Related Work → Preliminaries → Method → Experiments → Conclusion |
290
- | `nature` | Intro → Methods → Results → Discussion |
291
- | `thesis` | Flexible chapter structure |
292
-
293
- ---
294
-
295
- ## WCN Mode (Reduced Tokens)
296
-
297
- For smaller models or limited context windows, WTF-P includes compressed workflows:
228
+ Edit canonical resources under `protocol/`, then regenerate every native projection:
298
229
 
299
230
  ```bash
300
- ./tools/wcn/swap-workflows.sh wcn # Switch to compressed
301
- ./tools/wcn/swap-workflows.sh verbose # Switch back
231
+ npm run build:adapters
232
+ npm run check:adapters
233
+ npm test
234
+ npm run test:integration
302
235
  ```
303
236
 
304
- 35-50% token reduction with equivalent output quality. Verified on Claude Haiku and Sonnet.
305
-
306
- ---
237
+ `check:adapters` fails when committed generated resources drift from their canonical inputs. The test suite also checks action parity, skills, portable roles, `.planning` schemas, resource containment, exact installer ownership, rollback, uninstall preservation, and native envelope structure.
238
+
239
+ The Clio reference integration is merged into Clio Coder `v0.3.8` at
240
+ `9b7b80cc`. It adds recursive namespaced extension prompts, extension-owned
241
+ agents and fleets, same-extension skill binding, contained `${extensionRoot}`
242
+ resource resolution, exact operator-argument preservation, preservation of
243
+ nested template `state.json` resources, and extension-aware fleet preflight.
244
+ Effective package discovery certifies 72 prompts (36 nested and 36 flat), 11
245
+ agents, seven skills, two fleets, and zero diagnostics. Of those prompts, 48
246
+ aliases represent 24 adapter-available semantic actions and 24 aliases are the nested
247
+ and flat forms of 12 deterministic refusal routes. WTF-P capability-probes that
248
+ surface because Clio currently records, but does not enforce,
249
+ `compatibility.clio`. The generated fleet contracts use directory boundaries
250
+ (`.planning/` and `paper/`) so nested writes are authorized without broadening
251
+ the worker sandbox.
252
+
253
+ The two Clio fleets are operator-invoked native primitives, not implicit
254
+ routes behind `/wtfp:*`. Use
255
+ `clio-coder fleet run wtfp-plan-section --var section=<id>` or
256
+ `clio-coder fleet run wtfp-draft-review --var section=<id>` when their narrower
257
+ specialist contracts are appropriate; the slash-command orchestrator remains
258
+ responsible for approval and portable-state reconciliation around those worker
259
+ steps.
260
+
261
+ ## Design principles
262
+
263
+ - Evidence before eloquence: a fluent paragraph is not a substitute for a supported claim.
264
+ - Specification before drafting: author intent and acceptance criteria remain explicit.
265
+ - Portable semantics, native ergonomics: share the method while respecting each client's real plugin model.
266
+ - Bounded delegation: specialists receive the minimum context and authority their task requires.
267
+ - Human approval at consequential boundaries: deletion, commits, merges, package updates, and external issue creation remain explicit effects.
268
+ - Reversible installation: WTF-P never treats an agent's whole configuration directory as its property.
307
269
 
308
270
  ## Origin
309
271
 
310
- WTF-P was built at the [Gnosis Research Center](https://www.intelli-gnosis.com/) at Illinois Tech.
311
-
312
- The problem: research teams with grants to win, papers to publish, and no time to waste on writer's block. Existing AI tools either hallucinated citations or produced generic output that required complete rewrites.
272
+ WTF-P was built at the [Gnosis Research Center](https://grc.iit.edu/) at Illinois Tech for research teams with papers to publish, grants to win, and no time for writer's block.
313
273
 
314
- The solution: treat Claude Code as a **structured writing system**, not a chatbot. Give it proper context, explicit specifications, and verification layers. Let humans focus on ideas while AI handles the mechanical synthesis.
274
+ ## Links
315
275
 
316
- The result: papers that ship.
276
+ - [Changelog](CHANGELOG.md)
277
+ - [Modernization architecture](docs/agent-platform-modernization.md)
278
+ - [Compatibility evidence](docs/COMPATIBILITY.md)
279
+ - [Behavioral evaluation methodology](evaluation/README.md)
280
+ - [Tool execution and MCP decision](docs/adr/0001-hybrid-tool-execution.md)
281
+ - [v0.5 → v0.6 migration guide](docs/MIGRATION_V05_TO_V06.md)
282
+ - [Build and release](docs/BUILD_AND_RELEASE.md)
283
+ - [Contributing](CONTRIBUTING.md)
284
+ - [Roadmap](ROADMAP.md)
285
+ - [License](LICENSE)
286
+ - [GitHub](https://github.com/akougkas/wtf-p)
317
287
 
318
- ---
319
-
320
- ## Contributing
321
-
322
- Found a bug? Want a feature? WTF-P includes commands to help:
323
-
324
- ```bash
325
- /wtfp:report-bug # Creates a GitHub issue
326
- /wtfp:request-feature # Submits a feature request
327
- /wtfp:contribute # Guides you through a PR
328
- ```
329
-
330
- Or visit [github.com/akougkas/wtf-p](https://github.com/akougkas/wtf-p).
331
-
332
- ---
333
-
334
- ## License
288
+ <div align="center">
335
289
 
336
- MIT License. Open source, open science.
290
+ **No more excuses. Ship the paper.**
337
291
 
338
- <div align="center">
339
- <br>
340
- <strong>Stop staring at the cursor. Start shipping papers.</strong>
341
292
  </div>