wtf-p 0.6.0-rc.2 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1456) hide show
  1. package/README.md +154 -272
  2. package/bin/commands/install-logic.js +38 -9
  3. package/bin/install.js +39 -15
  4. package/bin/lib/adapter-compiler.js +831 -81
  5. package/bin/lib/adapter-metadata.js +1 -1
  6. package/bin/lib/analyze-impact.js +4 -0
  7. package/bin/lib/bib-format.js +79 -7
  8. package/bin/lib/bib-index.js +33 -6
  9. package/bin/lib/citation-fetcher.js +7 -1
  10. package/bin/lib/cite-nexus-client.js +120 -0
  11. package/bin/lib/clio-registration.js +246 -0
  12. package/bin/lib/manifest.js +59 -25
  13. package/bin/lib/native-registration.js +22 -105
  14. package/bin/lib/scholar-lookup.js +6 -0
  15. package/bin/lib/utils.js +11 -6
  16. package/bin/uninstall.js +12 -3
  17. package/package.json +6 -7
  18. package/protocol/actions/analyze-bib.json +1 -1
  19. package/protocol/actions/audit-milestone.json +1 -1
  20. package/protocol/actions/check-refs.json +1 -1
  21. package/protocol/actions/create-poster.json +0 -5
  22. package/protocol/actions/create-slides.json +0 -5
  23. package/protocol/actions/export-latex.json +1 -1
  24. package/protocol/actions/map-project.json +17 -3
  25. package/protocol/actions/research-gap.json +1 -1
  26. package/protocol/roles/outliner.md +2 -2
  27. package/protocol/skills/wtfp-start-project/references/actions.md +2 -2
  28. package/protocol/templates/README.md +12 -0
  29. package/protocol/templates/grant-proposal-outline.md +40 -0
  30. package/protocol/templates/paper-outline.md +46 -0
  31. package/protocol/templates/poster.md +66 -0
  32. package/protocol/templates/slides.md +83 -0
  33. package/protocol/workflows/analyze-bib.md +11 -1
  34. package/protocol/workflows/audit-milestone.md +10 -0
  35. package/protocol/workflows/check-refs.md +10 -0
  36. package/protocol/workflows/create-outline.md +3 -2
  37. package/protocol/workflows/create-poster.md +3 -2
  38. package/protocol/workflows/create-slides.md +3 -2
  39. package/protocol/workflows/export-latex.md +11 -1
  40. package/protocol/workflows/help.md +3 -2
  41. package/protocol/workflows/insert-section.md +1 -1
  42. package/protocol/workflows/map-project.md +5 -3
  43. package/protocol/workflows/new-paper.md +1 -1
  44. package/protocol/workflows/remove-section.md +1 -1
  45. package/protocol/workflows/research-gap.md +10 -0
  46. package/vendors/antigravity/.wtfp-generated.json +114 -82
  47. package/vendors/antigravity/actions/analyze-bib.json +1 -1
  48. package/vendors/antigravity/actions/audit-milestone.json +1 -1
  49. package/vendors/antigravity/actions/check-refs.json +1 -1
  50. package/vendors/antigravity/actions/create-poster.json +0 -5
  51. package/vendors/antigravity/actions/create-slides.json +0 -5
  52. package/vendors/antigravity/actions/export-latex.json +1 -1
  53. package/vendors/antigravity/actions/map-project.json +17 -3
  54. package/vendors/antigravity/actions/research-gap.json +1 -1
  55. package/vendors/antigravity/agents/wtfp-argument-verifier.md +2 -1
  56. package/vendors/antigravity/agents/wtfp-citation-expert.md +2 -1
  57. package/vendors/antigravity/agents/wtfp-citation-formatter.md +2 -1
  58. package/vendors/antigravity/agents/wtfp-coherence-checker.md +2 -1
  59. package/vendors/antigravity/agents/wtfp-outliner.md +4 -3
  60. package/vendors/antigravity/agents/wtfp-plan-checker.md +2 -1
  61. package/vendors/antigravity/agents/wtfp-prose-polisher.md +2 -1
  62. package/vendors/antigravity/agents/wtfp-research-synthesizer.md +2 -1
  63. package/vendors/antigravity/agents/wtfp-section-planner.md +2 -1
  64. package/vendors/antigravity/agents/wtfp-section-reviewer.md +2 -1
  65. package/vendors/antigravity/agents/wtfp-section-writer.md +2 -1
  66. package/vendors/antigravity/commands/wtfp-add-todo.md +1 -1
  67. package/vendors/antigravity/commands/wtfp-analyze-bib.md +1 -1
  68. package/vendors/antigravity/commands/wtfp-audit-milestone.md +1 -1
  69. package/vendors/antigravity/commands/wtfp-check-refs.md +1 -1
  70. package/vendors/antigravity/commands/wtfp-check-todos.md +1 -1
  71. package/vendors/antigravity/commands/wtfp-checkpoint.md +1 -1
  72. package/vendors/antigravity/commands/wtfp-contribute.md +1 -1
  73. package/vendors/antigravity/commands/wtfp-create-outline.md +4 -3
  74. package/vendors/antigravity/commands/wtfp-create-poster.md +51 -9
  75. package/vendors/antigravity/commands/wtfp-create-slides.md +51 -9
  76. package/vendors/antigravity/commands/wtfp-discuss-section.md +1 -1
  77. package/vendors/antigravity/commands/wtfp-execute-outline.md +1 -1
  78. package/vendors/antigravity/commands/wtfp-export-latex.md +1 -1
  79. package/vendors/antigravity/commands/wtfp-help.md +4 -3
  80. package/vendors/antigravity/commands/wtfp-insert-section.md +2 -2
  81. package/vendors/antigravity/commands/wtfp-list-assumptions.md +1 -1
  82. package/vendors/antigravity/commands/wtfp-map-project.md +6 -4
  83. package/vendors/antigravity/commands/wtfp-new-paper.md +2 -2
  84. package/vendors/antigravity/commands/wtfp-pause-writing.md +1 -1
  85. package/vendors/antigravity/commands/wtfp-plan-milestone-gaps.md +1 -1
  86. package/vendors/antigravity/commands/wtfp-plan-revision.md +1 -1
  87. package/vendors/antigravity/commands/wtfp-plan-section.md +1 -1
  88. package/vendors/antigravity/commands/wtfp-polish-prose.md +1 -1
  89. package/vendors/antigravity/commands/wtfp-progress.md +1 -1
  90. package/vendors/antigravity/commands/wtfp-quick.md +1 -1
  91. package/vendors/antigravity/commands/wtfp-remove-section.md +1 -1
  92. package/vendors/antigravity/commands/wtfp-report-bug.md +1 -1
  93. package/vendors/antigravity/commands/wtfp-request-feature.md +1 -1
  94. package/vendors/antigravity/commands/wtfp-research-gap.md +1 -1
  95. package/vendors/antigravity/commands/wtfp-resume-writing.md +1 -1
  96. package/vendors/antigravity/commands/wtfp-review-section.md +1 -1
  97. package/vendors/antigravity/commands/wtfp-settings.md +1 -1
  98. package/vendors/antigravity/commands/wtfp-submit-milestone.md +1 -1
  99. package/vendors/antigravity/commands/wtfp-update.md +1 -1
  100. package/vendors/antigravity/commands/wtfp-verify-work.md +1 -1
  101. package/vendors/antigravity/commands/wtfp-write-section.md +1 -1
  102. package/vendors/antigravity/compatibility/action-availability.json +6 -14
  103. package/vendors/antigravity/plugin.json +3 -9
  104. package/vendors/antigravity/repository/CONTRIBUTING.md +9 -6
  105. package/vendors/antigravity/roles/outliner.md +2 -2
  106. package/vendors/antigravity/rules/wtfp-project-state.md +71 -0
  107. package/vendors/antigravity/skills/wtfp-deliver-research/references/actions.md +0 -24
  108. package/vendors/antigravity/skills/wtfp-start-project/references/actions.md +2 -2
  109. package/vendors/antigravity/templates/README.md +12 -0
  110. package/vendors/antigravity/templates/grant-proposal-outline.md +40 -0
  111. package/vendors/antigravity/templates/paper-outline.md +46 -0
  112. package/vendors/antigravity/templates/poster.md +66 -0
  113. package/vendors/antigravity/templates/slides.md +83 -0
  114. package/vendors/antigravity/tools/README.md +25 -2
  115. package/vendors/antigravity/tools/bibliography/analyze-impact.js +4 -0
  116. package/vendors/antigravity/tools/bibliography/format.js +79 -7
  117. package/vendors/antigravity/tools/bibliography/index.js +33 -6
  118. package/vendors/antigravity/tools/citation/fetch.js +7 -1
  119. package/vendors/antigravity/tools/citation/scholar-lookup.js +6 -0
  120. package/vendors/antigravity/tools/support/cite-nexus-client.js +120 -0
  121. package/vendors/antigravity/tools/wtfp-tool.js +297 -0
  122. package/vendors/antigravity/workflows/analyze-bib.md +11 -1
  123. package/vendors/antigravity/workflows/audit-milestone.md +10 -0
  124. package/vendors/antigravity/workflows/check-refs.md +10 -0
  125. package/vendors/antigravity/workflows/create-outline.md +3 -2
  126. package/vendors/antigravity/workflows/create-poster.md +3 -2
  127. package/vendors/antigravity/workflows/create-slides.md +3 -2
  128. package/vendors/antigravity/workflows/export-latex.md +11 -1
  129. package/vendors/antigravity/workflows/help.md +3 -2
  130. package/vendors/antigravity/workflows/insert-section.md +1 -1
  131. package/vendors/antigravity/workflows/map-project.md +5 -3
  132. package/vendors/antigravity/workflows/new-paper.md +1 -1
  133. package/vendors/antigravity/workflows/remove-section.md +1 -1
  134. package/vendors/antigravity/workflows/research-gap.md +10 -0
  135. package/vendors/claude/.claude-plugin/marketplace.json +2 -2
  136. package/vendors/claude/.claude-plugin/plugin.json +1 -1
  137. package/vendors/claude/.wtfp-generated.json +340 -96
  138. package/vendors/claude/actions/analyze-bib.json +1 -1
  139. package/vendors/claude/actions/audit-milestone.json +1 -1
  140. package/vendors/claude/actions/check-refs.json +1 -1
  141. package/vendors/claude/actions/create-poster.json +0 -5
  142. package/vendors/claude/actions/create-slides.json +0 -5
  143. package/vendors/claude/actions/export-latex.json +1 -1
  144. package/vendors/claude/actions/map-project.json +17 -3
  145. package/vendors/claude/actions/research-gap.json +1 -1
  146. package/vendors/claude/agents/wtfp-argument-verifier.md +67 -0
  147. package/vendors/claude/agents/wtfp-citation-expert.md +70 -0
  148. package/vendors/claude/agents/wtfp-citation-formatter.md +70 -0
  149. package/vendors/claude/agents/wtfp-coherence-checker.md +66 -0
  150. package/vendors/claude/agents/wtfp-outliner.md +75 -0
  151. package/vendors/claude/agents/wtfp-plan-checker.md +67 -0
  152. package/vendors/claude/agents/wtfp-prose-polisher.md +70 -0
  153. package/vendors/claude/agents/wtfp-research-synthesizer.md +72 -0
  154. package/vendors/claude/agents/wtfp-section-planner.md +72 -0
  155. package/vendors/claude/agents/wtfp-section-reviewer.md +67 -0
  156. package/vendors/claude/agents/wtfp-section-writer.md +73 -0
  157. package/vendors/claude/ai.iowarp.clio/agents/wtfp-argument-verifier.md +64 -0
  158. package/vendors/claude/ai.iowarp.clio/agents/wtfp-citation-expert.md +67 -0
  159. package/vendors/claude/ai.iowarp.clio/agents/wtfp-citation-formatter.md +67 -0
  160. package/vendors/claude/ai.iowarp.clio/agents/wtfp-coherence-checker.md +63 -0
  161. package/vendors/claude/ai.iowarp.clio/agents/wtfp-outliner.md +72 -0
  162. package/vendors/claude/ai.iowarp.clio/agents/wtfp-plan-checker.md +64 -0
  163. package/vendors/claude/ai.iowarp.clio/agents/wtfp-prose-polisher.md +67 -0
  164. package/vendors/claude/ai.iowarp.clio/agents/wtfp-research-synthesizer.md +69 -0
  165. package/vendors/claude/ai.iowarp.clio/agents/wtfp-section-planner.md +69 -0
  166. package/vendors/claude/ai.iowarp.clio/agents/wtfp-section-reviewer.md +64 -0
  167. package/vendors/claude/ai.iowarp.clio/agents/wtfp-section-writer.md +70 -0
  168. package/vendors/claude/ai.iowarp.clio/fleets/wtfp-draft-review.md +25 -0
  169. package/vendors/claude/ai.iowarp.clio/fleets/wtfp-plan-section.md +23 -0
  170. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/add-todo.md +52 -0
  171. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/analyze-bib.md +77 -0
  172. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/audit-milestone.md +78 -0
  173. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/check-refs.md +72 -0
  174. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/check-todos.md +54 -0
  175. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/checkpoint.md +70 -0
  176. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/contribute.md +15 -0
  177. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/create-outline.md +74 -0
  178. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/create-poster.md +55 -0
  179. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/create-slides.md +55 -0
  180. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/discuss-section.md +60 -0
  181. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/execute-outline.md +74 -0
  182. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/export-latex.md +70 -0
  183. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/help.md +119 -0
  184. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/insert-section.md +56 -0
  185. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/list-assumptions.md +54 -0
  186. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/map-project.md +56 -0
  187. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/new-paper.md +65 -0
  188. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/pause-writing.md +58 -0
  189. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/plan-milestone-gaps.md +58 -0
  190. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/plan-revision.md +58 -0
  191. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/plan-section.md +76 -0
  192. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/polish-prose.md +62 -0
  193. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/progress.md +70 -0
  194. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/quick.md +62 -0
  195. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/remove-section.md +15 -0
  196. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/report-bug.md +15 -0
  197. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/request-feature.md +15 -0
  198. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/research-gap.md +78 -0
  199. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/resume-writing.md +68 -0
  200. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/review-section.md +67 -0
  201. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/settings.md +52 -0
  202. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/submit-milestone.md +68 -0
  203. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/update.md +15 -0
  204. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/verify-work.md +58 -0
  205. package/vendors/claude/ai.iowarp.clio/prompts/wtfp/write-section.md +76 -0
  206. package/vendors/claude/commands/add-todo.md +1 -1
  207. package/vendors/claude/commands/analyze-bib.md +72 -9
  208. package/vendors/claude/commands/audit-milestone.md +75 -9
  209. package/vendors/claude/commands/check-refs.md +67 -9
  210. package/vendors/claude/commands/check-todos.md +1 -1
  211. package/vendors/claude/commands/checkpoint.md +1 -1
  212. package/vendors/claude/commands/contribute.md +1 -1
  213. package/vendors/claude/commands/create-outline.md +4 -3
  214. package/vendors/claude/commands/create-poster.md +51 -9
  215. package/vendors/claude/commands/create-slides.md +51 -9
  216. package/vendors/claude/commands/discuss-section.md +1 -1
  217. package/vendors/claude/commands/execute-outline.md +1 -1
  218. package/vendors/claude/commands/export-latex.md +67 -9
  219. package/vendors/claude/commands/help.md +4 -3
  220. package/vendors/claude/commands/insert-section.md +2 -2
  221. package/vendors/claude/commands/list-assumptions.md +1 -1
  222. package/vendors/claude/commands/map-project.md +6 -4
  223. package/vendors/claude/commands/new-paper.md +2 -2
  224. package/vendors/claude/commands/pause-writing.md +1 -1
  225. package/vendors/claude/commands/plan-milestone-gaps.md +1 -1
  226. package/vendors/claude/commands/plan-revision.md +1 -1
  227. package/vendors/claude/commands/plan-section.md +1 -1
  228. package/vendors/claude/commands/polish-prose.md +1 -1
  229. package/vendors/claude/commands/progress.md +1 -1
  230. package/vendors/claude/commands/quick.md +1 -1
  231. package/vendors/claude/commands/remove-section.md +1 -1
  232. package/vendors/claude/commands/report-bug.md +1 -1
  233. package/vendors/claude/commands/request-feature.md +1 -1
  234. package/vendors/claude/commands/research-gap.md +74 -9
  235. package/vendors/claude/commands/resume-writing.md +1 -1
  236. package/vendors/claude/commands/review-section.md +1 -1
  237. package/vendors/claude/commands/settings.md +1 -1
  238. package/vendors/claude/commands/submit-milestone.md +1 -1
  239. package/vendors/claude/commands/update.md +1 -1
  240. package/vendors/claude/commands/verify-work.md +1 -1
  241. package/vendors/claude/commands/write-section.md +1 -1
  242. package/vendors/claude/compatibility/action-availability.json +22 -50
  243. package/vendors/claude/hooks/hooks.json +40 -0
  244. package/vendors/claude/output-styles/wtfp-academic-writing.md +37 -0
  245. package/vendors/claude/plugin.json +409 -0
  246. package/vendors/claude/repository/CONTRIBUTING.md +9 -6
  247. package/vendors/claude/roles/outliner.md +2 -2
  248. package/vendors/claude/scripts/write-guard.json +21 -0
  249. package/vendors/claude/scripts/wtfp-write-guard.js +95 -0
  250. package/vendors/claude/skills/wtfp-deliver-research/references/actions.md +0 -40
  251. package/vendors/claude/skills/wtfp-research-literature/references/actions.md +0 -40
  252. package/vendors/claude/skills/wtfp-review-manuscript/references/actions.md +0 -16
  253. package/vendors/claude/skills/wtfp-start-project/references/actions.md +2 -2
  254. package/vendors/claude/templates/README.md +12 -0
  255. package/vendors/claude/templates/grant-proposal-outline.md +40 -0
  256. package/vendors/claude/templates/paper-outline.md +46 -0
  257. package/vendors/claude/templates/poster.md +66 -0
  258. package/vendors/claude/templates/slides.md +83 -0
  259. package/vendors/claude/tools/README.md +25 -2
  260. package/vendors/claude/tools/bibliography/analyze-impact.js +4 -0
  261. package/vendors/claude/tools/bibliography/format.js +79 -7
  262. package/vendors/claude/tools/bibliography/index.js +33 -6
  263. package/vendors/claude/tools/citation/fetch.js +7 -1
  264. package/vendors/claude/tools/citation/scholar-lookup.js +6 -0
  265. package/vendors/claude/tools/support/cite-nexus-client.js +120 -0
  266. package/vendors/claude/tools/wtfp-tool.js +297 -0
  267. package/vendors/claude/workflows/analyze-bib.md +11 -1
  268. package/vendors/claude/workflows/audit-milestone.md +10 -0
  269. package/vendors/claude/workflows/check-refs.md +10 -0
  270. package/vendors/claude/workflows/create-outline.md +3 -2
  271. package/vendors/claude/workflows/create-poster.md +3 -2
  272. package/vendors/claude/workflows/create-slides.md +3 -2
  273. package/vendors/claude/workflows/export-latex.md +11 -1
  274. package/vendors/claude/workflows/help.md +3 -2
  275. package/vendors/claude/workflows/insert-section.md +1 -1
  276. package/vendors/claude/workflows/map-project.md +5 -3
  277. package/vendors/claude/workflows/new-paper.md +1 -1
  278. package/vendors/claude/workflows/remove-section.md +1 -1
  279. package/vendors/claude/workflows/research-gap.md +10 -0
  280. package/vendors/codex/.agents/plugins/marketplace.json +2 -2
  281. package/vendors/codex/.wtfp-generated.json +3 -3
  282. package/vendors/codex/plugins/wtfp/.codex-plugin/plugin.json +32 -0
  283. package/vendors/codex/plugins/wtfp/.wtfp-generated.json +680 -0
  284. package/vendors/codex/plugins/wtfp/actions/analyze-bib.json +97 -0
  285. package/vendors/codex/plugins/wtfp/actions/audit-milestone.json +63 -0
  286. package/vendors/codex/plugins/wtfp/actions/check-refs.json +80 -0
  287. package/vendors/codex/plugins/wtfp/actions/create-poster.json +54 -0
  288. package/vendors/codex/plugins/wtfp/actions/create-slides.json +54 -0
  289. package/vendors/codex/plugins/wtfp/actions/export-latex.json +65 -0
  290. package/vendors/codex/plugins/wtfp/actions/map-project.json +71 -0
  291. package/vendors/codex/plugins/wtfp/actions/research-gap.json +101 -0
  292. package/vendors/codex/plugins/wtfp/agents/wtfp-argument-verifier.toml +140 -0
  293. package/vendors/codex/plugins/wtfp/agents/wtfp-citation-expert.toml +140 -0
  294. package/vendors/codex/plugins/wtfp/agents/wtfp-citation-formatter.toml +140 -0
  295. package/vendors/codex/plugins/wtfp/agents/wtfp-coherence-checker.toml +139 -0
  296. package/vendors/codex/plugins/wtfp/agents/wtfp-outliner.toml +145 -0
  297. package/vendors/codex/plugins/wtfp/agents/wtfp-plan-checker.toml +140 -0
  298. package/vendors/codex/plugins/wtfp/agents/wtfp-prose-polisher.toml +140 -0
  299. package/vendors/codex/plugins/wtfp/agents/wtfp-research-synthesizer.toml +142 -0
  300. package/vendors/codex/plugins/wtfp/agents/wtfp-section-planner.toml +142 -0
  301. package/vendors/codex/plugins/wtfp/agents/wtfp-section-reviewer.toml +140 -0
  302. package/vendors/codex/plugins/wtfp/agents/wtfp-section-writer.toml +143 -0
  303. package/vendors/codex/plugins/wtfp/compatibility/action-availability.json +306 -0
  304. package/vendors/codex/plugins/wtfp/plugin.json +35 -0
  305. package/vendors/codex/plugins/wtfp/repository/CONTRIBUTING.md +186 -0
  306. package/vendors/codex/plugins/wtfp/roles/outliner.md +68 -0
  307. package/vendors/codex/plugins/wtfp/skills/wtfp-deliver-research/references/actions.md +93 -0
  308. package/vendors/codex/plugins/wtfp/skills/wtfp-start-project/references/actions.md +80 -0
  309. package/vendors/codex/plugins/wtfp/templates/README.md +12 -0
  310. package/vendors/codex/plugins/wtfp/templates/grant-proposal-outline.md +40 -0
  311. package/vendors/codex/plugins/wtfp/templates/paper-outline.md +46 -0
  312. package/vendors/codex/plugins/wtfp/templates/poster.md +66 -0
  313. package/vendors/codex/plugins/wtfp/templates/slides.md +83 -0
  314. package/vendors/codex/plugins/wtfp/tools/README.md +36 -0
  315. package/vendors/codex/plugins/wtfp/tools/bibliography/analyze-impact.js +113 -0
  316. package/vendors/codex/plugins/wtfp/tools/bibliography/format.js +233 -0
  317. package/vendors/codex/plugins/wtfp/tools/bibliography/index.js +131 -0
  318. package/vendors/codex/plugins/wtfp/tools/citation/fetch.js +305 -0
  319. package/vendors/codex/plugins/wtfp/tools/citation/scholar-lookup.js +194 -0
  320. package/vendors/codex/plugins/wtfp/tools/support/cite-nexus-client.js +120 -0
  321. package/vendors/codex/plugins/wtfp/tools/wtfp-tool.js +297 -0
  322. package/vendors/codex/plugins/wtfp/workflows/analyze-bib.md +43 -0
  323. package/vendors/codex/plugins/wtfp/workflows/audit-milestone.md +42 -0
  324. package/vendors/codex/plugins/wtfp/workflows/check-refs.md +42 -0
  325. package/vendors/codex/plugins/wtfp/workflows/create-outline.md +34 -0
  326. package/vendors/codex/plugins/wtfp/workflows/create-poster.md +33 -0
  327. package/vendors/codex/plugins/wtfp/workflows/create-slides.md +33 -0
  328. package/vendors/codex/plugins/wtfp/workflows/export-latex.md +42 -0
  329. package/vendors/codex/plugins/wtfp/workflows/help.md +31 -0
  330. package/vendors/codex/plugins/wtfp/workflows/insert-section.md +32 -0
  331. package/vendors/codex/plugins/wtfp/workflows/map-project.md +34 -0
  332. package/vendors/codex/plugins/wtfp/workflows/new-paper.md +37 -0
  333. package/vendors/codex/plugins/wtfp/workflows/remove-section.md +32 -0
  334. package/vendors/codex/plugins/wtfp/workflows/research-gap.md +42 -0
  335. package/vendors/copilot/.wtfp-generated.json +97 -77
  336. package/vendors/copilot/marketplace.json +4 -4
  337. package/vendors/copilot/plugins/wtfp/.claude-plugin/plugin.json +12 -0
  338. package/vendors/copilot/plugins/wtfp/.wtfp-generated.json +820 -0
  339. package/vendors/copilot/plugins/wtfp/actions/analyze-bib.json +97 -0
  340. package/vendors/copilot/plugins/wtfp/actions/audit-milestone.json +63 -0
  341. package/vendors/copilot/plugins/wtfp/actions/check-refs.json +80 -0
  342. package/vendors/copilot/plugins/wtfp/actions/create-poster.json +54 -0
  343. package/vendors/copilot/plugins/wtfp/actions/create-slides.json +54 -0
  344. package/vendors/copilot/plugins/wtfp/actions/export-latex.json +65 -0
  345. package/vendors/copilot/plugins/wtfp/actions/map-project.json +71 -0
  346. package/vendors/copilot/plugins/wtfp/actions/research-gap.json +101 -0
  347. package/vendors/copilot/plugins/wtfp/agents/wtfp-argument-verifier.md +65 -0
  348. package/vendors/copilot/plugins/wtfp/agents/wtfp-citation-expert.md +68 -0
  349. package/vendors/copilot/plugins/wtfp/agents/wtfp-citation-formatter.md +68 -0
  350. package/vendors/copilot/plugins/wtfp/agents/wtfp-coherence-checker.md +64 -0
  351. package/vendors/copilot/plugins/wtfp/agents/wtfp-outliner.md +73 -0
  352. package/vendors/copilot/plugins/wtfp/agents/wtfp-plan-checker.md +65 -0
  353. package/vendors/copilot/plugins/wtfp/agents/wtfp-prose-polisher.md +68 -0
  354. package/vendors/copilot/plugins/wtfp/agents/wtfp-research-synthesizer.md +70 -0
  355. package/vendors/copilot/plugins/wtfp/agents/wtfp-section-planner.md +70 -0
  356. package/vendors/copilot/plugins/wtfp/agents/wtfp-section-reviewer.md +65 -0
  357. package/vendors/copilot/plugins/wtfp/agents/wtfp-section-writer.md +71 -0
  358. package/vendors/copilot/plugins/wtfp/commands/wtfp-add-todo.md +59 -0
  359. package/vendors/copilot/plugins/wtfp/commands/wtfp-analyze-bib.md +17 -0
  360. package/vendors/copilot/plugins/wtfp/commands/wtfp-audit-milestone.md +17 -0
  361. package/vendors/copilot/plugins/wtfp/commands/wtfp-check-refs.md +17 -0
  362. package/vendors/copilot/plugins/wtfp/commands/wtfp-check-todos.md +58 -0
  363. package/vendors/copilot/plugins/wtfp/commands/wtfp-checkpoint.md +74 -0
  364. package/vendors/copilot/plugins/wtfp/commands/wtfp-contribute.md +17 -0
  365. package/vendors/copilot/plugins/wtfp/commands/wtfp-create-outline.md +75 -0
  366. package/vendors/copilot/plugins/wtfp/commands/wtfp-create-poster.md +59 -0
  367. package/vendors/copilot/plugins/wtfp/commands/wtfp-create-slides.md +59 -0
  368. package/vendors/copilot/plugins/wtfp/commands/wtfp-discuss-section.md +64 -0
  369. package/vendors/copilot/plugins/wtfp/commands/wtfp-execute-outline.md +75 -0
  370. package/vendors/copilot/plugins/wtfp/commands/wtfp-export-latex.md +17 -0
  371. package/vendors/copilot/plugins/wtfp/commands/wtfp-help.md +49 -0
  372. package/vendors/copilot/plugins/wtfp/commands/wtfp-insert-section.md +60 -0
  373. package/vendors/copilot/plugins/wtfp/commands/wtfp-list-assumptions.md +59 -0
  374. package/vendors/copilot/plugins/wtfp/commands/wtfp-map-project.md +63 -0
  375. package/vendors/copilot/plugins/wtfp/commands/wtfp-new-paper.md +69 -0
  376. package/vendors/copilot/plugins/wtfp/commands/wtfp-pause-writing.md +65 -0
  377. package/vendors/copilot/plugins/wtfp/commands/wtfp-plan-milestone-gaps.md +62 -0
  378. package/vendors/copilot/plugins/wtfp/commands/wtfp-plan-revision.md +62 -0
  379. package/vendors/copilot/plugins/wtfp/commands/wtfp-plan-section.md +77 -0
  380. package/vendors/copilot/plugins/wtfp/commands/wtfp-polish-prose.md +63 -0
  381. package/vendors/copilot/plugins/wtfp/commands/wtfp-progress.md +72 -0
  382. package/vendors/copilot/plugins/wtfp/commands/wtfp-quick.md +63 -0
  383. package/vendors/copilot/plugins/wtfp/commands/wtfp-remove-section.md +17 -0
  384. package/vendors/copilot/plugins/wtfp/commands/wtfp-report-bug.md +17 -0
  385. package/vendors/copilot/plugins/wtfp/commands/wtfp-request-feature.md +17 -0
  386. package/vendors/copilot/plugins/wtfp/commands/wtfp-research-gap.md +17 -0
  387. package/vendors/copilot/plugins/wtfp/commands/wtfp-resume-writing.md +72 -0
  388. package/vendors/copilot/plugins/wtfp/commands/wtfp-review-section.md +68 -0
  389. package/vendors/copilot/plugins/wtfp/commands/wtfp-settings.md +56 -0
  390. package/vendors/copilot/plugins/wtfp/commands/wtfp-submit-milestone.md +72 -0
  391. package/vendors/copilot/plugins/wtfp/commands/wtfp-update.md +17 -0
  392. package/vendors/copilot/plugins/wtfp/commands/wtfp-verify-work.md +62 -0
  393. package/vendors/copilot/plugins/wtfp/commands/wtfp-write-section.md +77 -0
  394. package/vendors/copilot/plugins/wtfp/compatibility/action-availability.json +306 -0
  395. package/vendors/copilot/plugins/wtfp/repository/CONTRIBUTING.md +186 -0
  396. package/vendors/copilot/plugins/wtfp/roles/outliner.md +68 -0
  397. package/vendors/copilot/plugins/wtfp/skills/wtfp-deliver-research/references/actions.md +93 -0
  398. package/vendors/copilot/plugins/wtfp/skills/wtfp-start-project/references/actions.md +80 -0
  399. package/vendors/copilot/plugins/wtfp/templates/README.md +12 -0
  400. package/vendors/copilot/plugins/wtfp/templates/grant-proposal-outline.md +40 -0
  401. package/vendors/copilot/plugins/wtfp/templates/paper-outline.md +46 -0
  402. package/vendors/copilot/plugins/wtfp/templates/poster.md +66 -0
  403. package/vendors/copilot/plugins/wtfp/templates/slides.md +83 -0
  404. package/vendors/copilot/plugins/wtfp/tools/README.md +36 -0
  405. package/vendors/copilot/plugins/wtfp/tools/bibliography/analyze-impact.js +113 -0
  406. package/vendors/copilot/plugins/wtfp/tools/bibliography/format.js +233 -0
  407. package/vendors/copilot/plugins/wtfp/tools/bibliography/index.js +131 -0
  408. package/vendors/copilot/plugins/wtfp/tools/citation/fetch.js +305 -0
  409. package/vendors/copilot/plugins/wtfp/tools/citation/scholar-lookup.js +194 -0
  410. package/vendors/copilot/plugins/wtfp/tools/support/cite-nexus-client.js +120 -0
  411. package/vendors/copilot/plugins/wtfp/tools/wtfp-tool.js +297 -0
  412. package/vendors/copilot/plugins/wtfp/workflows/analyze-bib.md +43 -0
  413. package/vendors/copilot/plugins/wtfp/workflows/audit-milestone.md +42 -0
  414. package/vendors/copilot/plugins/wtfp/workflows/check-refs.md +42 -0
  415. package/vendors/copilot/plugins/wtfp/workflows/create-outline.md +34 -0
  416. package/vendors/copilot/plugins/wtfp/workflows/create-poster.md +33 -0
  417. package/vendors/copilot/plugins/wtfp/workflows/create-slides.md +33 -0
  418. package/vendors/copilot/plugins/wtfp/workflows/export-latex.md +42 -0
  419. package/vendors/copilot/plugins/wtfp/workflows/help.md +31 -0
  420. package/vendors/copilot/plugins/wtfp/workflows/insert-section.md +32 -0
  421. package/vendors/copilot/plugins/wtfp/workflows/map-project.md +34 -0
  422. package/vendors/copilot/plugins/wtfp/workflows/new-paper.md +37 -0
  423. package/vendors/copilot/plugins/wtfp/workflows/remove-section.md +32 -0
  424. package/vendors/copilot/plugins/wtfp/workflows/research-gap.md +42 -0
  425. package/vendors/copilot/project/.github/agents/wtfp-argument-verifier.agent.md +1 -1
  426. package/vendors/copilot/project/.github/agents/wtfp-citation-expert.agent.md +1 -1
  427. package/vendors/copilot/project/.github/agents/wtfp-citation-formatter.agent.md +1 -1
  428. package/vendors/copilot/project/.github/agents/wtfp-coherence-checker.agent.md +1 -1
  429. package/vendors/copilot/project/.github/agents/wtfp-outliner.agent.md +3 -3
  430. package/vendors/copilot/project/.github/agents/wtfp-plan-checker.agent.md +1 -1
  431. package/vendors/copilot/project/.github/agents/wtfp-prose-polisher.agent.md +1 -1
  432. package/vendors/copilot/project/.github/agents/wtfp-research-synthesizer.agent.md +1 -1
  433. package/vendors/copilot/project/.github/agents/wtfp-section-planner.agent.md +1 -1
  434. package/vendors/copilot/project/.github/agents/wtfp-section-reviewer.agent.md +1 -1
  435. package/vendors/copilot/project/.github/agents/wtfp-section-writer.agent.md +1 -1
  436. package/vendors/copilot/project/.github/copilot-instructions.md +1 -1
  437. package/vendors/copilot/project/.github/prompts/wtfp-add-todo.prompt.md +1 -1
  438. package/vendors/copilot/project/.github/prompts/wtfp-analyze-bib.prompt.md +1 -1
  439. package/vendors/copilot/project/.github/prompts/wtfp-audit-milestone.prompt.md +1 -1
  440. package/vendors/copilot/project/.github/prompts/wtfp-check-refs.prompt.md +1 -1
  441. package/vendors/copilot/project/.github/prompts/wtfp-check-todos.prompt.md +1 -1
  442. package/vendors/copilot/project/.github/prompts/wtfp-checkpoint.prompt.md +1 -1
  443. package/vendors/copilot/project/.github/prompts/wtfp-contribute.prompt.md +1 -1
  444. package/vendors/copilot/project/.github/prompts/wtfp-create-outline.prompt.md +1 -1
  445. package/vendors/copilot/project/.github/prompts/wtfp-create-poster.prompt.md +3 -3
  446. package/vendors/copilot/project/.github/prompts/wtfp-create-slides.prompt.md +3 -3
  447. package/vendors/copilot/project/.github/prompts/wtfp-discuss-section.prompt.md +1 -1
  448. package/vendors/copilot/project/.github/prompts/wtfp-execute-outline.prompt.md +1 -1
  449. package/vendors/copilot/project/.github/prompts/wtfp-export-latex.prompt.md +1 -1
  450. package/vendors/copilot/project/.github/prompts/wtfp-help.prompt.md +4 -3
  451. package/vendors/copilot/project/.github/prompts/wtfp-insert-section.prompt.md +1 -1
  452. package/vendors/copilot/project/.github/prompts/wtfp-list-assumptions.prompt.md +1 -1
  453. package/vendors/copilot/project/.github/prompts/wtfp-map-project.prompt.md +6 -4
  454. package/vendors/copilot/project/.github/prompts/wtfp-new-paper.prompt.md +1 -1
  455. package/vendors/copilot/project/.github/prompts/wtfp-pause-writing.prompt.md +1 -1
  456. package/vendors/copilot/project/.github/prompts/wtfp-plan-milestone-gaps.prompt.md +1 -1
  457. package/vendors/copilot/project/.github/prompts/wtfp-plan-revision.prompt.md +1 -1
  458. package/vendors/copilot/project/.github/prompts/wtfp-plan-section.prompt.md +1 -1
  459. package/vendors/copilot/project/.github/prompts/wtfp-polish-prose.prompt.md +1 -1
  460. package/vendors/copilot/project/.github/prompts/wtfp-progress.prompt.md +1 -1
  461. package/vendors/copilot/project/.github/prompts/wtfp-quick.prompt.md +1 -1
  462. package/vendors/copilot/project/.github/prompts/wtfp-remove-section.prompt.md +1 -1
  463. package/vendors/copilot/project/.github/prompts/wtfp-report-bug.prompt.md +1 -1
  464. package/vendors/copilot/project/.github/prompts/wtfp-request-feature.prompt.md +1 -1
  465. package/vendors/copilot/project/.github/prompts/wtfp-research-gap.prompt.md +1 -1
  466. package/vendors/copilot/project/.github/prompts/wtfp-resume-writing.prompt.md +1 -1
  467. package/vendors/copilot/project/.github/prompts/wtfp-review-section.prompt.md +1 -1
  468. package/vendors/copilot/project/.github/prompts/wtfp-settings.prompt.md +1 -1
  469. package/vendors/copilot/project/.github/prompts/wtfp-submit-milestone.prompt.md +1 -1
  470. package/vendors/copilot/project/.github/prompts/wtfp-update.prompt.md +1 -1
  471. package/vendors/copilot/project/.github/prompts/wtfp-verify-work.prompt.md +1 -1
  472. package/vendors/copilot/project/.github/prompts/wtfp-write-section.prompt.md +1 -1
  473. package/vendors/copilot/project/.github/skills/wtfp-deliver-research/references/actions.md +4 -4
  474. package/vendors/copilot/project/.github/skills/wtfp-start-project/references/actions.md +2 -2
  475. package/vendors/copilot/project/.github/wtfp/actions/analyze-bib.json +1 -1
  476. package/vendors/copilot/project/.github/wtfp/actions/audit-milestone.json +1 -1
  477. package/vendors/copilot/project/.github/wtfp/actions/check-refs.json +1 -1
  478. package/vendors/copilot/project/.github/wtfp/actions/create-poster.json +0 -5
  479. package/vendors/copilot/project/.github/wtfp/actions/create-slides.json +0 -5
  480. package/vendors/copilot/project/.github/wtfp/actions/export-latex.json +1 -1
  481. package/vendors/copilot/project/.github/wtfp/actions/map-project.json +17 -3
  482. package/vendors/copilot/project/.github/wtfp/actions/research-gap.json +1 -1
  483. package/vendors/copilot/project/.github/wtfp/compatibility/action-availability.json +2 -8
  484. package/vendors/copilot/project/.github/wtfp/roles/outliner.md +2 -2
  485. package/vendors/copilot/project/.github/wtfp/skills/wtfp-start-project/references/actions.md +2 -2
  486. package/vendors/copilot/project/.github/wtfp/templates/README.md +12 -0
  487. package/vendors/copilot/project/.github/wtfp/templates/grant-proposal-outline.md +40 -0
  488. package/vendors/copilot/project/.github/wtfp/templates/paper-outline.md +46 -0
  489. package/vendors/copilot/project/.github/wtfp/templates/poster.md +66 -0
  490. package/vendors/copilot/project/.github/wtfp/templates/slides.md +83 -0
  491. package/vendors/copilot/project/.github/wtfp/workflows/analyze-bib.md +11 -1
  492. package/vendors/copilot/project/.github/wtfp/workflows/audit-milestone.md +10 -0
  493. package/vendors/copilot/project/.github/wtfp/workflows/check-refs.md +10 -0
  494. package/vendors/copilot/project/.github/wtfp/workflows/create-outline.md +3 -2
  495. package/vendors/copilot/project/.github/wtfp/workflows/create-poster.md +3 -2
  496. package/vendors/copilot/project/.github/wtfp/workflows/create-slides.md +3 -2
  497. package/vendors/copilot/project/.github/wtfp/workflows/export-latex.md +11 -1
  498. package/vendors/copilot/project/.github/wtfp/workflows/help.md +3 -2
  499. package/vendors/copilot/project/.github/wtfp/workflows/insert-section.md +1 -1
  500. package/vendors/copilot/project/.github/wtfp/workflows/map-project.md +5 -3
  501. package/vendors/copilot/project/.github/wtfp/workflows/new-paper.md +1 -1
  502. package/vendors/copilot/project/.github/wtfp/workflows/remove-section.md +1 -1
  503. package/vendors/copilot/project/.github/wtfp/workflows/research-gap.md +10 -0
  504. package/vendors/gemini/.wtfp-generated.json +121 -93
  505. package/vendors/gemini/actions/analyze-bib.json +1 -1
  506. package/vendors/gemini/actions/audit-milestone.json +1 -1
  507. package/vendors/gemini/actions/check-refs.json +1 -1
  508. package/vendors/gemini/actions/create-poster.json +0 -5
  509. package/vendors/gemini/actions/create-slides.json +0 -5
  510. package/vendors/gemini/actions/export-latex.json +1 -1
  511. package/vendors/gemini/actions/map-project.json +17 -3
  512. package/vendors/gemini/actions/research-gap.json +1 -1
  513. package/vendors/gemini/agents/wtfp-argument-verifier.md +142 -0
  514. package/vendors/gemini/agents/wtfp-citation-expert.md +143 -0
  515. package/vendors/gemini/agents/wtfp-citation-formatter.md +143 -0
  516. package/vendors/gemini/agents/wtfp-coherence-checker.md +141 -0
  517. package/vendors/gemini/agents/wtfp-outliner.md +148 -0
  518. package/vendors/gemini/agents/wtfp-plan-checker.md +142 -0
  519. package/vendors/gemini/agents/wtfp-prose-polisher.md +143 -0
  520. package/vendors/gemini/agents/wtfp-research-synthesizer.md +145 -0
  521. package/vendors/gemini/agents/wtfp-section-planner.md +145 -0
  522. package/vendors/gemini/agents/wtfp-section-reviewer.md +142 -0
  523. package/vendors/gemini/agents/wtfp-section-writer.md +146 -0
  524. package/vendors/gemini/commands/wtfp/add-todo.toml +1 -1
  525. package/vendors/gemini/commands/wtfp/analyze-bib.toml +1 -1
  526. package/vendors/gemini/commands/wtfp/audit-milestone.toml +1 -1
  527. package/vendors/gemini/commands/wtfp/check-refs.toml +1 -1
  528. package/vendors/gemini/commands/wtfp/check-todos.toml +1 -1
  529. package/vendors/gemini/commands/wtfp/checkpoint.toml +1 -1
  530. package/vendors/gemini/commands/wtfp/contribute.toml +1 -1
  531. package/vendors/gemini/commands/wtfp/create-outline.toml +104 -5
  532. package/vendors/gemini/commands/wtfp/create-poster.toml +655 -8
  533. package/vendors/gemini/commands/wtfp/create-slides.toml +672 -8
  534. package/vendors/gemini/commands/wtfp/discuss-section.toml +1 -1
  535. package/vendors/gemini/commands/wtfp/execute-outline.toml +1 -1
  536. package/vendors/gemini/commands/wtfp/export-latex.toml +1 -1
  537. package/vendors/gemini/commands/wtfp/help.toml +4 -3
  538. package/vendors/gemini/commands/wtfp/insert-section.toml +2 -2
  539. package/vendors/gemini/commands/wtfp/list-assumptions.toml +1 -1
  540. package/vendors/gemini/commands/wtfp/map-project.toml +25 -9
  541. package/vendors/gemini/commands/wtfp/new-paper.toml +102 -4
  542. package/vendors/gemini/commands/wtfp/pause-writing.toml +1 -1
  543. package/vendors/gemini/commands/wtfp/plan-milestone-gaps.toml +1 -1
  544. package/vendors/gemini/commands/wtfp/plan-revision.toml +1 -1
  545. package/vendors/gemini/commands/wtfp/plan-section.toml +1 -1
  546. package/vendors/gemini/commands/wtfp/polish-prose.toml +1 -1
  547. package/vendors/gemini/commands/wtfp/progress.toml +1 -1
  548. package/vendors/gemini/commands/wtfp/quick.toml +1 -1
  549. package/vendors/gemini/commands/wtfp/remove-section.toml +1 -1
  550. package/vendors/gemini/commands/wtfp/report-bug.toml +1 -1
  551. package/vendors/gemini/commands/wtfp/request-feature.toml +1 -1
  552. package/vendors/gemini/commands/wtfp/research-gap.toml +1 -1
  553. package/vendors/gemini/commands/wtfp/resume-writing.toml +1 -1
  554. package/vendors/gemini/commands/wtfp/review-section.toml +1 -1
  555. package/vendors/gemini/commands/wtfp/settings.toml +1 -1
  556. package/vendors/gemini/commands/wtfp/submit-milestone.toml +1 -1
  557. package/vendors/gemini/commands/wtfp/update.toml +1 -1
  558. package/vendors/gemini/commands/wtfp/verify-work.toml +1 -1
  559. package/vendors/gemini/commands/wtfp/write-section.toml +1 -1
  560. package/vendors/gemini/compatibility/action-availability.json +6 -14
  561. package/vendors/gemini/gemini-extension.json +2 -2
  562. package/vendors/gemini/repository/CONTRIBUTING.md +9 -6
  563. package/vendors/gemini/roles/outliner.md +2 -2
  564. package/vendors/gemini/skills/wtfp-deliver-research/references/actions.md +0 -24
  565. package/vendors/gemini/skills/wtfp-start-project/references/actions.md +2 -2
  566. package/vendors/gemini/templates/README.md +12 -0
  567. package/vendors/gemini/templates/grant-proposal-outline.md +40 -0
  568. package/vendors/gemini/templates/paper-outline.md +46 -0
  569. package/vendors/gemini/templates/poster.md +66 -0
  570. package/vendors/gemini/templates/slides.md +83 -0
  571. package/vendors/gemini/tools/README.md +25 -2
  572. package/vendors/gemini/tools/bibliography/analyze-impact.js +4 -0
  573. package/vendors/gemini/tools/bibliography/format.js +79 -7
  574. package/vendors/gemini/tools/bibliography/index.js +33 -6
  575. package/vendors/gemini/tools/citation/fetch.js +7 -1
  576. package/vendors/gemini/tools/citation/scholar-lookup.js +6 -0
  577. package/vendors/gemini/tools/support/cite-nexus-client.js +120 -0
  578. package/vendors/gemini/tools/wtfp-tool.js +297 -0
  579. package/vendors/gemini/workflows/analyze-bib.md +11 -1
  580. package/vendors/gemini/workflows/audit-milestone.md +10 -0
  581. package/vendors/gemini/workflows/check-refs.md +10 -0
  582. package/vendors/gemini/workflows/create-outline.md +3 -2
  583. package/vendors/gemini/workflows/create-poster.md +3 -2
  584. package/vendors/gemini/workflows/create-slides.md +3 -2
  585. package/vendors/gemini/workflows/export-latex.md +11 -1
  586. package/vendors/gemini/workflows/help.md +3 -2
  587. package/vendors/gemini/workflows/insert-section.md +1 -1
  588. package/vendors/gemini/workflows/map-project.md +5 -3
  589. package/vendors/gemini/workflows/new-paper.md +1 -1
  590. package/vendors/gemini/workflows/remove-section.md +1 -1
  591. package/vendors/gemini/workflows/research-gap.md +10 -0
  592. package/vendors/opencode/.wtfp-generated.json +109 -81
  593. package/vendors/opencode/actions/analyze-bib.json +1 -1
  594. package/vendors/opencode/actions/audit-milestone.json +1 -1
  595. package/vendors/opencode/actions/check-refs.json +1 -1
  596. package/vendors/opencode/actions/create-poster.json +0 -5
  597. package/vendors/opencode/actions/create-slides.json +0 -5
  598. package/vendors/opencode/actions/export-latex.json +1 -1
  599. package/vendors/opencode/actions/map-project.json +17 -3
  600. package/vendors/opencode/actions/research-gap.json +1 -1
  601. package/vendors/opencode/agents/wtfp/argument-verifier.md +5 -1
  602. package/vendors/opencode/agents/wtfp/citation-expert.md +2 -1
  603. package/vendors/opencode/agents/wtfp/citation-formatter.md +2 -1
  604. package/vendors/opencode/agents/wtfp/coherence-checker.md +5 -1
  605. package/vendors/opencode/agents/wtfp/outliner.md +4 -3
  606. package/vendors/opencode/agents/wtfp/plan-checker.md +5 -1
  607. package/vendors/opencode/agents/wtfp/prose-polisher.md +2 -1
  608. package/vendors/opencode/agents/wtfp/research-synthesizer.md +2 -1
  609. package/vendors/opencode/agents/wtfp/section-planner.md +2 -1
  610. package/vendors/opencode/agents/wtfp/section-reviewer.md +5 -1
  611. package/vendors/opencode/agents/wtfp/section-writer.md +2 -1
  612. package/vendors/opencode/commands/wtfp/add-todo.md +1 -1
  613. package/vendors/opencode/commands/wtfp/analyze-bib.md +1 -1
  614. package/vendors/opencode/commands/wtfp/audit-milestone.md +1 -1
  615. package/vendors/opencode/commands/wtfp/check-refs.md +1 -1
  616. package/vendors/opencode/commands/wtfp/check-todos.md +1 -1
  617. package/vendors/opencode/commands/wtfp/checkpoint.md +1 -1
  618. package/vendors/opencode/commands/wtfp/contribute.md +1 -1
  619. package/vendors/opencode/commands/wtfp/create-outline.md +104 -5
  620. package/vendors/opencode/commands/wtfp/create-poster.md +656 -8
  621. package/vendors/opencode/commands/wtfp/create-slides.md +673 -8
  622. package/vendors/opencode/commands/wtfp/discuss-section.md +1 -1
  623. package/vendors/opencode/commands/wtfp/execute-outline.md +1 -1
  624. package/vendors/opencode/commands/wtfp/export-latex.md +1 -1
  625. package/vendors/opencode/commands/wtfp/help.md +4 -3
  626. package/vendors/opencode/commands/wtfp/insert-section.md +2 -2
  627. package/vendors/opencode/commands/wtfp/list-assumptions.md +1 -1
  628. package/vendors/opencode/commands/wtfp/map-project.md +25 -9
  629. package/vendors/opencode/commands/wtfp/new-paper.md +102 -4
  630. package/vendors/opencode/commands/wtfp/pause-writing.md +1 -1
  631. package/vendors/opencode/commands/wtfp/plan-milestone-gaps.md +1 -1
  632. package/vendors/opencode/commands/wtfp/plan-revision.md +1 -1
  633. package/vendors/opencode/commands/wtfp/plan-section.md +1 -1
  634. package/vendors/opencode/commands/wtfp/polish-prose.md +1 -1
  635. package/vendors/opencode/commands/wtfp/progress.md +1 -1
  636. package/vendors/opencode/commands/wtfp/quick.md +1 -1
  637. package/vendors/opencode/commands/wtfp/remove-section.md +1 -1
  638. package/vendors/opencode/commands/wtfp/report-bug.md +1 -1
  639. package/vendors/opencode/commands/wtfp/request-feature.md +1 -1
  640. package/vendors/opencode/commands/wtfp/research-gap.md +1 -1
  641. package/vendors/opencode/commands/wtfp/resume-writing.md +1 -1
  642. package/vendors/opencode/commands/wtfp/review-section.md +1 -1
  643. package/vendors/opencode/commands/wtfp/settings.md +1 -1
  644. package/vendors/opencode/commands/wtfp/submit-milestone.md +1 -1
  645. package/vendors/opencode/commands/wtfp/update.md +1 -1
  646. package/vendors/opencode/commands/wtfp/verify-work.md +1 -1
  647. package/vendors/opencode/commands/wtfp/write-section.md +1 -1
  648. package/vendors/opencode/compatibility/action-availability.json +6 -14
  649. package/vendors/opencode/repository/CONTRIBUTING.md +9 -6
  650. package/vendors/opencode/roles/outliner.md +2 -2
  651. package/vendors/opencode/skills/wtfp-deliver-research/references/actions.md +0 -24
  652. package/vendors/opencode/skills/wtfp-start-project/references/actions.md +2 -2
  653. package/vendors/opencode/templates/README.md +12 -0
  654. package/vendors/opencode/templates/grant-proposal-outline.md +40 -0
  655. package/vendors/opencode/templates/paper-outline.md +46 -0
  656. package/vendors/opencode/templates/poster.md +66 -0
  657. package/vendors/opencode/templates/slides.md +83 -0
  658. package/vendors/opencode/tools/README.md +25 -2
  659. package/vendors/opencode/tools/bibliography/analyze-impact.js +4 -0
  660. package/vendors/opencode/tools/bibliography/format.js +79 -7
  661. package/vendors/opencode/tools/bibliography/index.js +33 -6
  662. package/vendors/opencode/tools/citation/fetch.js +7 -1
  663. package/vendors/opencode/tools/citation/scholar-lookup.js +6 -0
  664. package/vendors/opencode/tools/support/cite-nexus-client.js +120 -0
  665. package/vendors/opencode/tools/wtfp-tool.js +297 -0
  666. package/vendors/opencode/workflows/analyze-bib.md +11 -1
  667. package/vendors/opencode/workflows/audit-milestone.md +10 -0
  668. package/vendors/opencode/workflows/check-refs.md +10 -0
  669. package/vendors/opencode/workflows/create-outline.md +3 -2
  670. package/vendors/opencode/workflows/create-poster.md +3 -2
  671. package/vendors/opencode/workflows/create-slides.md +3 -2
  672. package/vendors/opencode/workflows/export-latex.md +11 -1
  673. package/vendors/opencode/workflows/help.md +3 -2
  674. package/vendors/opencode/workflows/insert-section.md +1 -1
  675. package/vendors/opencode/workflows/map-project.md +5 -3
  676. package/vendors/opencode/workflows/new-paper.md +1 -1
  677. package/vendors/opencode/workflows/remove-section.md +1 -1
  678. package/vendors/opencode/workflows/research-gap.md +10 -0
  679. package/vendors/plugin/.wtfp-generated.json +820 -0
  680. package/vendors/plugin/actions/analyze-bib.json +97 -0
  681. package/vendors/plugin/actions/audit-milestone.json +63 -0
  682. package/vendors/plugin/actions/check-refs.json +80 -0
  683. package/vendors/plugin/actions/create-poster.json +54 -0
  684. package/vendors/plugin/actions/create-slides.json +54 -0
  685. package/vendors/plugin/actions/export-latex.json +65 -0
  686. package/vendors/plugin/actions/map-project.json +71 -0
  687. package/vendors/plugin/actions/research-gap.json +101 -0
  688. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-argument-verifier.md +64 -0
  689. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-citation-expert.md +67 -0
  690. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-citation-formatter.md +67 -0
  691. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-coherence-checker.md +63 -0
  692. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-outliner.md +72 -0
  693. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-plan-checker.md +64 -0
  694. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-prose-polisher.md +67 -0
  695. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-research-synthesizer.md +69 -0
  696. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-section-planner.md +69 -0
  697. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-section-reviewer.md +64 -0
  698. package/vendors/plugin/ai.iowarp.clio/agents/wtfp-section-writer.md +70 -0
  699. package/vendors/plugin/ai.iowarp.clio/fleets/wtfp-draft-review.md +25 -0
  700. package/vendors/plugin/ai.iowarp.clio/fleets/wtfp-plan-section.md +23 -0
  701. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/add-todo.md +52 -0
  702. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/analyze-bib.md +77 -0
  703. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/audit-milestone.md +78 -0
  704. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/check-refs.md +72 -0
  705. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/check-todos.md +54 -0
  706. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/checkpoint.md +70 -0
  707. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/contribute.md +15 -0
  708. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/create-outline.md +74 -0
  709. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/create-poster.md +55 -0
  710. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/create-slides.md +55 -0
  711. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/discuss-section.md +60 -0
  712. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/execute-outline.md +74 -0
  713. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/export-latex.md +70 -0
  714. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/help.md +119 -0
  715. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/insert-section.md +56 -0
  716. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/list-assumptions.md +54 -0
  717. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/map-project.md +56 -0
  718. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/new-paper.md +65 -0
  719. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/pause-writing.md +58 -0
  720. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/plan-milestone-gaps.md +58 -0
  721. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/plan-revision.md +58 -0
  722. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/plan-section.md +76 -0
  723. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/polish-prose.md +62 -0
  724. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/progress.md +70 -0
  725. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/quick.md +62 -0
  726. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/remove-section.md +15 -0
  727. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/report-bug.md +15 -0
  728. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/request-feature.md +15 -0
  729. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/research-gap.md +78 -0
  730. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/resume-writing.md +68 -0
  731. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/review-section.md +67 -0
  732. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/settings.md +52 -0
  733. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/submit-milestone.md +68 -0
  734. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/update.md +15 -0
  735. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/verify-work.md +58 -0
  736. package/vendors/plugin/ai.iowarp.clio/prompts/wtfp/write-section.md +76 -0
  737. package/vendors/plugin/compatibility/action-availability.json +295 -0
  738. package/vendors/plugin/plugin.json +409 -0
  739. package/vendors/plugin/repository/CONTRIBUTING.md +186 -0
  740. package/vendors/plugin/roles/outliner.md +68 -0
  741. package/vendors/plugin/skills/wtfp-deliver-research/references/actions.md +77 -0
  742. package/vendors/plugin/skills/wtfp-research-literature/references/actions.md +75 -0
  743. package/vendors/plugin/skills/wtfp-review-manuscript/references/actions.md +96 -0
  744. package/vendors/plugin/skills/wtfp-start-project/references/actions.md +80 -0
  745. package/vendors/plugin/templates/README.md +12 -0
  746. package/vendors/plugin/templates/grant-proposal-outline.md +40 -0
  747. package/vendors/plugin/templates/paper-outline.md +46 -0
  748. package/vendors/plugin/templates/poster.md +66 -0
  749. package/vendors/plugin/templates/slides.md +83 -0
  750. package/vendors/plugin/tools/README.md +36 -0
  751. package/vendors/plugin/tools/bibliography/analyze-impact.js +113 -0
  752. package/vendors/plugin/tools/bibliography/format.js +233 -0
  753. package/vendors/plugin/tools/bibliography/index.js +131 -0
  754. package/vendors/plugin/tools/citation/fetch.js +305 -0
  755. package/vendors/plugin/tools/citation/scholar-lookup.js +194 -0
  756. package/vendors/plugin/tools/support/cite-nexus-client.js +120 -0
  757. package/vendors/plugin/tools/wtfp-tool.js +297 -0
  758. package/vendors/plugin/workflows/analyze-bib.md +43 -0
  759. package/vendors/plugin/workflows/audit-milestone.md +42 -0
  760. package/vendors/plugin/workflows/check-refs.md +42 -0
  761. package/vendors/plugin/workflows/create-outline.md +34 -0
  762. package/vendors/plugin/workflows/create-poster.md +33 -0
  763. package/vendors/plugin/workflows/create-slides.md +33 -0
  764. package/vendors/plugin/workflows/export-latex.md +42 -0
  765. package/vendors/plugin/workflows/help.md +31 -0
  766. package/vendors/plugin/workflows/insert-section.md +32 -0
  767. package/vendors/plugin/workflows/map-project.md +34 -0
  768. package/vendors/plugin/workflows/new-paper.md +37 -0
  769. package/vendors/plugin/workflows/remove-section.md +32 -0
  770. package/vendors/plugin/workflows/research-gap.md +42 -0
  771. package/bin/lib/checkpoint.js +0 -183
  772. package/bin/lib/context-primer.js +0 -214
  773. package/bin/lib/wcn-compiler.js +0 -226
  774. package/core/write-the-f-paper/references/agent-model-matrix.md +0 -62
  775. package/core/write-the-f-paper/references/checkpoints.md +0 -364
  776. package/core/write-the-f-paper/references/context-fidelity.md +0 -153
  777. package/core/write-the-f-paper/references/continuation-format.md +0 -223
  778. package/core/write-the-f-paper/references/deviation-rules.md +0 -150
  779. package/core/write-the-f-paper/references/git-integration.md +0 -321
  780. package/core/write-the-f-paper/references/github-contrib.md +0 -216
  781. package/core/write-the-f-paper/references/imrad-structure.md +0 -212
  782. package/core/write-the-f-paper/references/length-estimation.md +0 -148
  783. package/core/write-the-f-paper/references/orchestrator-pattern.md +0 -167
  784. package/core/write-the-f-paper/references/plan-format.md +0 -361
  785. package/core/write-the-f-paper/references/planning-config.md +0 -135
  786. package/core/write-the-f-paper/references/principles.md +0 -158
  787. package/core/write-the-f-paper/references/questioning.md +0 -132
  788. package/core/write-the-f-paper/references/research-pitfalls.md +0 -208
  789. package/core/write-the-f-paper/references/ui-brand.md +0 -186
  790. package/core/write-the-f-paper/templates/UAT.md +0 -80
  791. package/core/write-the-f-paper/templates/base-prefs.yaml +0 -42
  792. package/core/write-the-f-paper/templates/config.json +0 -56
  793. package/core/write-the-f-paper/templates/context.md +0 -179
  794. package/core/write-the-f-paper/templates/continue-here.md +0 -142
  795. package/core/write-the-f-paper/templates/data-inventory.md +0 -142
  796. package/core/write-the-f-paper/templates/discovery.md +0 -146
  797. package/core/write-the-f-paper/templates/issues.md +0 -59
  798. package/core/write-the-f-paper/templates/manuscript.md +0 -253
  799. package/core/write-the-f-paper/templates/narrative-arc.md +0 -227
  800. package/core/write-the-f-paper/templates/outline.md +0 -274
  801. package/core/write-the-f-paper/templates/phase-prompt.md +0 -348
  802. package/core/write-the-f-paper/templates/posters/basic.md +0 -34
  803. package/core/write-the-f-paper/templates/prior-drafts.md +0 -204
  804. package/core/write-the-f-paper/templates/project-context/argument-structure.md +0 -267
  805. package/core/write-the-f-paper/templates/project-context/bibliography.md +0 -152
  806. package/core/write-the-f-paper/templates/project-context/gaps.md +0 -122
  807. package/core/write-the-f-paper/templates/project-context/imrad.md +0 -140
  808. package/core/write-the-f-paper/templates/project-context/peer-review.md +0 -152
  809. package/core/write-the-f-paper/templates/project-context/style-guide.md +0 -198
  810. package/core/write-the-f-paper/templates/project-context/tools.md +0 -170
  811. package/core/write-the-f-paper/templates/project.md +0 -185
  812. package/core/write-the-f-paper/templates/research.md +0 -384
  813. package/core/write-the-f-paper/templates/review-comments.md +0 -253
  814. package/core/write-the-f-paper/templates/revision-issues.md +0 -169
  815. package/core/write-the-f-paper/templates/roadmap.md +0 -187
  816. package/core/write-the-f-paper/templates/section-archive.md +0 -178
  817. package/core/write-the-f-paper/templates/section-context.md +0 -114
  818. package/core/write-the-f-paper/templates/section.md +0 -128
  819. package/core/write-the-f-paper/templates/slides/basic.md +0 -31
  820. package/core/write-the-f-paper/templates/state.md +0 -244
  821. package/core/write-the-f-paper/templates/summary.md +0 -277
  822. package/core/write-the-f-paper/venues/acm-cs.yaml +0 -102
  823. package/core/write-the-f-paper/venues/arxiv-ml.yaml +0 -103
  824. package/core/write-the-f-paper/venues/ieee-cs.yaml +0 -100
  825. package/core/write-the-f-paper/venues/nature.yaml +0 -81
  826. package/core/write-the-f-paper/venues/thesis-chapter.yaml +0 -101
  827. package/core/write-the-f-paper/workflows/create-outline.md +0 -462
  828. package/core/write-the-f-paper/workflows/create-outline.wcn.md +0 -194
  829. package/core/write-the-f-paper/workflows/discuss-section.md +0 -249
  830. package/core/write-the-f-paper/workflows/discuss-section.wcn.md +0 -63
  831. package/core/write-the-f-paper/workflows/execute-outline.md +0 -163
  832. package/core/write-the-f-paper/workflows/execute-outline.wcn.md +0 -73
  833. package/core/write-the-f-paper/workflows/execute-section.md +0 -704
  834. package/core/write-the-f-paper/workflows/execute-section.wcn.md +0 -191
  835. package/core/write-the-f-paper/workflows/list-assumptions.md +0 -183
  836. package/core/write-the-f-paper/workflows/list-assumptions.wcn.md +0 -42
  837. package/core/write-the-f-paper/workflows/lit-review-phase.md +0 -281
  838. package/core/write-the-f-paper/workflows/lit-review-phase.wcn.md +0 -92
  839. package/core/write-the-f-paper/workflows/map-project.md +0 -359
  840. package/core/write-the-f-paper/workflows/map-project.wcn.md +0 -73
  841. package/core/write-the-f-paper/workflows/plan-section.md +0 -409
  842. package/core/write-the-f-paper/workflows/plan-section.wcn.md +0 -229
  843. package/core/write-the-f-paper/workflows/research-gap.md +0 -493
  844. package/core/write-the-f-paper/workflows/research-gap.wcn.md +0 -136
  845. package/core/write-the-f-paper/workflows/resume-paper.md +0 -274
  846. package/core/write-the-f-paper/workflows/resume-paper.wcn.md +0 -93
  847. package/core/write-the-f-paper/workflows/review-section.md +0 -329
  848. package/core/write-the-f-paper/workflows/review-section.wcn.md +0 -91
  849. package/core/write-the-f-paper/workflows/submit-draft.md +0 -368
  850. package/core/write-the-f-paper/workflows/submit-draft.wcn.md +0 -69
  851. package/core/write-the-f-paper/workflows/transition.md +0 -375
  852. package/core/write-the-f-paper/workflows/transition.wcn.md +0 -113
  853. package/core/write-the-f-paper/workflows/verify-work.md +0 -251
  854. package/core/write-the-f-paper/workflows/verify-work.wcn.md +0 -74
  855. package/vendors/claude/agents/wtfp/argument-verifier.md +0 -65
  856. package/vendors/claude/agents/wtfp/citation-expert.md +0 -68
  857. package/vendors/claude/agents/wtfp/citation-formatter.md +0 -68
  858. package/vendors/claude/agents/wtfp/coherence-checker.md +0 -64
  859. package/vendors/claude/agents/wtfp/outliner.md +0 -73
  860. package/vendors/claude/agents/wtfp/plan-checker.md +0 -65
  861. package/vendors/claude/agents/wtfp/prose-polisher.md +0 -68
  862. package/vendors/claude/agents/wtfp/research-synthesizer.md +0 -70
  863. package/vendors/claude/agents/wtfp/section-planner.md +0 -70
  864. package/vendors/claude/agents/wtfp/section-reviewer.md +0 -65
  865. package/vendors/claude/agents/wtfp/section-writer.md +0 -71
  866. package/vendors/clio/.wtfp-generated.json +0 -936
  867. package/vendors/clio/actions/analyze-bib.json +0 -97
  868. package/vendors/clio/actions/audit-milestone.json +0 -63
  869. package/vendors/clio/actions/check-refs.json +0 -80
  870. package/vendors/clio/actions/create-poster.json +0 -59
  871. package/vendors/clio/actions/create-slides.json +0 -59
  872. package/vendors/clio/actions/export-latex.json +0 -65
  873. package/vendors/clio/actions/map-project.json +0 -57
  874. package/vendors/clio/actions/research-gap.json +0 -101
  875. package/vendors/clio/agents/wtfp-argument-verifier.md +0 -60
  876. package/vendors/clio/agents/wtfp-citation-expert.md +0 -61
  877. package/vendors/clio/agents/wtfp-citation-formatter.md +0 -61
  878. package/vendors/clio/agents/wtfp-coherence-checker.md +0 -59
  879. package/vendors/clio/agents/wtfp-outliner.md +0 -66
  880. package/vendors/clio/agents/wtfp-plan-checker.md +0 -60
  881. package/vendors/clio/agents/wtfp-prose-polisher.md +0 -61
  882. package/vendors/clio/agents/wtfp-research-synthesizer.md +0 -63
  883. package/vendors/clio/agents/wtfp-section-planner.md +0 -63
  884. package/vendors/clio/agents/wtfp-section-reviewer.md +0 -60
  885. package/vendors/clio/agents/wtfp-section-writer.md +0 -64
  886. package/vendors/clio/clio-coder-extension.yaml +0 -12
  887. package/vendors/clio/compatibility/action-availability.json +0 -323
  888. package/vendors/clio/fleets/wtfp-draft-review.md +0 -25
  889. package/vendors/clio/fleets/wtfp-plan-section.md +0 -23
  890. package/vendors/clio/prompts/wtfp/add-todo.md +0 -52
  891. package/vendors/clio/prompts/wtfp/analyze-bib.md +0 -15
  892. package/vendors/clio/prompts/wtfp/audit-milestone.md +0 -15
  893. package/vendors/clio/prompts/wtfp/check-refs.md +0 -15
  894. package/vendors/clio/prompts/wtfp/check-todos.md +0 -54
  895. package/vendors/clio/prompts/wtfp/checkpoint.md +0 -70
  896. package/vendors/clio/prompts/wtfp/contribute.md +0 -15
  897. package/vendors/clio/prompts/wtfp/create-outline.md +0 -69
  898. package/vendors/clio/prompts/wtfp/create-poster.md +0 -15
  899. package/vendors/clio/prompts/wtfp/create-slides.md +0 -15
  900. package/vendors/clio/prompts/wtfp/discuss-section.md +0 -60
  901. package/vendors/clio/prompts/wtfp/execute-outline.md +0 -70
  902. package/vendors/clio/prompts/wtfp/export-latex.md +0 -15
  903. package/vendors/clio/prompts/wtfp/help.md +0 -43
  904. package/vendors/clio/prompts/wtfp/insert-section.md +0 -56
  905. package/vendors/clio/prompts/wtfp/list-assumptions.md +0 -54
  906. package/vendors/clio/prompts/wtfp/map-project.md +0 -54
  907. package/vendors/clio/prompts/wtfp/new-paper.md +0 -65
  908. package/vendors/clio/prompts/wtfp/pause-writing.md +0 -58
  909. package/vendors/clio/prompts/wtfp/plan-milestone-gaps.md +0 -58
  910. package/vendors/clio/prompts/wtfp/plan-revision.md +0 -58
  911. package/vendors/clio/prompts/wtfp/plan-section.md +0 -72
  912. package/vendors/clio/prompts/wtfp/polish-prose.md +0 -58
  913. package/vendors/clio/prompts/wtfp/progress.md +0 -70
  914. package/vendors/clio/prompts/wtfp/quick.md +0 -58
  915. package/vendors/clio/prompts/wtfp/remove-section.md +0 -15
  916. package/vendors/clio/prompts/wtfp/report-bug.md +0 -15
  917. package/vendors/clio/prompts/wtfp/request-feature.md +0 -15
  918. package/vendors/clio/prompts/wtfp/research-gap.md +0 -15
  919. package/vendors/clio/prompts/wtfp/resume-writing.md +0 -68
  920. package/vendors/clio/prompts/wtfp/review-section.md +0 -63
  921. package/vendors/clio/prompts/wtfp/settings.md +0 -52
  922. package/vendors/clio/prompts/wtfp/submit-milestone.md +0 -68
  923. package/vendors/clio/prompts/wtfp/update.md +0 -15
  924. package/vendors/clio/prompts/wtfp/verify-work.md +0 -58
  925. package/vendors/clio/prompts/wtfp/write-section.md +0 -72
  926. package/vendors/clio/prompts/wtfp-add-todo.md +0 -52
  927. package/vendors/clio/prompts/wtfp-analyze-bib.md +0 -15
  928. package/vendors/clio/prompts/wtfp-audit-milestone.md +0 -15
  929. package/vendors/clio/prompts/wtfp-check-refs.md +0 -15
  930. package/vendors/clio/prompts/wtfp-check-todos.md +0 -54
  931. package/vendors/clio/prompts/wtfp-checkpoint.md +0 -70
  932. package/vendors/clio/prompts/wtfp-contribute.md +0 -15
  933. package/vendors/clio/prompts/wtfp-create-outline.md +0 -69
  934. package/vendors/clio/prompts/wtfp-create-poster.md +0 -15
  935. package/vendors/clio/prompts/wtfp-create-slides.md +0 -15
  936. package/vendors/clio/prompts/wtfp-discuss-section.md +0 -60
  937. package/vendors/clio/prompts/wtfp-execute-outline.md +0 -70
  938. package/vendors/clio/prompts/wtfp-export-latex.md +0 -15
  939. package/vendors/clio/prompts/wtfp-help.md +0 -43
  940. package/vendors/clio/prompts/wtfp-insert-section.md +0 -56
  941. package/vendors/clio/prompts/wtfp-list-assumptions.md +0 -54
  942. package/vendors/clio/prompts/wtfp-map-project.md +0 -54
  943. package/vendors/clio/prompts/wtfp-new-paper.md +0 -65
  944. package/vendors/clio/prompts/wtfp-pause-writing.md +0 -58
  945. package/vendors/clio/prompts/wtfp-plan-milestone-gaps.md +0 -58
  946. package/vendors/clio/prompts/wtfp-plan-revision.md +0 -58
  947. package/vendors/clio/prompts/wtfp-plan-section.md +0 -72
  948. package/vendors/clio/prompts/wtfp-polish-prose.md +0 -58
  949. package/vendors/clio/prompts/wtfp-progress.md +0 -70
  950. package/vendors/clio/prompts/wtfp-quick.md +0 -58
  951. package/vendors/clio/prompts/wtfp-remove-section.md +0 -15
  952. package/vendors/clio/prompts/wtfp-report-bug.md +0 -15
  953. package/vendors/clio/prompts/wtfp-request-feature.md +0 -15
  954. package/vendors/clio/prompts/wtfp-research-gap.md +0 -15
  955. package/vendors/clio/prompts/wtfp-resume-writing.md +0 -68
  956. package/vendors/clio/prompts/wtfp-review-section.md +0 -63
  957. package/vendors/clio/prompts/wtfp-settings.md +0 -52
  958. package/vendors/clio/prompts/wtfp-submit-milestone.md +0 -68
  959. package/vendors/clio/prompts/wtfp-update.md +0 -15
  960. package/vendors/clio/prompts/wtfp-verify-work.md +0 -58
  961. package/vendors/clio/prompts/wtfp-write-section.md +0 -72
  962. package/vendors/clio/repository/CONTRIBUTING.md +0 -183
  963. package/vendors/clio/roles/outliner.md +0 -68
  964. package/vendors/clio/skills/wtfp-deliver-research/references/actions.md +0 -117
  965. package/vendors/clio/skills/wtfp-research-literature/references/actions.md +0 -115
  966. package/vendors/clio/skills/wtfp-review-manuscript/references/actions.md +0 -112
  967. package/vendors/clio/skills/wtfp-start-project/references/actions.md +0 -80
  968. package/vendors/clio/tools/README.md +0 -13
  969. package/vendors/clio/tools/bibliography/analyze-impact.js +0 -109
  970. package/vendors/clio/tools/bibliography/format.js +0 -161
  971. package/vendors/clio/tools/bibliography/index.js +0 -104
  972. package/vendors/clio/tools/citation/fetch.js +0 -299
  973. package/vendors/clio/tools/citation/scholar-lookup.js +0 -188
  974. package/vendors/clio/workflows/analyze-bib.md +0 -33
  975. package/vendors/clio/workflows/audit-milestone.md +0 -32
  976. package/vendors/clio/workflows/check-refs.md +0 -32
  977. package/vendors/clio/workflows/create-outline.md +0 -33
  978. package/vendors/clio/workflows/create-poster.md +0 -32
  979. package/vendors/clio/workflows/create-slides.md +0 -32
  980. package/vendors/clio/workflows/export-latex.md +0 -32
  981. package/vendors/clio/workflows/help.md +0 -30
  982. package/vendors/clio/workflows/insert-section.md +0 -32
  983. package/vendors/clio/workflows/map-project.md +0 -32
  984. package/vendors/clio/workflows/new-paper.md +0 -37
  985. package/vendors/clio/workflows/remove-section.md +0 -32
  986. package/vendors/clio/workflows/research-gap.md +0 -32
  987. package/vendors/codex/plugins/wtf-p/.codex-plugin/plugin.json +0 -32
  988. package/vendors/codex/plugins/wtf-p/.wtfp-generated.json +0 -604
  989. package/vendors/codex/plugins/wtf-p/actions/analyze-bib.json +0 -97
  990. package/vendors/codex/plugins/wtf-p/actions/audit-milestone.json +0 -63
  991. package/vendors/codex/plugins/wtf-p/actions/check-refs.json +0 -80
  992. package/vendors/codex/plugins/wtf-p/actions/create-poster.json +0 -59
  993. package/vendors/codex/plugins/wtf-p/actions/create-slides.json +0 -59
  994. package/vendors/codex/plugins/wtf-p/actions/export-latex.json +0 -65
  995. package/vendors/codex/plugins/wtf-p/actions/map-project.json +0 -57
  996. package/vendors/codex/plugins/wtf-p/actions/research-gap.json +0 -101
  997. package/vendors/codex/plugins/wtf-p/compatibility/action-availability.json +0 -314
  998. package/vendors/codex/plugins/wtf-p/repository/CONTRIBUTING.md +0 -183
  999. package/vendors/codex/plugins/wtf-p/roles/outliner.md +0 -68
  1000. package/vendors/codex/plugins/wtf-p/skills/wtfp-deliver-research/references/actions.md +0 -117
  1001. package/vendors/codex/plugins/wtf-p/skills/wtfp-start-project/references/actions.md +0 -80
  1002. package/vendors/codex/plugins/wtf-p/tools/README.md +0 -13
  1003. package/vendors/codex/plugins/wtf-p/tools/bibliography/analyze-impact.js +0 -109
  1004. package/vendors/codex/plugins/wtf-p/tools/bibliography/format.js +0 -161
  1005. package/vendors/codex/plugins/wtf-p/tools/bibliography/index.js +0 -104
  1006. package/vendors/codex/plugins/wtf-p/tools/citation/fetch.js +0 -299
  1007. package/vendors/codex/plugins/wtf-p/tools/citation/scholar-lookup.js +0 -188
  1008. package/vendors/codex/plugins/wtf-p/workflows/analyze-bib.md +0 -33
  1009. package/vendors/codex/plugins/wtf-p/workflows/audit-milestone.md +0 -32
  1010. package/vendors/codex/plugins/wtf-p/workflows/check-refs.md +0 -32
  1011. package/vendors/codex/plugins/wtf-p/workflows/create-outline.md +0 -33
  1012. package/vendors/codex/plugins/wtf-p/workflows/create-poster.md +0 -32
  1013. package/vendors/codex/plugins/wtf-p/workflows/create-slides.md +0 -32
  1014. package/vendors/codex/plugins/wtf-p/workflows/export-latex.md +0 -32
  1015. package/vendors/codex/plugins/wtf-p/workflows/help.md +0 -30
  1016. package/vendors/codex/plugins/wtf-p/workflows/insert-section.md +0 -32
  1017. package/vendors/codex/plugins/wtf-p/workflows/map-project.md +0 -32
  1018. package/vendors/codex/plugins/wtf-p/workflows/new-paper.md +0 -37
  1019. package/vendors/codex/plugins/wtf-p/workflows/remove-section.md +0 -32
  1020. package/vendors/codex/plugins/wtf-p/workflows/research-gap.md +0 -32
  1021. package/vendors/copilot/plugins/wtf-p/.claude-plugin/plugin.json +0 -12
  1022. package/vendors/copilot/plugins/wtf-p/.wtfp-generated.json +0 -792
  1023. package/vendors/copilot/plugins/wtf-p/actions/analyze-bib.json +0 -97
  1024. package/vendors/copilot/plugins/wtf-p/actions/audit-milestone.json +0 -63
  1025. package/vendors/copilot/plugins/wtf-p/actions/check-refs.json +0 -80
  1026. package/vendors/copilot/plugins/wtf-p/actions/create-poster.json +0 -59
  1027. package/vendors/copilot/plugins/wtf-p/actions/create-slides.json +0 -59
  1028. package/vendors/copilot/plugins/wtf-p/actions/export-latex.json +0 -65
  1029. package/vendors/copilot/plugins/wtf-p/actions/map-project.json +0 -57
  1030. package/vendors/copilot/plugins/wtf-p/actions/research-gap.json +0 -101
  1031. package/vendors/copilot/plugins/wtf-p/agents/wtfp-argument-verifier.md +0 -65
  1032. package/vendors/copilot/plugins/wtf-p/agents/wtfp-citation-expert.md +0 -68
  1033. package/vendors/copilot/plugins/wtf-p/agents/wtfp-citation-formatter.md +0 -68
  1034. package/vendors/copilot/plugins/wtf-p/agents/wtfp-coherence-checker.md +0 -64
  1035. package/vendors/copilot/plugins/wtf-p/agents/wtfp-outliner.md +0 -73
  1036. package/vendors/copilot/plugins/wtf-p/agents/wtfp-plan-checker.md +0 -65
  1037. package/vendors/copilot/plugins/wtf-p/agents/wtfp-prose-polisher.md +0 -68
  1038. package/vendors/copilot/plugins/wtf-p/agents/wtfp-research-synthesizer.md +0 -70
  1039. package/vendors/copilot/plugins/wtf-p/agents/wtfp-section-planner.md +0 -70
  1040. package/vendors/copilot/plugins/wtf-p/agents/wtfp-section-reviewer.md +0 -65
  1041. package/vendors/copilot/plugins/wtf-p/agents/wtfp-section-writer.md +0 -71
  1042. package/vendors/copilot/plugins/wtf-p/commands/wtfp-add-todo.md +0 -59
  1043. package/vendors/copilot/plugins/wtf-p/commands/wtfp-analyze-bib.md +0 -17
  1044. package/vendors/copilot/plugins/wtf-p/commands/wtfp-audit-milestone.md +0 -17
  1045. package/vendors/copilot/plugins/wtf-p/commands/wtfp-check-refs.md +0 -17
  1046. package/vendors/copilot/plugins/wtf-p/commands/wtfp-check-todos.md +0 -58
  1047. package/vendors/copilot/plugins/wtf-p/commands/wtfp-checkpoint.md +0 -74
  1048. package/vendors/copilot/plugins/wtf-p/commands/wtfp-contribute.md +0 -17
  1049. package/vendors/copilot/plugins/wtf-p/commands/wtfp-create-outline.md +0 -74
  1050. package/vendors/copilot/plugins/wtf-p/commands/wtfp-create-poster.md +0 -17
  1051. package/vendors/copilot/plugins/wtf-p/commands/wtfp-create-slides.md +0 -17
  1052. package/vendors/copilot/plugins/wtf-p/commands/wtfp-discuss-section.md +0 -64
  1053. package/vendors/copilot/plugins/wtf-p/commands/wtfp-execute-outline.md +0 -75
  1054. package/vendors/copilot/plugins/wtf-p/commands/wtfp-export-latex.md +0 -17
  1055. package/vendors/copilot/plugins/wtf-p/commands/wtfp-help.md +0 -48
  1056. package/vendors/copilot/plugins/wtf-p/commands/wtfp-insert-section.md +0 -60
  1057. package/vendors/copilot/plugins/wtf-p/commands/wtfp-list-assumptions.md +0 -59
  1058. package/vendors/copilot/plugins/wtf-p/commands/wtfp-map-project.md +0 -61
  1059. package/vendors/copilot/plugins/wtf-p/commands/wtfp-new-paper.md +0 -69
  1060. package/vendors/copilot/plugins/wtf-p/commands/wtfp-pause-writing.md +0 -65
  1061. package/vendors/copilot/plugins/wtf-p/commands/wtfp-plan-milestone-gaps.md +0 -62
  1062. package/vendors/copilot/plugins/wtf-p/commands/wtfp-plan-revision.md +0 -62
  1063. package/vendors/copilot/plugins/wtf-p/commands/wtfp-plan-section.md +0 -77
  1064. package/vendors/copilot/plugins/wtf-p/commands/wtfp-polish-prose.md +0 -63
  1065. package/vendors/copilot/plugins/wtf-p/commands/wtfp-progress.md +0 -72
  1066. package/vendors/copilot/plugins/wtf-p/commands/wtfp-quick.md +0 -63
  1067. package/vendors/copilot/plugins/wtf-p/commands/wtfp-remove-section.md +0 -17
  1068. package/vendors/copilot/plugins/wtf-p/commands/wtfp-report-bug.md +0 -17
  1069. package/vendors/copilot/plugins/wtf-p/commands/wtfp-request-feature.md +0 -17
  1070. package/vendors/copilot/plugins/wtf-p/commands/wtfp-research-gap.md +0 -17
  1071. package/vendors/copilot/plugins/wtf-p/commands/wtfp-resume-writing.md +0 -72
  1072. package/vendors/copilot/plugins/wtf-p/commands/wtfp-review-section.md +0 -68
  1073. package/vendors/copilot/plugins/wtf-p/commands/wtfp-settings.md +0 -56
  1074. package/vendors/copilot/plugins/wtf-p/commands/wtfp-submit-milestone.md +0 -72
  1075. package/vendors/copilot/plugins/wtf-p/commands/wtfp-update.md +0 -17
  1076. package/vendors/copilot/plugins/wtf-p/commands/wtfp-verify-work.md +0 -62
  1077. package/vendors/copilot/plugins/wtf-p/commands/wtfp-write-section.md +0 -77
  1078. package/vendors/copilot/plugins/wtf-p/compatibility/action-availability.json +0 -314
  1079. package/vendors/copilot/plugins/wtf-p/repository/CONTRIBUTING.md +0 -183
  1080. package/vendors/copilot/plugins/wtf-p/roles/outliner.md +0 -68
  1081. package/vendors/copilot/plugins/wtf-p/skills/wtfp-deliver-research/references/actions.md +0 -117
  1082. package/vendors/copilot/plugins/wtf-p/skills/wtfp-start-project/references/actions.md +0 -80
  1083. package/vendors/copilot/plugins/wtf-p/tools/README.md +0 -13
  1084. package/vendors/copilot/plugins/wtf-p/tools/bibliography/analyze-impact.js +0 -109
  1085. package/vendors/copilot/plugins/wtf-p/tools/bibliography/format.js +0 -161
  1086. package/vendors/copilot/plugins/wtf-p/tools/bibliography/index.js +0 -104
  1087. package/vendors/copilot/plugins/wtf-p/tools/citation/fetch.js +0 -299
  1088. package/vendors/copilot/plugins/wtf-p/tools/citation/scholar-lookup.js +0 -188
  1089. package/vendors/copilot/plugins/wtf-p/workflows/analyze-bib.md +0 -33
  1090. package/vendors/copilot/plugins/wtf-p/workflows/audit-milestone.md +0 -32
  1091. package/vendors/copilot/plugins/wtf-p/workflows/check-refs.md +0 -32
  1092. package/vendors/copilot/plugins/wtf-p/workflows/create-outline.md +0 -33
  1093. package/vendors/copilot/plugins/wtf-p/workflows/create-poster.md +0 -32
  1094. package/vendors/copilot/plugins/wtf-p/workflows/create-slides.md +0 -32
  1095. package/vendors/copilot/plugins/wtf-p/workflows/export-latex.md +0 -32
  1096. package/vendors/copilot/plugins/wtf-p/workflows/help.md +0 -30
  1097. package/vendors/copilot/plugins/wtf-p/workflows/insert-section.md +0 -32
  1098. package/vendors/copilot/plugins/wtf-p/workflows/map-project.md +0 -32
  1099. package/vendors/copilot/plugins/wtf-p/workflows/new-paper.md +0 -37
  1100. package/vendors/copilot/plugins/wtf-p/workflows/remove-section.md +0 -32
  1101. package/vendors/copilot/plugins/wtf-p/workflows/research-gap.md +0 -32
  1102. package/vendors/gemini/agents/wtfp/argument-verifier.md +0 -141
  1103. package/vendors/gemini/agents/wtfp/citation-expert.md +0 -142
  1104. package/vendors/gemini/agents/wtfp/citation-formatter.md +0 -142
  1105. package/vendors/gemini/agents/wtfp/coherence-checker.md +0 -140
  1106. package/vendors/gemini/agents/wtfp/outliner.md +0 -147
  1107. package/vendors/gemini/agents/wtfp/plan-checker.md +0 -141
  1108. package/vendors/gemini/agents/wtfp/prose-polisher.md +0 -142
  1109. package/vendors/gemini/agents/wtfp/research-synthesizer.md +0 -144
  1110. package/vendors/gemini/agents/wtfp/section-planner.md +0 -144
  1111. package/vendors/gemini/agents/wtfp/section-reviewer.md +0 -141
  1112. package/vendors/gemini/agents/wtfp/section-writer.md +0 -145
  1113. /package/vendors/{clio → codex/plugins/wtfp}/actions/add-todo.json +0 -0
  1114. /package/vendors/{clio → codex/plugins/wtfp}/actions/check-todos.json +0 -0
  1115. /package/vendors/{clio → codex/plugins/wtfp}/actions/checkpoint.json +0 -0
  1116. /package/vendors/{clio → codex/plugins/wtfp}/actions/contribute.json +0 -0
  1117. /package/vendors/{clio → codex/plugins/wtfp}/actions/create-outline.json +0 -0
  1118. /package/vendors/{clio → codex/plugins/wtfp}/actions/discuss-section.json +0 -0
  1119. /package/vendors/{clio → codex/plugins/wtfp}/actions/execute-outline.json +0 -0
  1120. /package/vendors/{clio → codex/plugins/wtfp}/actions/help.json +0 -0
  1121. /package/vendors/{clio → codex/plugins/wtfp}/actions/insert-section.json +0 -0
  1122. /package/vendors/{clio → codex/plugins/wtfp}/actions/list-assumptions.json +0 -0
  1123. /package/vendors/{clio → codex/plugins/wtfp}/actions/new-paper.json +0 -0
  1124. /package/vendors/{clio → codex/plugins/wtfp}/actions/pause-writing.json +0 -0
  1125. /package/vendors/{clio → codex/plugins/wtfp}/actions/plan-milestone-gaps.json +0 -0
  1126. /package/vendors/{clio → codex/plugins/wtfp}/actions/plan-revision.json +0 -0
  1127. /package/vendors/{clio → codex/plugins/wtfp}/actions/plan-section.json +0 -0
  1128. /package/vendors/{clio → codex/plugins/wtfp}/actions/polish-prose.json +0 -0
  1129. /package/vendors/{clio → codex/plugins/wtfp}/actions/progress.json +0 -0
  1130. /package/vendors/{clio → codex/plugins/wtfp}/actions/quick.json +0 -0
  1131. /package/vendors/{clio → codex/plugins/wtfp}/actions/remove-section.json +0 -0
  1132. /package/vendors/{clio → codex/plugins/wtfp}/actions/report-bug.json +0 -0
  1133. /package/vendors/{clio → codex/plugins/wtfp}/actions/request-feature.json +0 -0
  1134. /package/vendors/{clio → codex/plugins/wtfp}/actions/resume-writing.json +0 -0
  1135. /package/vendors/{clio → codex/plugins/wtfp}/actions/review-section.json +0 -0
  1136. /package/vendors/{clio → codex/plugins/wtfp}/actions/settings.json +0 -0
  1137. /package/vendors/{clio → codex/plugins/wtfp}/actions/submit-milestone.json +0 -0
  1138. /package/vendors/{clio → codex/plugins/wtfp}/actions/update.json +0 -0
  1139. /package/vendors/{clio → codex/plugins/wtfp}/actions/verify-work.json +0 -0
  1140. /package/vendors/{clio → codex/plugins/wtfp}/actions/write-section.json +0 -0
  1141. /package/vendors/{clio → codex/plugins/wtfp}/aliases.lock.json +0 -0
  1142. /package/vendors/{clio → codex/plugins/wtfp}/catalog.json +0 -0
  1143. /package/vendors/{clio → codex/plugins/wtfp}/effects.json +0 -0
  1144. /package/vendors/codex/plugins/{wtf-p → wtfp}/fleets/wtfp-draft-review.json +0 -0
  1145. /package/vendors/codex/plugins/{wtf-p → wtfp}/fleets/wtfp-plan-section.json +0 -0
  1146. /package/vendors/{clio → codex/plugins/wtfp}/project/README.md +0 -0
  1147. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/checkpoint.schema.json +0 -0
  1148. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/common.schema.json +0 -0
  1149. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/config.schema.json +0 -0
  1150. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/decisions.schema.json +0 -0
  1151. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/evidence.schema.json +0 -0
  1152. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/manifest.schema.json +0 -0
  1153. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/outline.schema.json +0 -0
  1154. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/section.schema.json +0 -0
  1155. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/source.schema.json +0 -0
  1156. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/state.schema.json +0 -0
  1157. /package/vendors/{clio → codex/plugins/wtfp}/project/schemas/validation.schema.json +0 -0
  1158. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/checkpoint.json +0 -0
  1159. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/config.json +0 -0
  1160. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/decisions.json +0 -0
  1161. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/evidence.json +0 -0
  1162. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/manifest.json +0 -0
  1163. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/outline.json +0 -0
  1164. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/section.json +0 -0
  1165. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/source.json +0 -0
  1166. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/state.json +0 -0
  1167. /package/vendors/{clio → codex/plugins/wtfp}/project/templates/validation.json +0 -0
  1168. /package/vendors/{clio → codex/plugins/wtfp}/roles/argument-verifier.md +0 -0
  1169. /package/vendors/{clio → codex/plugins/wtfp}/roles/citation-expert.md +0 -0
  1170. /package/vendors/{clio → codex/plugins/wtfp}/roles/citation-formatter.md +0 -0
  1171. /package/vendors/{clio → codex/plugins/wtfp}/roles/coherence-checker.md +0 -0
  1172. /package/vendors/{clio → codex/plugins/wtfp}/roles/plan-checker.md +0 -0
  1173. /package/vendors/{clio → codex/plugins/wtfp}/roles/prose-polisher.md +0 -0
  1174. /package/vendors/{clio → codex/plugins/wtfp}/roles/research-synthesizer.md +0 -0
  1175. /package/vendors/{clio → codex/plugins/wtfp}/roles/section-planner.md +0 -0
  1176. /package/vendors/{clio → codex/plugins/wtfp}/roles/section-reviewer.md +0 -0
  1177. /package/vendors/{clio → codex/plugins/wtfp}/roles/section-writer.md +0 -0
  1178. /package/vendors/{clio → codex/plugins/wtfp}/schemas/action.schema.json +0 -0
  1179. /package/vendors/{clio → codex/plugins/wtfp}/schemas/aliases.schema.json +0 -0
  1180. /package/vendors/{clio → codex/plugins/wtfp}/schemas/catalog.schema.json +0 -0
  1181. /package/vendors/{clio → codex/plugins/wtfp}/schemas/effects.schema.json +0 -0
  1182. /package/vendors/{clio → codex/plugins/wtfp}/schemas/role-result.schema.json +0 -0
  1183. /package/vendors/{clio → codex/plugins/wtfp}/schemas/tools.schema.json +0 -0
  1184. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-deliver-research/SKILL.md +0 -0
  1185. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-deliver-research/agents/openai.yaml +0 -0
  1186. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-manage-project/SKILL.md +0 -0
  1187. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-manage-project/agents/openai.yaml +0 -0
  1188. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-manage-project/references/actions.md +0 -0
  1189. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-plan-section/SKILL.md +0 -0
  1190. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-plan-section/agents/openai.yaml +0 -0
  1191. /package/vendors/codex/plugins/{wtf-p → wtfp}/skills/wtfp-plan-section/references/actions.md +0 -0
  1192. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-research-literature/SKILL.md +0 -0
  1193. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-research-literature/agents/openai.yaml +0 -0
  1194. /package/vendors/codex/plugins/{wtf-p → wtfp}/skills/wtfp-research-literature/references/actions.md +0 -0
  1195. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-review-manuscript/SKILL.md +0 -0
  1196. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-review-manuscript/agents/openai.yaml +0 -0
  1197. /package/vendors/codex/plugins/{wtf-p → wtfp}/skills/wtfp-review-manuscript/references/actions.md +0 -0
  1198. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-start-project/SKILL.md +0 -0
  1199. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-start-project/agents/openai.yaml +0 -0
  1200. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-write-section/SKILL.md +0 -0
  1201. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-write-section/agents/openai.yaml +0 -0
  1202. /package/vendors/{clio → codex/plugins/wtfp}/skills/wtfp-write-section/references/actions.md +0 -0
  1203. /package/vendors/{clio → codex/plugins/wtfp}/tools/citation/rank.js +0 -0
  1204. /package/vendors/{clio → codex/plugins/wtfp}/tools/citation/semantic-scholar.js +0 -0
  1205. /package/vendors/{clio → codex/plugins/wtfp}/tools.json +0 -0
  1206. /package/vendors/{clio → codex/plugins/wtfp}/workflows/add-todo.md +0 -0
  1207. /package/vendors/{clio → codex/plugins/wtfp}/workflows/check-todos.md +0 -0
  1208. /package/vendors/{clio → codex/plugins/wtfp}/workflows/checkpoint.md +0 -0
  1209. /package/vendors/{clio → codex/plugins/wtfp}/workflows/contribute.md +0 -0
  1210. /package/vendors/{clio → codex/plugins/wtfp}/workflows/discuss-section.md +0 -0
  1211. /package/vendors/{clio → codex/plugins/wtfp}/workflows/execute-outline.md +0 -0
  1212. /package/vendors/{clio → codex/plugins/wtfp}/workflows/list-assumptions.md +0 -0
  1213. /package/vendors/{clio → codex/plugins/wtfp}/workflows/pause-writing.md +0 -0
  1214. /package/vendors/{clio → codex/plugins/wtfp}/workflows/plan-milestone-gaps.md +0 -0
  1215. /package/vendors/{clio → codex/plugins/wtfp}/workflows/plan-revision.md +0 -0
  1216. /package/vendors/{clio → codex/plugins/wtfp}/workflows/plan-section.md +0 -0
  1217. /package/vendors/{clio → codex/plugins/wtfp}/workflows/polish-prose.md +0 -0
  1218. /package/vendors/{clio → codex/plugins/wtfp}/workflows/progress.md +0 -0
  1219. /package/vendors/{clio → codex/plugins/wtfp}/workflows/quick.md +0 -0
  1220. /package/vendors/{clio → codex/plugins/wtfp}/workflows/report-bug.md +0 -0
  1221. /package/vendors/{clio → codex/plugins/wtfp}/workflows/request-feature.md +0 -0
  1222. /package/vendors/{clio → codex/plugins/wtfp}/workflows/resume-writing.md +0 -0
  1223. /package/vendors/{clio → codex/plugins/wtfp}/workflows/review-section.md +0 -0
  1224. /package/vendors/{clio → codex/plugins/wtfp}/workflows/settings.md +0 -0
  1225. /package/vendors/{clio → codex/plugins/wtfp}/workflows/submit-milestone.md +0 -0
  1226. /package/vendors/{clio → codex/plugins/wtfp}/workflows/update.md +0 -0
  1227. /package/vendors/{clio → codex/plugins/wtfp}/workflows/verify-work.md +0 -0
  1228. /package/vendors/{clio → codex/plugins/wtfp}/workflows/write-section.md +0 -0
  1229. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/add-todo.json +0 -0
  1230. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/check-todos.json +0 -0
  1231. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/checkpoint.json +0 -0
  1232. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/contribute.json +0 -0
  1233. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/create-outline.json +0 -0
  1234. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/discuss-section.json +0 -0
  1235. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/execute-outline.json +0 -0
  1236. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/help.json +0 -0
  1237. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/insert-section.json +0 -0
  1238. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/list-assumptions.json +0 -0
  1239. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/new-paper.json +0 -0
  1240. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/pause-writing.json +0 -0
  1241. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/plan-milestone-gaps.json +0 -0
  1242. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/plan-revision.json +0 -0
  1243. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/plan-section.json +0 -0
  1244. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/polish-prose.json +0 -0
  1245. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/progress.json +0 -0
  1246. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/quick.json +0 -0
  1247. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/remove-section.json +0 -0
  1248. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/report-bug.json +0 -0
  1249. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/request-feature.json +0 -0
  1250. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/resume-writing.json +0 -0
  1251. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/review-section.json +0 -0
  1252. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/settings.json +0 -0
  1253. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/submit-milestone.json +0 -0
  1254. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/update.json +0 -0
  1255. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/verify-work.json +0 -0
  1256. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/actions/write-section.json +0 -0
  1257. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/aliases.lock.json +0 -0
  1258. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/catalog.json +0 -0
  1259. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/effects.json +0 -0
  1260. /package/vendors/copilot/plugins/{wtf-p → wtfp}/fleets/wtfp-draft-review.json +0 -0
  1261. /package/vendors/copilot/plugins/{wtf-p → wtfp}/fleets/wtfp-plan-section.json +0 -0
  1262. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/README.md +0 -0
  1263. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/checkpoint.schema.json +0 -0
  1264. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/common.schema.json +0 -0
  1265. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/config.schema.json +0 -0
  1266. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/decisions.schema.json +0 -0
  1267. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/evidence.schema.json +0 -0
  1268. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/manifest.schema.json +0 -0
  1269. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/outline.schema.json +0 -0
  1270. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/section.schema.json +0 -0
  1271. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/source.schema.json +0 -0
  1272. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/state.schema.json +0 -0
  1273. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/schemas/validation.schema.json +0 -0
  1274. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/checkpoint.json +0 -0
  1275. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/config.json +0 -0
  1276. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/decisions.json +0 -0
  1277. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/evidence.json +0 -0
  1278. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/manifest.json +0 -0
  1279. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/outline.json +0 -0
  1280. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/section.json +0 -0
  1281. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/source.json +0 -0
  1282. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/state.json +0 -0
  1283. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/project/templates/validation.json +0 -0
  1284. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/argument-verifier.md +0 -0
  1285. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/citation-expert.md +0 -0
  1286. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/citation-formatter.md +0 -0
  1287. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/coherence-checker.md +0 -0
  1288. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/plan-checker.md +0 -0
  1289. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/prose-polisher.md +0 -0
  1290. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/research-synthesizer.md +0 -0
  1291. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/section-planner.md +0 -0
  1292. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/section-reviewer.md +0 -0
  1293. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/roles/section-writer.md +0 -0
  1294. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/schemas/action.schema.json +0 -0
  1295. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/schemas/aliases.schema.json +0 -0
  1296. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/schemas/catalog.schema.json +0 -0
  1297. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/schemas/effects.schema.json +0 -0
  1298. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/schemas/role-result.schema.json +0 -0
  1299. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/schemas/tools.schema.json +0 -0
  1300. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-deliver-research/SKILL.md +0 -0
  1301. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-deliver-research/agents/openai.yaml +0 -0
  1302. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-manage-project/SKILL.md +0 -0
  1303. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-manage-project/agents/openai.yaml +0 -0
  1304. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-manage-project/references/actions.md +0 -0
  1305. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-plan-section/SKILL.md +0 -0
  1306. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-plan-section/agents/openai.yaml +0 -0
  1307. /package/vendors/copilot/plugins/{wtf-p → wtfp}/skills/wtfp-plan-section/references/actions.md +0 -0
  1308. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-research-literature/SKILL.md +0 -0
  1309. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-research-literature/agents/openai.yaml +0 -0
  1310. /package/vendors/copilot/plugins/{wtf-p → wtfp}/skills/wtfp-research-literature/references/actions.md +0 -0
  1311. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-review-manuscript/SKILL.md +0 -0
  1312. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-review-manuscript/agents/openai.yaml +0 -0
  1313. /package/vendors/copilot/plugins/{wtf-p → wtfp}/skills/wtfp-review-manuscript/references/actions.md +0 -0
  1314. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-start-project/SKILL.md +0 -0
  1315. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-start-project/agents/openai.yaml +0 -0
  1316. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-write-section/SKILL.md +0 -0
  1317. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-write-section/agents/openai.yaml +0 -0
  1318. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/skills/wtfp-write-section/references/actions.md +0 -0
  1319. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/tools/citation/rank.js +0 -0
  1320. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/tools/citation/semantic-scholar.js +0 -0
  1321. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/tools.json +0 -0
  1322. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/add-todo.md +0 -0
  1323. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/check-todos.md +0 -0
  1324. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/checkpoint.md +0 -0
  1325. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/contribute.md +0 -0
  1326. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/discuss-section.md +0 -0
  1327. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/execute-outline.md +0 -0
  1328. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/list-assumptions.md +0 -0
  1329. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/pause-writing.md +0 -0
  1330. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/plan-milestone-gaps.md +0 -0
  1331. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/plan-revision.md +0 -0
  1332. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/plan-section.md +0 -0
  1333. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/polish-prose.md +0 -0
  1334. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/progress.md +0 -0
  1335. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/quick.md +0 -0
  1336. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/report-bug.md +0 -0
  1337. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/request-feature.md +0 -0
  1338. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/resume-writing.md +0 -0
  1339. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/review-section.md +0 -0
  1340. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/settings.md +0 -0
  1341. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/submit-milestone.md +0 -0
  1342. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/update.md +0 -0
  1343. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/verify-work.md +0 -0
  1344. /package/vendors/{codex/plugins/wtf-p → copilot/plugins/wtfp}/workflows/write-section.md +0 -0
  1345. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/add-todo.json +0 -0
  1346. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/check-todos.json +0 -0
  1347. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/checkpoint.json +0 -0
  1348. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/contribute.json +0 -0
  1349. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/create-outline.json +0 -0
  1350. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/discuss-section.json +0 -0
  1351. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/execute-outline.json +0 -0
  1352. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/help.json +0 -0
  1353. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/insert-section.json +0 -0
  1354. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/list-assumptions.json +0 -0
  1355. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/new-paper.json +0 -0
  1356. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/pause-writing.json +0 -0
  1357. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/plan-milestone-gaps.json +0 -0
  1358. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/plan-revision.json +0 -0
  1359. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/plan-section.json +0 -0
  1360. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/polish-prose.json +0 -0
  1361. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/progress.json +0 -0
  1362. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/quick.json +0 -0
  1363. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/remove-section.json +0 -0
  1364. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/report-bug.json +0 -0
  1365. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/request-feature.json +0 -0
  1366. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/resume-writing.json +0 -0
  1367. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/review-section.json +0 -0
  1368. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/settings.json +0 -0
  1369. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/submit-milestone.json +0 -0
  1370. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/update.json +0 -0
  1371. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/verify-work.json +0 -0
  1372. /package/vendors/{copilot/plugins/wtf-p → plugin}/actions/write-section.json +0 -0
  1373. /package/vendors/{copilot/plugins/wtf-p → plugin}/aliases.lock.json +0 -0
  1374. /package/vendors/{copilot/plugins/wtf-p → plugin}/catalog.json +0 -0
  1375. /package/vendors/{copilot/plugins/wtf-p → plugin}/effects.json +0 -0
  1376. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/README.md +0 -0
  1377. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/checkpoint.schema.json +0 -0
  1378. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/common.schema.json +0 -0
  1379. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/config.schema.json +0 -0
  1380. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/decisions.schema.json +0 -0
  1381. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/evidence.schema.json +0 -0
  1382. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/manifest.schema.json +0 -0
  1383. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/outline.schema.json +0 -0
  1384. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/section.schema.json +0 -0
  1385. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/source.schema.json +0 -0
  1386. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/state.schema.json +0 -0
  1387. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/schemas/validation.schema.json +0 -0
  1388. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/checkpoint.json +0 -0
  1389. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/config.json +0 -0
  1390. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/decisions.json +0 -0
  1391. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/evidence.json +0 -0
  1392. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/manifest.json +0 -0
  1393. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/outline.json +0 -0
  1394. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/section.json +0 -0
  1395. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/source.json +0 -0
  1396. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/state.json +0 -0
  1397. /package/vendors/{copilot/plugins/wtf-p → plugin}/project/templates/validation.json +0 -0
  1398. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/argument-verifier.md +0 -0
  1399. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/citation-expert.md +0 -0
  1400. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/citation-formatter.md +0 -0
  1401. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/coherence-checker.md +0 -0
  1402. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/plan-checker.md +0 -0
  1403. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/prose-polisher.md +0 -0
  1404. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/research-synthesizer.md +0 -0
  1405. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/section-planner.md +0 -0
  1406. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/section-reviewer.md +0 -0
  1407. /package/vendors/{copilot/plugins/wtf-p → plugin}/roles/section-writer.md +0 -0
  1408. /package/vendors/{copilot/plugins/wtf-p → plugin}/schemas/action.schema.json +0 -0
  1409. /package/vendors/{copilot/plugins/wtf-p → plugin}/schemas/aliases.schema.json +0 -0
  1410. /package/vendors/{copilot/plugins/wtf-p → plugin}/schemas/catalog.schema.json +0 -0
  1411. /package/vendors/{copilot/plugins/wtf-p → plugin}/schemas/effects.schema.json +0 -0
  1412. /package/vendors/{copilot/plugins/wtf-p → plugin}/schemas/role-result.schema.json +0 -0
  1413. /package/vendors/{copilot/plugins/wtf-p → plugin}/schemas/tools.schema.json +0 -0
  1414. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-deliver-research/SKILL.md +0 -0
  1415. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-deliver-research/agents/openai.yaml +0 -0
  1416. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-manage-project/SKILL.md +0 -0
  1417. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-manage-project/agents/openai.yaml +0 -0
  1418. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-manage-project/references/actions.md +0 -0
  1419. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-plan-section/SKILL.md +0 -0
  1420. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-plan-section/agents/openai.yaml +0 -0
  1421. /package/vendors/{clio → plugin}/skills/wtfp-plan-section/references/actions.md +0 -0
  1422. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-research-literature/SKILL.md +0 -0
  1423. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-research-literature/agents/openai.yaml +0 -0
  1424. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-review-manuscript/SKILL.md +0 -0
  1425. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-review-manuscript/agents/openai.yaml +0 -0
  1426. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-start-project/SKILL.md +0 -0
  1427. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-start-project/agents/openai.yaml +0 -0
  1428. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-write-section/SKILL.md +0 -0
  1429. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-write-section/agents/openai.yaml +0 -0
  1430. /package/vendors/{copilot/plugins/wtf-p → plugin}/skills/wtfp-write-section/references/actions.md +0 -0
  1431. /package/vendors/{copilot/plugins/wtf-p → plugin}/tools/citation/rank.js +0 -0
  1432. /package/vendors/{copilot/plugins/wtf-p → plugin}/tools/citation/semantic-scholar.js +0 -0
  1433. /package/vendors/{copilot/plugins/wtf-p → plugin}/tools.json +0 -0
  1434. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/add-todo.md +0 -0
  1435. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/check-todos.md +0 -0
  1436. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/checkpoint.md +0 -0
  1437. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/contribute.md +0 -0
  1438. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/discuss-section.md +0 -0
  1439. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/execute-outline.md +0 -0
  1440. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/list-assumptions.md +0 -0
  1441. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/pause-writing.md +0 -0
  1442. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/plan-milestone-gaps.md +0 -0
  1443. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/plan-revision.md +0 -0
  1444. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/plan-section.md +0 -0
  1445. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/polish-prose.md +0 -0
  1446. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/progress.md +0 -0
  1447. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/quick.md +0 -0
  1448. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/report-bug.md +0 -0
  1449. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/request-feature.md +0 -0
  1450. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/resume-writing.md +0 -0
  1451. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/review-section.md +0 -0
  1452. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/settings.md +0 -0
  1453. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/submit-milestone.md +0 -0
  1454. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/update.md +0 -0
  1455. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/verify-work.md +0 -0
  1456. /package/vendors/{copilot/plugins/wtf-p → plugin}/workflows/write-section.md +0 -0
package/README.md CHANGED
@@ -8,305 +8,187 @@
8
8
 
9
9
  Also: Proposal. Presentation. Poster.
10
10
 
11
- Portable, evidence-grounded academic workflows for modern coding agents.
11
+ Human-guided research and writing workflows for AI coding agents.
12
12
 
13
13
  </div>
14
14
 
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.
15
+ WTF-P gives your coding agent one portable academic method: interview the
16
+ author, map the evidence, record decisions, build an outline, plan and draft
17
+ one section at a time, review it, and resume later from durable state. You keep
18
+ the scientific judgment. The agent keeps the bookkeeping and does bounded jobs.
16
19
 
17
- Version `0.6.0-rc.2` is the corrective release candidate for the modernized agent platform. One canonical protocol generates native resources for Clio Coder, Claude Code, Codex, GitHub Copilot CLI, OpenCode, Antigravity CLI, and Gemini CLI; RC2 tightens decision fidelity and durable write/review/pause/resume handling after supervised local-model testing.
20
+ It ships as one canonical [Agent Plugins 1.0.0](https://agent-plugins.org)
21
+ bundle that a deterministic compiler projects into a native package for seven
22
+ coding-agent hosts. Version `0.7.0` is the current stable release and is
23
+ what npm `latest` resolves to; v0.5 remains installable by explicit version.
18
24
 
19
- ## Quick start
25
+ **Optional CiteNexus research backend (0.7.0):** `citation-search --backend=cite-nexus`
26
+ queries Crossref, DataCite and Europe PMC by default, plus explicitly selected academic
27
+ APIs, through the [CiteNexus](docs/CITE_NEXUS.md) MCP server. Results keep their source
28
+ evidence and stay candidates. CiteNexus is a separate Python package
29
+ (`pip install cite-nexus-mcp==0.2.0`) that WTF-P never installs for you. Research
30
+ actions reach it on Clio Coder and Claude Code; the other hosts keep their existing
31
+ capability blockers.
20
32
 
21
- Install explicitly for the agent you use:
33
+ ## Install on your agent
22
34
 
23
- ```bash
24
- npx wtf-p@next install clio --advanced
25
- npx wtf-p@next install claude --advanced
26
- npx wtf-p@next install codex --advanced
27
- npx wtf-p@next install copilot --advanced
28
- npx wtf-p@next install opencode --advanced
29
- npx wtf-p@next install antigravity --advanced
30
- npx wtf-p@next install gemini --advanced
31
- ```
35
+ Two routes. Pick one per host; both register the same plugin, so do not use
36
+ both on the same profile.
32
37
 
33
- An interactive terminal can also run `npx wtf-p@next` and choose a target. A noninteractive bare invocation refuses to write anything; it requires an explicit target or scope.
38
+ **From this repository, with the host's own plugin manager.** Claude Code,
39
+ Codex, and Copilot CLI read a marketplace straight from the Git repository and
40
+ load the committed envelope, so no installer runs:
34
41
 
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:
38
-
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
42
+ ```bash
43
+ claude plugin marketplace add akougkas/wtf-p && claude plugin install wtfp@wtf-p
44
+ codex plugin marketplace add akougkas/wtf-p && codex plugin add wtfp@wtf-p
45
+ copilot plugin marketplace add akougkas/wtf-p && copilot plugin install wtfp@wtf-p
45
46
  ```
46
47
 
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. WTF-P `0.6.0-rc.1` was published to npm under
111
- the `next` tag on 2026-08-29; each later candidate remains a separate operator
112
- publication action.
113
-
114
- The first retained local-model lifecycle reading used Clio 0.3.8 with
115
- `dynamo/qwen3.8-27b`. Both native fleet contracts validated, but the lifecycle
116
- did not pass: high effort timed out before writing, and an effort-off retry
117
- stopped after `new-paper` because the model attempted a denied shell call and
118
- made 5,600 section words disagree with the 6,000-word outline target. The five
119
- records were individually schema-valid. See the
120
- [blocked evidence](evaluation/v1/evidence/clio-dynamo-lifecycle-blocked/README.md);
121
- the remaining lifecycle and routing roadmap items stay open. That reading
122
- binds the earlier WTF-P source `6b58b298`; it predates later remediation for
123
- exact outline totals and direct-tool use, and is not a behavioral reading of
124
- the later source revisions.
125
-
126
- Later post-remediation readings are retained separately because they bind
127
- different WTF-P commits. At `0245818`, exact `/wtfp:new-paper` arguments arrived
128
- but the model listed excluded `.git` metadata, read an absolute host Clio
129
- documentation path, looped on agent discovery, and produced no planning
130
- records. Those accesses were read-only; zero mutating and network effects were
131
- applied. At `b4f0543`, the plan/check fleet completed structurally but its
132
- semantic checks were ungrounded. The `cbba38c` manuscript-path projection
133
- observation placed draft/review manuscript and summary files in the correct
134
- roots with no boundary violation, but drafted without the required approved
135
- plan, left portable state unreconciled, and failed its word target. See the
136
- [retained RC readings](evaluation/v1/evidence/clio-dynamo-rc-readings/README.md).
137
- Neither the full lifecycle nor a semantic fleet pass is claimed.
138
-
139
- A final current-source Dynamo reading at `bf50e23` created exactly five
140
- initialization records and passed literal schema validation 5/5. It still
141
- failed the release gate: the outline placed a dependency in the same wave, and
142
- the model made three successful shell calls plus ten denied shell retries
143
- despite an explicit no-shell policy. The operator stopped the run before
144
- `map-project`; no terminal receipt or trustworthy numeric cost exists. See the
145
- [current-source blocked evidence](evaluation/v1/evidence/clio-dynamo-current-source-blocked/README.md).
146
-
147
- The later operator-observed NSF 25-531 toy UAT used Clio Coder 0.3.8 and
148
- Dynamo `qwen3.8-27b-dynamo` with thinking off in a disposable offline profile.
149
- It continued an already mapped fixture through outline, discussion, plan,
150
- write, review, and durable pause for one section during defect-finding before
151
- the final RC2 write/review/pause hardening. The provisional section's persisted
152
- writer/state count was 1,019 whitespace-delimited words; the independent
153
- reviewer used a different tokenizer and counted 1,026. Its review retained four
154
- author-accepted warning items, and 25/25 portable JSON records passed
155
- independent schema validation.
156
- The first genuinely fresh-process resume attempt did not pass: the pre-
157
- hardening workflow skipped required durable reads and the author gate and
158
- described mutations that never occurred. With the regenerated RC2 bundle, a
159
- new process read the durable records, invoked the real Clio `ask_user`
160
- interview, waited for the author choice, resolved the checkpoint, advanced
161
- state to revision 7/active while preserving phase `reviewing`, and read both
162
- records back; independent validation remained 25/25. This is a corrected
163
- one-section resumption observation, not an end-to-end rerun of the final RC2
164
- write/review/pause contracts, full proposal, completed research, submission-
165
- readiness, safety-certification, or improved-writing claim. The final contracts
166
- have deterministic regression evidence; only resume/progress received the
167
- post-hardening model rerun.
168
-
169
- ## The paper lifecycle
170
-
171
- WTF-P keeps the human in control while making the repeatable work deterministic:
172
-
173
- 1. `/wtfp:new-paper` captures research questions, intended contribution, evidence, audience, venue, and constraints.
174
- 2. `/wtfp:map-project` indexes existing drafts, sources, data, figures, and decisions.
175
- 3. `/wtfp:create-outline` turns the argument into sections, dependencies, and word budgets.
176
- 4. `/wtfp:research-gap` and `/wtfp:analyze-bib` define the canonical research methods, but current adapters return `WTFP_ACTION_UNAVAILABLE` until exact logical-tool bindings exist. Available project actions can map supplied sources; placeholders must never be represented as completed research.
177
- 5. `/wtfp:plan-section` creates a traceable section plan and can send it through an independent plan checker.
178
- 6. `/wtfp:write-section` drafts from the approved plan in bounded context.
179
- 7. `/wtfp:review-section`, `/wtfp:verify-work`, and `/wtfp:polish-prose` check argument coverage, evidence, coherence, venue requirements, and prose quality.
180
- 8. `/wtfp:audit-milestone`, `/wtfp:export-latex`, `/wtfp:create-slides`, and `/wtfp:create-poster` prepare deliverables.
181
-
182
- Use the native help route—`/wtfp:help` on slash-command clients—to inspect all
183
- 36 stable action contracts. Executable availability is target-specific and
184
- recorded in the generated compatibility manifest.
185
-
186
- ## What became portable
187
-
188
- The canonical source lives under `protocol/` and has four parts:
189
-
190
- - 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.
191
- - Seven standard Agent Skills for starting a project, literature research, section planning, section writing, manuscript review, project management, and research delivery.
192
- - Thirty-six semantic action contracts declaring inputs, reads, outputs, specialist delegation, tools, effects, and approval boundaries.
193
- - Eleven host-neutral specialist roles with strict mutation or verification result contracts.
194
-
195
- 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.
196
-
197
- ## Project state
198
-
199
- New workflows use a versioned `.planning/` directory. Its records are JSON-schema validated and designed to survive movement between clients:
200
-
201
- ```text
202
- .planning/
203
- ├── project.json
204
- ├── config.json
205
- ├── state.json
206
- ├── decisions.json
207
- ├── structure/outline.json
208
- ├── sources/*.json
209
- ├── evidence/*.json
210
- ├── sections/*/section.json
211
- ├── checkpoints/*.json
212
- └── validations/*.json
213
- ```
48
+ Codex still needs the eleven role agents copied to `$CODEX_HOME/agents/`,
49
+ because Codex plugins do not carry agents; the npm installer does that for
50
+ you, the Git route does not.
214
51
 
215
- 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.
52
+ **From npm, with the WTF-P installer.** You need Node.js 20 or newer and one
53
+ supported host. Run one line. The installer publishes the generated package
54
+ into that host's own configuration root, records an exact-file receipt, and
55
+ registers it with the host's native plugin lifecycle where one exists.
216
56
 
217
- ## Installation safety
57
+ | Host | Install | Native registration the installer performs | Verified with |
58
+ | --- | --- | --- | --- |
59
+ | Clio Coder (0.4.7 or newer) | `npx --yes --package=wtf-p@0.7.0 -- wtf-p install clio` | `clio-coder library install <staged-bundle> --user`, then `clio-coder library inspect wtfp --user --json` | 0.4.9 (local build) |
60
+ | Claude Code | `npx --yes --package=wtf-p@0.7.0 -- wtf-p install claude` | `claude plugin marketplace add <root>/marketplaces/wtfp --scope user`, then `claude plugin install wtfp@wtfp --scope user -y` | 2.1.274 |
61
+ | Codex | `npx --yes --package=wtf-p@0.7.0 -- wtf-p install codex` | `codex plugin marketplace add <root>/marketplaces/wtfp`, then `codex plugin add wtfp@wtfp --json`; agents copied to `$CODEX_HOME/agents/` | 0.153.3 |
62
+ | GitHub Copilot CLI | `npx --yes --package=wtf-p@0.7.0 -- wtf-p install copilot` | `copilot plugin marketplace add <root>/marketplaces/wtfp`, then `copilot plugin install wtfp@wtfp` | 1.0.85 |
63
+ | OpenCode | `npx --yes --package=wtf-p@0.7.0 -- wtf-p install opencode` | Files under the OpenCode config root; OpenCode discovers them by directory | 1.18.31 |
64
+ | Antigravity CLI | `npx --yes --package=wtf-p@0.7.0 -- wtf-p install antigravity` | `agy plugin install <root>/sources/wtfp` | 1.2.5 |
65
+ | Gemini CLI | `npx --yes --package=wtf-p@0.7.0 -- wtf-p install gemini` | Files under `<root>/extensions/wtfp`; Gemini discovers the extension by directory | 0.60.0 |
218
66
 
219
- The `0.6` installer is an ownership-aware transaction engine:
67
+ "Verified" means native discovery in a disposable profile on this exact
68
+ envelope, with the commands recorded in
69
+ [Host capabilities](docs/HOST_CAPABILITIES.md). Clio Coder is published as
70
+ `@iowarp/clio-coder`; 0.4.7 and newer carry the plugin engine WTF-P uses.
220
71
 
221
- - It rejects filesystem roots, the home directory itself, the repository root, traversal, and symlink escapes.
222
- - It snapshots package sources and refuses source or destination path races.
223
- - It publishes files atomically where possible and rolls back a failed transaction.
224
- - It compensates native marketplace/plugin registration if a later activation step fails.
225
- - It does not register a partial adapter when any conflicting file was preserved.
226
- - It records only files it actually wrote, with SHA-256 hashes, adapter-contract v1, and generator-v4 metadata, in a v2 receipt.
227
- - Reinstallation cannot claim ownership of files it skipped.
228
- - Uninstall removes exact unchanged owned files. It preserves modified files and unrelated siblings by default.
229
- - Dry runs are byte-preserving.
72
+ Keep the explicit `--package=wtf-p@<version> -- wtf-p` form. On a workstation
73
+ with WTF-P 0.5 installed globally, the shorter `npx wtf-p@<version>` can run
74
+ the old executable instead.
230
75
 
231
- Use a custom isolated client root when evaluating an adapter:
76
+ ## Sixty-second start
232
77
 
233
78
  ```bash
234
- CODEX_HOME=/tmp/wtfp-codex npx wtf-p install codex --advanced
235
- CLIO_CODER_CONFIG_DIR=/tmp/wtfp-clio npx wtf-p install clio --advanced
79
+ npx --yes --package=wtf-p@0.7.0 -- wtf-p install clio
80
+ cd /path/to/your-paper-or-proposal
81
+ clio-coder --autonomy suggest
236
82
  ```
237
83
 
238
- Inspect or remove an installation with:
239
-
240
- ```bash
241
- npx wtf-p status
242
- npx wtf-p doctor
243
- npx wtf-p uninstall --clio --dry-run
244
- npx wtf-p uninstall --clio --yes
84
+ ```text
85
+ /wtfp:help
86
+ /wtfp:new-paper I am preparing a research proposal on reproducible scientific workflows. Interview me before deciding the scope, claims, evaluation, team, budget, or timeline. Use only the evidence I provide and mark unknowns instead of inventing citations.
245
87
  ```
246
88
 
247
- The legacy `--global`, `--local`, `--claude`, `--gemini`, and `--opencode` selectors remain compatibility aliases during the release-candidate cycle.
89
+ The agent interviews you, previews the five initial project records, and waits
90
+ for your approval before writing anything. Every host uses the same
91
+ `/wtfp:<action>` names except Codex, which exposes the same actions through
92
+ seven native skills: mention `$wtfp-start-project` and ask for the
93
+ `new-paper` action with the same brief.
248
94
 
249
- ## Developing adapters
95
+ A normal project then moves one action at a time:
250
96
 
251
- Edit canonical resources under `protocol/`, then regenerate every native projection:
97
+ ```text
98
+ /wtfp:map-project inventory the materials you supplied
99
+ /wtfp:create-outline argument, dependencies, exact word budget, for approval
100
+ /wtfp:discuss-section capture your intent for one section
101
+ /wtfp:plan-section one checked, executable plan
102
+ /wtfp:write-section draft only from the approved plan and evidence
103
+ /wtfp:review-section independent review, findings recorded, nothing rewritten
104
+ /wtfp:pause-writing durable handoff; quit the client
105
+ /wtfp:resume-writing a fresh process picks up from disk
106
+ ```
252
107
 
253
- ```bash
254
- npm run build:adapters
255
- npm run check:adapters
256
- npm test
257
- npm run test:integration
108
+ See [Getting started](docs/GETTING_STARTED.md) for each host's launch command,
109
+ Codex skill selectors, isolated evaluation profiles, and troubleshooting.
110
+
111
+ ## What it writes
112
+
113
+ Four document types share the same action set and differ in their scaffold:
114
+
115
+ | Workflow | Scaffold | Entry actions |
116
+ | --- | --- | --- |
117
+ | Paper (article, conference, review, thesis chapter) | `protocol/templates/paper-outline.md` | `new-paper`, `create-outline` |
118
+ | Grant proposal (solicitation-driven) | `protocol/templates/grant-proposal-outline.md` | `new-paper`, `create-outline`; see the [proposal workflow](docs/PROPOSAL_WORKFLOW.md) |
119
+ | Poster | `protocol/templates/poster.md` | `create-poster` |
120
+ | Presentation | `protocol/templates/slides.md` | `create-slides` |
121
+
122
+ The catalog has 36 stable actions across seven skills: start a project,
123
+ research the literature, plan a section, write a section, review the
124
+ manuscript, manage the project, and deliver. Availability is decided per host
125
+ by the generated `compatibility/action-availability.json`, and an unavailable
126
+ action returns `WTFP_ACTION_UNAVAILABLE` instead of improvising:
127
+
128
+ | Host | Available | Fails closed |
129
+ | --- | ---: | --- |
130
+ | Clio Coder, Claude Code | 31 / 36 | `contribute`, `report-bug`, `request-feature` (no `external.issue` binding); `remove-section` (no `filesystem.delete`); `update` (no `package.update`) |
131
+ | Codex, Copilot CLI, OpenCode, Antigravity, Gemini | 26 / 36 | the five above plus `research-gap`, `analyze-bib`, `check-refs`, `audit-milestone`, `export-latex`, whose `tool.execute` effect is bound only to Clio `bash` and Claude `Bash` |
132
+ | Copilot cloud projection (`.github`) | 5 / 36 | everything that needs an explicit approval gate |
133
+
134
+ Where the research routes are available, `tool.execute` authorizes exactly one
135
+ command, the bundled `tools/wtfp-tool.js` dispatcher over seven bibliography
136
+ and citation tools. Run it with `--offline` until you approve network use.
137
+
138
+ ## What it will not do
139
+
140
+ - It does not write without you. Outline, plan, write, review, and delivery
141
+ gates are on by default, and a gate is crossed only through the host's real
142
+ interaction tool, never by silence or a model's own recommendation.
143
+ - It does not invent evidence. Sources and evidence are separate records with
144
+ provenance; a missing citation stays missing.
145
+ - It does not render or compile. `create-poster`, `create-slides`, and
146
+ `export-latex` emit source and hand you the render or compile command.
147
+ - It does not submit. `submit-milestone` writes a local archive, not a
148
+ submission to a funder, journal, or service.
149
+ - It does not touch Git or publish. No WTF-P action initializes, commits,
150
+ branches, pushes, tags, or publishes as a side effect.
151
+ - It does not claim more than it has observed. Native discovery is verified
152
+ per host; model-backed lifecycle evidence is partial and listed in
153
+ [Compatibility](docs/COMPATIBILITY.md).
154
+
155
+ ## How it is built
156
+
157
+ One protocol, one compiler, seven projections. Humans edit `protocol/`; the
158
+ compiler owns every file under `vendors/`, authenticates each envelope with a
159
+ SHA-256 inventory, and fails closed when a host cannot bind a capability an
160
+ action requires.
161
+
162
+ ```mermaid
163
+ flowchart LR
164
+ P["protocol/<br/>36 action contracts, 36 workflows,<br/>11 roles, 7 skills, .planning v1 schemas,<br/>templates, tools.json"] --> C["adapter compiler<br/>bin/lib/adapter-compiler.js"]
165
+ C --> B["vendors/plugin<br/>canonical Agent Plugins 1.0.0 bundle<br/>(Clio route)"]
166
+ C --> H["vendors/claude · codex · copilot ·<br/>opencode · antigravity · gemini<br/>native projections"]
167
+ B --> I["npx wtf-p install &lt;host&gt;<br/>exact-file receipts, native registration"]
168
+ H --> I
258
169
  ```
259
170
 
260
- `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.
261
-
262
- The Clio reference integration is merged into Clio Coder `v0.3.8` at
263
- `9b7b80cc`. It adds recursive namespaced extension prompts, extension-owned
264
- agents and fleets, same-extension skill binding, contained `${extensionRoot}`
265
- resource resolution, exact operator-argument preservation, preservation of
266
- nested template `state.json` resources, and extension-aware fleet preflight.
267
- Effective package discovery certifies 72 prompts (36 nested and 36 flat), 11
268
- agents, seven skills, two fleets, and zero diagnostics. Of those prompts, 48
269
- aliases represent 24 adapter-available semantic actions and 24 aliases are the nested
270
- and flat forms of 12 deterministic refusal routes. WTF-P capability-probes that
271
- surface because Clio currently records, but does not enforce,
272
- `compatibility.clio`. The generated fleet contracts use directory boundaries
273
- (`.planning/` and `paper/`) so nested writes are authorized without broadening
274
- the worker sandbox.
275
-
276
- The two Clio fleets are operator-invoked native primitives, not implicit
277
- routes behind `/wtfp:*`. Use
278
- `clio-coder fleet run wtfp-plan-section --var section=<id>` or
279
- `clio-coder fleet run wtfp-draft-review --var section=<id>` when their narrower
280
- specialist contracts are appropriate; the slash-command orchestrator remains
281
- responsible for approval and portable-state reconciliation around those worker
282
- steps.
283
-
284
- ## Design principles
285
-
286
- - Evidence before eloquence: a fluent paragraph is not a substitute for a supported claim.
287
- - Specification before drafting: author intent and acceptance criteria remain explicit.
288
- - Portable semantics, native ergonomics: share the method while respecting each client's real plugin model.
289
- - Bounded delegation: specialists receive the minimum context and authority their task requires.
290
- - Human approval at consequential boundaries: deletion, commits, merges, package updates, and external issue creation remain explicit effects.
291
- - Reversible installation: WTF-P never treats an agent's whole configuration directory as its property.
292
-
293
- ## Origin
294
-
295
- 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.
296
-
297
- ## Links
298
-
299
- - [Changelog](CHANGELOG.md)
300
- - [Modernization architecture](docs/agent-platform-modernization.md)
301
- - [Compatibility evidence](docs/COMPATIBILITY.md)
302
- - [Behavioral evaluation methodology](evaluation/README.md)
303
- - [Tool execution and MCP decision](docs/adr/0001-hybrid-tool-execution.md)
304
- - [v0.5 → v0.6 migration guide](docs/MIGRATION_V05_TO_V06.md)
305
- - [Build and release](docs/BUILD_AND_RELEASE.md)
306
- - [Contributing](CONTRIBUTING.md)
307
- - [Roadmap](ROADMAP.md)
308
- - [License](LICENSE)
309
- - [GitHub](https://github.com/akougkas/wtf-p)
171
+ Project memory lives in the paper directory: control records under
172
+ `.planning/` (project, config, state, decisions, outline, sources, evidence,
173
+ sections, checkpoints, validations) and manuscript artifacts under `paper/`.
174
+ Another process, or another supported host, resumes from those files rather
175
+ than from chat history.
176
+
177
+ ## Learn more
178
+
179
+ - [Documentation index](docs/README.md)
180
+ - [Getting started](docs/GETTING_STARTED.md)
181
+ - [Host capabilities and verification commands](docs/HOST_CAPABILITIES.md)
182
+ - [Proposal workflow](docs/PROPOSAL_WORKFLOW.md)
183
+ - [Migrating from v0.5](docs/MIGRATION_V05_TO_V06.md)
184
+ - [Compatibility and evidence](docs/COMPATIBILITY.md)
185
+ - [Packaging and the Clio plugin lifecycle](docs/AGENT_PLUGIN.md)
186
+ - [Building and releasing](docs/BUILD_AND_RELEASE.md)
187
+ - [Changelog](CHANGELOG.md) and [Contributing](CONTRIBUTING.md)
188
+
189
+ WTF-P was built at the [Gnosis Research Center](https://grc.iit.edu/) at
190
+ Illinois Tech for research teams with papers to publish, grants to win, and no
191
+ time for writer's block.
310
192
 
311
193
  <div align="center">
312
194
 
@@ -56,6 +56,10 @@ function getVendorDir(runtime, explicitConfigDir) {
56
56
  : resolvedEnvironmentRoot;
57
57
  }
58
58
 
59
+ if (typeof vendorConfig.resolveConfigRoot === 'function') {
60
+ return expandTilde(vendorConfig.resolveConfigRoot(process.env));
61
+ }
62
+
59
63
  return path.join(os.homedir(), vendorConfig.defaultDir);
60
64
  }
61
65
 
@@ -260,7 +264,7 @@ async function installWithConflictResolution(files, pathPrefix, targetDir, optio
260
264
  if (file.name === 'plugin.json' && file.componentId === 'plugin' && exists) {
261
265
  try {
262
266
  const existing = JSON.parse(existingSnapshot.bytes.toString('utf8'));
263
- if (existing.name && existing.name !== 'wtf-p' && existing.name !== 'write-the-f-paper') {
267
+ if (existing.name && existing.name !== 'wtfp' && existing.name !== 'wtf-p' && existing.name !== 'write-the-f-paper') {
264
268
  out.verbose(` ${c.yellow('!')} ${c.dim(relDest)} belongs to another plugin — skipped`);
265
269
  stats.skipped++;
266
270
  continue;
@@ -604,8 +608,10 @@ async function install(runtime, isUpdate, options, pkg) {
604
608
  const isGlobal = runtime !== 'claude-local';
605
609
  const locationLabel = getPathLabel(targetDir, isGlobal);
606
610
 
607
- const configuredByEnvironment = typeof process.env[vendorConfig.configDirEnv] === 'string' &&
608
- process.env[vendorConfig.configDirEnv].trim().length > 0;
611
+ const configuredByEnvironment = (typeof process.env[vendorConfig.configDirEnv] === 'string' &&
612
+ process.env[vendorConfig.configDirEnv].trim().length > 0) ||
613
+ (typeof vendorConfig.resolveConfigRoot === 'function' &&
614
+ path.resolve(expandTilde(vendorConfig.resolveConfigRoot(process.env))) !== path.join(os.homedir(), vendorConfig.defaultDir));
609
615
  const pathPrefix = isGlobal
610
616
  ? ((explicitConfigDir || configuredByEnvironment)
611
617
  ? `${targetDir}${path.sep}`
@@ -728,7 +734,9 @@ async function install(runtime, isUpdate, options, pkg) {
728
734
  if (stats.writtenFiles.length > 0) {
729
735
  writeVersionFile(targetDir, pkg.version, stats.writtenFiles, {
730
736
  runtime: vendorKey,
731
- scope: isGlobal ? (explicitConfigDir ? 'custom' : 'user') : 'project',
737
+ scope: vendorKey === 'clio' && targetDir === path.join(process.cwd(), '.clio-coder')
738
+ ? 'project'
739
+ : isGlobal ? (explicitConfigDir ? 'custom' : 'user') : 'project',
732
740
  skipped: stats.skipped,
733
741
  selectionComplete: onlyInstall === 'all',
734
742
  adapterVersion: ADAPTER_CONTRACT_VERSION,
@@ -737,6 +745,10 @@ async function install(runtime, isUpdate, options, pkg) {
737
745
  });
738
746
  }
739
747
  stats.commit();
748
+ if (typeof nativeActivation.commit === 'function') {
749
+ const warning = nativeActivation.commit();
750
+ if (warning) out.warn(warning);
751
+ }
740
752
  } catch (error) {
741
753
  const nativeRollbackFailures = Array.isArray(error.nativeRollbackFailures)
742
754
  ? [...error.nativeRollbackFailures]
@@ -768,12 +780,21 @@ async function install(runtime, isUpdate, options, pkg) {
768
780
  }
769
781
 
770
782
  if (nativeRequested) {
783
+ if (nativeActivation.notice && !hasQuiet) out.warn(nativeActivation.notice);
771
784
  if (nativeActivation.status === 'unavailable' && !hasQuiet) {
772
785
  out.warn(`${nativeActivation.executable} is not installed; the WTF-P bundle is staged but native registration is pending.`);
786
+ if (vendorKey === 'clio') {
787
+ // Clio refuses a source that overlaps its managed destination, so the
788
+ // published tree itself can never be the install source. Re-running
789
+ // the installer stages a distinct copy and registers it.
790
+ const scope = targetDir === path.join(process.cwd(), '.clio-coder') ? 'project' : 'user';
791
+ const configFlag = explicitConfigDir ? ` --config-dir '${targetDir.replaceAll("'", "'\\''")}'` : '';
792
+ out.warn(`Activation is pending: once clio-coder is on PATH, re-run npx wtf-p install clio${configFlag} from this directory to register the ${scope}-scope plugin.`);
793
+ }
773
794
  } else if (nativeActivation.status === 'deferred' && !hasQuiet) {
774
795
  out.warn(`${nativeActivation.reason}. The WTF-P bundle is staged but native registration is pending.`);
775
796
  } else if (nativeActivation.status === 'incompatible' && !hasQuiet) {
776
- out.warn(`The installed Clio version does not expose the complete WTF-P extension contract: ${nativeActivation.reason}. Flat prompts and skills remain staged; upgrade Clio for agents, fleets, and namespaced prompts.`);
797
+ out.warn(`${vendorConfig.name} did not accept the WTF-P package: ${nativeActivation.reason}. The bundle remains staged, not activated.`);
777
798
  }
778
799
  }
779
800
 
@@ -787,15 +808,23 @@ async function install(runtime, isUpdate, options, pkg) {
787
808
  out.log(`
788
809
  ${c.green('Done!')} ${c.dim(`[${vendorConfig.name}]`)} Installed: ${stats.installed}, Skipped: ${stats.skipped}, Backed up: ${stats.backed}
789
810
 
790
- Run ${c.cyan('/wtfp:help')} in ${vendorConfig.name} to get started.
811
+ ${vendorKey === 'codex'
812
+ ? `Select ${c.cyan('$wtfp-start-project')} in ${vendorConfig.name} and request the new-paper action to get started.`
813
+ : `Run ${c.cyan('/wtfp:help')} in ${vendorConfig.name} to get started.`}
791
814
  `);
792
815
  }
793
816
 
794
817
  if (stats.installed > 0 && showExplanations && !isUpdate) {
795
818
  out.log(` ${c.yellow('Get started:')}`);
796
- out.log(` ${c.cyan('/wtfp:new-paper')} Define your paper's vision and structure`);
797
- out.log(` ${c.cyan('/wtfp:progress')} See where you are and what's next`);
798
- out.log(` ${c.cyan('/wtfp:help')} Browse all available commands\n`);
819
+ if (vendorKey === 'codex') {
820
+ // Codex exposes skills, not slash commands.
821
+ out.log(` ${c.cyan('$wtfp-start-project')} Define your paper's vision and structure (request new-paper)`);
822
+ out.log(` ${c.cyan('$wtfp-manage-project')} See where you are and what's next (request progress)\n`);
823
+ } else {
824
+ out.log(` ${c.cyan('/wtfp:new-paper')} Define your paper's vision and structure`);
825
+ out.log(` ${c.cyan('/wtfp:progress')} See where you are and what's next`);
826
+ out.log(` ${c.cyan('/wtfp:help')} Browse all available commands\n`);
827
+ }
799
828
  }
800
829
  }
801
830