wtf-p 0.4.0 → 0.6.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +243 -292
- package/bin/commands/doctor.js +115 -8
- package/bin/commands/install-logic.js +678 -99
- package/bin/commands/list.js +4 -12
- package/bin/commands/status.js +33 -12
- package/bin/commands/update.js +10 -8
- package/bin/install.js +262 -38
- package/bin/lib/adapter-compiler.js +1344 -0
- package/bin/lib/adapter-metadata.js +12 -0
- package/bin/lib/analyze-impact.js +28 -24
- package/bin/lib/bib-format.js +2 -2
- package/bin/lib/bib-index.js +6 -6
- package/bin/lib/checkpoint.js +183 -0
- package/bin/lib/citation-fetcher.js +20 -20
- package/bin/lib/citation-ranker.js +44 -32
- package/bin/lib/context-primer.js +214 -0
- package/bin/lib/manifest.js +148 -42
- package/bin/lib/native-registration.js +579 -0
- package/bin/lib/ownership.js +984 -0
- package/bin/lib/scholar-lookup.js +13 -13
- package/bin/lib/semantic-scholar.js +19 -19
- package/bin/lib/utils.js +131 -44
- package/bin/uninstall.js +790 -359
- package/core/write-the-f-paper/references/agent-model-matrix.md +62 -0
- package/core/write-the-f-paper/references/checkpoints.md +160 -9
- package/core/write-the-f-paper/references/context-fidelity.md +153 -0
- package/core/write-the-f-paper/references/deviation-rules.md +150 -0
- package/core/write-the-f-paper/references/git-integration.md +80 -0
- package/core/write-the-f-paper/references/orchestrator-pattern.md +167 -0
- package/core/write-the-f-paper/references/planning-config.md +135 -0
- package/core/write-the-f-paper/references/ui-brand.md +186 -0
- package/core/write-the-f-paper/templates/UAT.md +80 -0
- package/core/write-the-f-paper/templates/base-prefs.yaml +42 -0
- package/core/write-the-f-paper/templates/config.json +31 -5
- package/core/write-the-f-paper/workflows/create-outline.wcn.md +1 -1
- package/core/write-the-f-paper/workflows/execute-outline.md +163 -0
- package/core/write-the-f-paper/workflows/execute-outline.wcn.md +73 -0
- package/core/write-the-f-paper/workflows/execute-section.wcn.md +141 -169
- package/core/write-the-f-paper/workflows/plan-section.wcn.md +96 -103
- package/core/write-the-f-paper/workflows/research-gap.md +27 -3
- package/core/write-the-f-paper/workflows/research-gap.wcn.md +18 -1
- package/core/write-the-f-paper/workflows/verify-work.md +251 -0
- package/core/write-the-f-paper/workflows/verify-work.wcn.md +74 -0
- package/package.json +39 -17
- package/protocol/actions/add-todo.json +52 -0
- package/protocol/actions/analyze-bib.json +97 -0
- package/protocol/actions/audit-milestone.json +63 -0
- package/protocol/actions/check-refs.json +80 -0
- package/protocol/actions/check-todos.json +52 -0
- package/protocol/actions/checkpoint.json +76 -0
- package/protocol/actions/contribute.json +57 -0
- package/protocol/actions/create-outline.json +80 -0
- package/protocol/actions/create-poster.json +59 -0
- package/protocol/actions/create-slides.json +59 -0
- package/protocol/actions/discuss-section.json +76 -0
- package/protocol/actions/execute-outline.json +116 -0
- package/protocol/actions/export-latex.json +65 -0
- package/protocol/actions/help.json +30 -0
- package/protocol/actions/insert-section.json +61 -0
- package/protocol/actions/list-assumptions.json +35 -0
- package/protocol/actions/map-project.json +57 -0
- package/protocol/actions/new-paper.json +70 -0
- package/protocol/actions/pause-writing.json +71 -0
- package/protocol/actions/plan-milestone-gaps.json +57 -0
- package/protocol/actions/plan-revision.json +58 -0
- package/protocol/actions/plan-section.json +97 -0
- package/protocol/actions/polish-prose.json +69 -0
- package/protocol/actions/progress.json +51 -0
- package/protocol/actions/quick.json +70 -0
- package/protocol/actions/remove-section.json +63 -0
- package/protocol/actions/report-bug.json +47 -0
- package/protocol/actions/request-feature.json +47 -0
- package/protocol/actions/research-gap.json +101 -0
- package/protocol/actions/resume-writing.json +63 -0
- package/protocol/actions/review-section.json +83 -0
- package/protocol/actions/settings.json +47 -0
- package/protocol/actions/submit-milestone.json +77 -0
- package/protocol/actions/update.json +42 -0
- package/protocol/actions/verify-work.json +63 -0
- package/protocol/actions/write-section.json +115 -0
- package/protocol/aliases.lock.json +42 -0
- package/protocol/catalog.json +127 -0
- package/protocol/effects.json +107 -0
- package/protocol/fleets/wtfp-draft-review.json +35 -0
- package/protocol/fleets/wtfp-plan-section.json +34 -0
- package/protocol/project/README.md +65 -0
- package/protocol/project/schemas/checkpoint.schema.json +102 -0
- package/protocol/project/schemas/common.schema.json +33 -0
- package/protocol/project/schemas/config.schema.json +69 -0
- package/protocol/project/schemas/decisions.schema.json +31 -0
- package/protocol/project/schemas/evidence.schema.json +48 -0
- package/protocol/project/schemas/manifest.schema.json +102 -0
- package/protocol/project/schemas/outline.schema.json +67 -0
- package/protocol/project/schemas/section.schema.json +95 -0
- package/protocol/project/schemas/source.schema.json +73 -0
- package/protocol/project/schemas/state.schema.json +58 -0
- package/protocol/project/schemas/validation.schema.json +74 -0
- package/protocol/project/templates/checkpoint.json +25 -0
- package/protocol/project/templates/config.json +31 -0
- package/protocol/project/templates/decisions.json +35 -0
- package/protocol/project/templates/evidence.json +18 -0
- package/protocol/project/templates/manifest.json +30 -0
- package/protocol/project/templates/outline.json +38 -0
- package/protocol/project/templates/section.json +32 -0
- package/protocol/project/templates/source.json +20 -0
- package/protocol/project/templates/state.json +22 -0
- package/protocol/project/templates/validation.json +32 -0
- package/protocol/roles/argument-verifier.md +62 -0
- package/protocol/roles/citation-expert.md +63 -0
- package/protocol/roles/citation-formatter.md +63 -0
- package/protocol/roles/coherence-checker.md +61 -0
- package/protocol/roles/outliner.md +68 -0
- package/protocol/roles/plan-checker.md +62 -0
- package/protocol/roles/prose-polisher.md +63 -0
- package/protocol/roles/research-synthesizer.md +65 -0
- package/protocol/roles/section-planner.md +65 -0
- package/protocol/roles/section-reviewer.md +61 -0
- package/protocol/roles/section-writer.md +66 -0
- package/protocol/schemas/action.schema.json +129 -0
- package/protocol/schemas/aliases.schema.json +26 -0
- package/protocol/schemas/catalog.schema.json +61 -0
- package/protocol/schemas/effects.schema.json +26 -0
- package/protocol/schemas/role-result.schema.json +74 -0
- package/protocol/schemas/tools.schema.json +26 -0
- package/protocol/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/protocol/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/protocol/skills/wtfp-deliver-research/references/actions.md +77 -0
- package/protocol/skills/wtfp-manage-project/SKILL.md +40 -0
- package/protocol/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/protocol/skills/wtfp-manage-project/references/actions.md +90 -0
- package/protocol/skills/wtfp-plan-section/SKILL.md +39 -0
- package/protocol/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/protocol/skills/wtfp-plan-section/references/actions.md +113 -0
- package/protocol/skills/wtfp-research-literature/SKILL.md +37 -0
- package/protocol/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/protocol/skills/wtfp-research-literature/references/actions.md +75 -0
- package/protocol/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/protocol/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/protocol/skills/wtfp-review-manuscript/references/actions.md +96 -0
- package/protocol/skills/wtfp-start-project/SKILL.md +38 -0
- package/protocol/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/protocol/skills/wtfp-start-project/references/actions.md +80 -0
- package/protocol/skills/wtfp-write-section/SKILL.md +37 -0
- package/protocol/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/protocol/skills/wtfp-write-section/references/actions.md +69 -0
- package/protocol/tools.json +54 -0
- package/protocol/workflows/add-todo.md +32 -0
- package/protocol/workflows/analyze-bib.md +33 -0
- package/protocol/workflows/audit-milestone.md +32 -0
- package/protocol/workflows/check-refs.md +32 -0
- package/protocol/workflows/check-todos.md +32 -0
- package/protocol/workflows/checkpoint.md +32 -0
- package/protocol/workflows/contribute.md +30 -0
- package/protocol/workflows/create-outline.md +32 -0
- package/protocol/workflows/create-poster.md +32 -0
- package/protocol/workflows/create-slides.md +32 -0
- package/protocol/workflows/discuss-section.md +32 -0
- package/protocol/workflows/execute-outline.md +32 -0
- package/protocol/workflows/export-latex.md +32 -0
- package/protocol/workflows/help.md +30 -0
- package/protocol/workflows/insert-section.md +32 -0
- package/protocol/workflows/list-assumptions.md +32 -0
- package/protocol/workflows/map-project.md +32 -0
- package/protocol/workflows/new-paper.md +37 -0
- package/protocol/workflows/pause-writing.md +32 -0
- package/protocol/workflows/plan-milestone-gaps.md +32 -0
- package/protocol/workflows/plan-revision.md +32 -0
- package/protocol/workflows/plan-section.md +32 -0
- package/protocol/workflows/polish-prose.md +32 -0
- package/protocol/workflows/progress.md +32 -0
- package/protocol/workflows/quick.md +32 -0
- package/protocol/workflows/remove-section.md +32 -0
- package/protocol/workflows/report-bug.md +30 -0
- package/protocol/workflows/request-feature.md +30 -0
- package/protocol/workflows/research-gap.md +32 -0
- package/protocol/workflows/resume-writing.md +32 -0
- package/protocol/workflows/review-section.md +32 -0
- package/protocol/workflows/settings.md +32 -0
- package/protocol/workflows/submit-milestone.md +32 -0
- package/protocol/workflows/update.md +30 -0
- package/protocol/workflows/verify-work.md +32 -0
- package/protocol/workflows/write-section.md +32 -0
- package/scripts/build-adapters.js +30 -0
- package/vendors/antigravity/.wtfp-generated.json +792 -0
- package/vendors/antigravity/actions/add-todo.json +52 -0
- package/vendors/antigravity/actions/analyze-bib.json +97 -0
- package/vendors/antigravity/actions/audit-milestone.json +63 -0
- package/vendors/antigravity/actions/check-refs.json +80 -0
- package/vendors/antigravity/actions/check-todos.json +52 -0
- package/vendors/antigravity/actions/checkpoint.json +76 -0
- package/vendors/antigravity/actions/contribute.json +57 -0
- package/vendors/antigravity/actions/create-outline.json +80 -0
- package/vendors/antigravity/actions/create-poster.json +59 -0
- package/vendors/antigravity/actions/create-slides.json +59 -0
- package/vendors/antigravity/actions/discuss-section.json +76 -0
- package/vendors/antigravity/actions/execute-outline.json +116 -0
- package/vendors/antigravity/actions/export-latex.json +65 -0
- package/vendors/antigravity/actions/help.json +30 -0
- package/vendors/antigravity/actions/insert-section.json +61 -0
- package/vendors/antigravity/actions/list-assumptions.json +35 -0
- package/vendors/antigravity/actions/map-project.json +57 -0
- package/vendors/antigravity/actions/new-paper.json +70 -0
- package/vendors/antigravity/actions/pause-writing.json +71 -0
- package/vendors/antigravity/actions/plan-milestone-gaps.json +57 -0
- package/vendors/antigravity/actions/plan-revision.json +58 -0
- package/vendors/antigravity/actions/plan-section.json +97 -0
- package/vendors/antigravity/actions/polish-prose.json +69 -0
- package/vendors/antigravity/actions/progress.json +51 -0
- package/vendors/antigravity/actions/quick.json +70 -0
- package/vendors/antigravity/actions/remove-section.json +63 -0
- package/vendors/antigravity/actions/report-bug.json +47 -0
- package/vendors/antigravity/actions/request-feature.json +47 -0
- package/vendors/antigravity/actions/research-gap.json +101 -0
- package/vendors/antigravity/actions/resume-writing.json +63 -0
- package/vendors/antigravity/actions/review-section.json +83 -0
- package/vendors/antigravity/actions/settings.json +47 -0
- package/vendors/antigravity/actions/submit-milestone.json +77 -0
- package/vendors/antigravity/actions/update.json +42 -0
- package/vendors/antigravity/actions/verify-work.json +63 -0
- package/vendors/antigravity/actions/write-section.json +115 -0
- package/vendors/antigravity/agents/wtfp-argument-verifier.md +65 -0
- package/vendors/antigravity/agents/wtfp-citation-expert.md +68 -0
- package/vendors/antigravity/agents/wtfp-citation-formatter.md +68 -0
- package/vendors/antigravity/agents/wtfp-coherence-checker.md +64 -0
- package/vendors/antigravity/agents/wtfp-outliner.md +73 -0
- package/vendors/antigravity/agents/wtfp-plan-checker.md +65 -0
- package/vendors/antigravity/agents/wtfp-prose-polisher.md +68 -0
- package/vendors/antigravity/agents/wtfp-research-synthesizer.md +70 -0
- package/vendors/antigravity/agents/wtfp-section-planner.md +70 -0
- package/vendors/antigravity/agents/wtfp-section-reviewer.md +64 -0
- package/vendors/antigravity/agents/wtfp-section-writer.md +71 -0
- package/vendors/antigravity/aliases.lock.json +42 -0
- package/vendors/antigravity/catalog.json +127 -0
- package/vendors/antigravity/commands/wtfp-add-todo.md +59 -0
- package/vendors/antigravity/commands/wtfp-analyze-bib.md +17 -0
- package/vendors/antigravity/commands/wtfp-audit-milestone.md +17 -0
- package/vendors/antigravity/commands/wtfp-check-refs.md +17 -0
- package/vendors/antigravity/commands/wtfp-check-todos.md +58 -0
- package/vendors/antigravity/commands/wtfp-checkpoint.md +74 -0
- package/vendors/antigravity/commands/wtfp-contribute.md +17 -0
- package/vendors/antigravity/commands/wtfp-create-outline.md +73 -0
- package/vendors/antigravity/commands/wtfp-create-poster.md +17 -0
- package/vendors/antigravity/commands/wtfp-create-slides.md +17 -0
- package/vendors/antigravity/commands/wtfp-discuss-section.md +64 -0
- package/vendors/antigravity/commands/wtfp-execute-outline.md +75 -0
- package/vendors/antigravity/commands/wtfp-export-latex.md +17 -0
- package/vendors/antigravity/commands/wtfp-help.md +48 -0
- package/vendors/antigravity/commands/wtfp-insert-section.md +60 -0
- package/vendors/antigravity/commands/wtfp-list-assumptions.md +59 -0
- package/vendors/antigravity/commands/wtfp-map-project.md +61 -0
- package/vendors/antigravity/commands/wtfp-new-paper.md +69 -0
- package/vendors/antigravity/commands/wtfp-pause-writing.md +65 -0
- package/vendors/antigravity/commands/wtfp-plan-milestone-gaps.md +62 -0
- package/vendors/antigravity/commands/wtfp-plan-revision.md +62 -0
- package/vendors/antigravity/commands/wtfp-plan-section.md +75 -0
- package/vendors/antigravity/commands/wtfp-polish-prose.md +63 -0
- package/vendors/antigravity/commands/wtfp-progress.md +72 -0
- package/vendors/antigravity/commands/wtfp-quick.md +63 -0
- package/vendors/antigravity/commands/wtfp-remove-section.md +17 -0
- package/vendors/antigravity/commands/wtfp-report-bug.md +17 -0
- package/vendors/antigravity/commands/wtfp-request-feature.md +17 -0
- package/vendors/antigravity/commands/wtfp-research-gap.md +17 -0
- package/vendors/antigravity/commands/wtfp-resume-writing.md +70 -0
- package/vendors/antigravity/commands/wtfp-review-section.md +67 -0
- package/vendors/antigravity/commands/wtfp-settings.md +56 -0
- package/vendors/antigravity/commands/wtfp-submit-milestone.md +72 -0
- package/vendors/antigravity/commands/wtfp-update.md +17 -0
- package/vendors/antigravity/commands/wtfp-verify-work.md +62 -0
- package/vendors/antigravity/commands/wtfp-write-section.md +75 -0
- package/vendors/antigravity/compatibility/action-availability.json +314 -0
- package/vendors/antigravity/effects.json +107 -0
- package/vendors/antigravity/fleets/wtfp-draft-review.json +35 -0
- package/vendors/antigravity/fleets/wtfp-plan-section.json +34 -0
- package/vendors/antigravity/plugin.json +11 -0
- package/vendors/antigravity/project/README.md +65 -0
- package/vendors/antigravity/project/schemas/checkpoint.schema.json +102 -0
- package/vendors/antigravity/project/schemas/common.schema.json +33 -0
- package/vendors/antigravity/project/schemas/config.schema.json +69 -0
- package/vendors/antigravity/project/schemas/decisions.schema.json +31 -0
- package/vendors/antigravity/project/schemas/evidence.schema.json +48 -0
- package/vendors/antigravity/project/schemas/manifest.schema.json +102 -0
- package/vendors/antigravity/project/schemas/outline.schema.json +67 -0
- package/vendors/antigravity/project/schemas/section.schema.json +95 -0
- package/vendors/antigravity/project/schemas/source.schema.json +73 -0
- package/vendors/antigravity/project/schemas/state.schema.json +58 -0
- package/vendors/antigravity/project/schemas/validation.schema.json +74 -0
- package/vendors/antigravity/project/templates/checkpoint.json +25 -0
- package/vendors/antigravity/project/templates/config.json +31 -0
- package/vendors/antigravity/project/templates/decisions.json +35 -0
- package/vendors/antigravity/project/templates/evidence.json +18 -0
- package/vendors/antigravity/project/templates/manifest.json +30 -0
- package/vendors/antigravity/project/templates/outline.json +38 -0
- package/vendors/antigravity/project/templates/section.json +32 -0
- package/vendors/antigravity/project/templates/source.json +20 -0
- package/vendors/antigravity/project/templates/state.json +22 -0
- package/vendors/antigravity/project/templates/validation.json +32 -0
- package/vendors/antigravity/repository/CONTRIBUTING.md +183 -0
- package/vendors/antigravity/roles/argument-verifier.md +62 -0
- package/vendors/antigravity/roles/citation-expert.md +63 -0
- package/vendors/antigravity/roles/citation-formatter.md +63 -0
- package/vendors/antigravity/roles/coherence-checker.md +61 -0
- package/vendors/antigravity/roles/outliner.md +68 -0
- package/vendors/antigravity/roles/plan-checker.md +62 -0
- package/vendors/antigravity/roles/prose-polisher.md +63 -0
- package/vendors/antigravity/roles/research-synthesizer.md +65 -0
- package/vendors/antigravity/roles/section-planner.md +65 -0
- package/vendors/antigravity/roles/section-reviewer.md +61 -0
- package/vendors/antigravity/roles/section-writer.md +66 -0
- package/vendors/antigravity/schemas/action.schema.json +129 -0
- package/vendors/antigravity/schemas/aliases.schema.json +26 -0
- package/vendors/antigravity/schemas/catalog.schema.json +61 -0
- package/vendors/antigravity/schemas/effects.schema.json +26 -0
- package/vendors/antigravity/schemas/role-result.schema.json +74 -0
- package/vendors/antigravity/schemas/tools.schema.json +26 -0
- package/vendors/antigravity/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/vendors/antigravity/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/vendors/antigravity/skills/wtfp-deliver-research/references/actions.md +117 -0
- package/vendors/antigravity/skills/wtfp-manage-project/SKILL.md +40 -0
- package/vendors/antigravity/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/vendors/antigravity/skills/wtfp-manage-project/references/actions.md +90 -0
- package/vendors/antigravity/skills/wtfp-plan-section/SKILL.md +39 -0
- package/vendors/antigravity/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/vendors/antigravity/skills/wtfp-plan-section/references/actions.md +129 -0
- package/vendors/antigravity/skills/wtfp-research-literature/SKILL.md +37 -0
- package/vendors/antigravity/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/vendors/antigravity/skills/wtfp-research-literature/references/actions.md +115 -0
- package/vendors/antigravity/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/vendors/antigravity/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/vendors/antigravity/skills/wtfp-review-manuscript/references/actions.md +112 -0
- package/vendors/antigravity/skills/wtfp-start-project/SKILL.md +38 -0
- package/vendors/antigravity/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/vendors/antigravity/skills/wtfp-start-project/references/actions.md +80 -0
- package/vendors/antigravity/skills/wtfp-write-section/SKILL.md +37 -0
- package/vendors/antigravity/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/vendors/antigravity/skills/wtfp-write-section/references/actions.md +69 -0
- package/vendors/antigravity/tools/README.md +13 -0
- package/vendors/antigravity/tools/bibliography/analyze-impact.js +109 -0
- package/vendors/antigravity/tools/bibliography/format.js +161 -0
- package/vendors/antigravity/tools/bibliography/index.js +104 -0
- package/vendors/antigravity/tools/citation/fetch.js +299 -0
- package/vendors/antigravity/tools/citation/rank.js +145 -0
- package/vendors/antigravity/tools/citation/scholar-lookup.js +188 -0
- package/vendors/antigravity/tools/citation/semantic-scholar.js +184 -0
- package/vendors/antigravity/tools.json +54 -0
- package/vendors/antigravity/workflows/add-todo.md +32 -0
- package/vendors/antigravity/workflows/analyze-bib.md +33 -0
- package/vendors/antigravity/workflows/audit-milestone.md +32 -0
- package/vendors/antigravity/workflows/check-refs.md +32 -0
- package/vendors/antigravity/workflows/check-todos.md +32 -0
- package/vendors/antigravity/workflows/checkpoint.md +32 -0
- package/vendors/antigravity/workflows/contribute.md +30 -0
- package/vendors/antigravity/workflows/create-outline.md +32 -0
- package/vendors/antigravity/workflows/create-poster.md +32 -0
- package/vendors/antigravity/workflows/create-slides.md +32 -0
- package/vendors/antigravity/workflows/discuss-section.md +32 -0
- package/vendors/antigravity/workflows/execute-outline.md +32 -0
- package/vendors/antigravity/workflows/export-latex.md +32 -0
- package/vendors/antigravity/workflows/help.md +30 -0
- package/vendors/antigravity/workflows/insert-section.md +32 -0
- package/vendors/antigravity/workflows/list-assumptions.md +32 -0
- package/vendors/antigravity/workflows/map-project.md +32 -0
- package/vendors/antigravity/workflows/new-paper.md +37 -0
- package/vendors/antigravity/workflows/pause-writing.md +32 -0
- package/vendors/antigravity/workflows/plan-milestone-gaps.md +32 -0
- package/vendors/antigravity/workflows/plan-revision.md +32 -0
- package/vendors/antigravity/workflows/plan-section.md +32 -0
- package/vendors/antigravity/workflows/polish-prose.md +32 -0
- package/vendors/antigravity/workflows/progress.md +32 -0
- package/vendors/antigravity/workflows/quick.md +32 -0
- package/vendors/antigravity/workflows/remove-section.md +32 -0
- package/vendors/antigravity/workflows/report-bug.md +30 -0
- package/vendors/antigravity/workflows/request-feature.md +30 -0
- package/vendors/antigravity/workflows/research-gap.md +32 -0
- package/vendors/antigravity/workflows/resume-writing.md +32 -0
- package/vendors/antigravity/workflows/review-section.md +32 -0
- package/vendors/antigravity/workflows/settings.md +32 -0
- package/vendors/antigravity/workflows/submit-milestone.md +32 -0
- package/vendors/antigravity/workflows/update.md +30 -0
- package/vendors/antigravity/workflows/verify-work.md +32 -0
- package/vendors/antigravity/workflows/write-section.md +32 -0
- package/vendors/claude/.claude-plugin/marketplace.json +24 -0
- package/vendors/claude/.claude-plugin/plugin.json +3 -3
- package/vendors/claude/.wtfp-generated.json +796 -0
- package/vendors/claude/actions/add-todo.json +52 -0
- package/vendors/claude/actions/analyze-bib.json +97 -0
- package/vendors/claude/actions/audit-milestone.json +63 -0
- package/vendors/claude/actions/check-refs.json +80 -0
- package/vendors/claude/actions/check-todos.json +52 -0
- package/vendors/claude/actions/checkpoint.json +76 -0
- package/vendors/claude/actions/contribute.json +57 -0
- package/vendors/claude/actions/create-outline.json +80 -0
- package/vendors/claude/actions/create-poster.json +59 -0
- package/vendors/claude/actions/create-slides.json +59 -0
- package/vendors/claude/actions/discuss-section.json +76 -0
- package/vendors/claude/actions/execute-outline.json +116 -0
- package/vendors/claude/actions/export-latex.json +65 -0
- package/vendors/claude/actions/help.json +30 -0
- package/vendors/claude/actions/insert-section.json +61 -0
- package/vendors/claude/actions/list-assumptions.json +35 -0
- package/vendors/claude/actions/map-project.json +57 -0
- package/vendors/claude/actions/new-paper.json +70 -0
- package/vendors/claude/actions/pause-writing.json +71 -0
- package/vendors/claude/actions/plan-milestone-gaps.json +57 -0
- package/vendors/claude/actions/plan-revision.json +58 -0
- package/vendors/claude/actions/plan-section.json +97 -0
- package/vendors/claude/actions/polish-prose.json +69 -0
- package/vendors/claude/actions/progress.json +51 -0
- package/vendors/claude/actions/quick.json +70 -0
- package/vendors/claude/actions/remove-section.json +63 -0
- package/vendors/claude/actions/report-bug.json +47 -0
- package/vendors/claude/actions/request-feature.json +47 -0
- package/vendors/claude/actions/research-gap.json +101 -0
- package/vendors/claude/actions/resume-writing.json +63 -0
- package/vendors/claude/actions/review-section.json +83 -0
- package/vendors/claude/actions/settings.json +47 -0
- package/vendors/claude/actions/submit-milestone.json +77 -0
- package/vendors/claude/actions/update.json +42 -0
- package/vendors/claude/actions/verify-work.json +63 -0
- package/vendors/claude/actions/write-section.json +115 -0
- package/vendors/claude/agents/wtfp/argument-verifier.md +65 -0
- package/vendors/claude/agents/wtfp/citation-expert.md +51 -28
- package/vendors/claude/agents/wtfp/citation-formatter.md +52 -26
- package/vendors/claude/agents/wtfp/coherence-checker.md +64 -0
- package/vendors/claude/agents/wtfp/outliner.md +73 -0
- package/vendors/claude/agents/wtfp/plan-checker.md +65 -0
- package/vendors/claude/agents/wtfp/prose-polisher.md +68 -0
- package/vendors/claude/agents/wtfp/research-synthesizer.md +70 -0
- package/vendors/claude/agents/wtfp/section-planner.md +70 -0
- package/vendors/claude/agents/wtfp/section-reviewer.md +64 -0
- package/vendors/claude/agents/wtfp/section-writer.md +71 -0
- package/vendors/claude/aliases.lock.json +42 -0
- package/vendors/claude/catalog.json +127 -0
- package/vendors/claude/commands/add-todo.md +58 -0
- package/vendors/claude/commands/analyze-bib.md +16 -0
- package/vendors/claude/commands/audit-milestone.md +16 -0
- package/vendors/claude/commands/check-refs.md +16 -0
- package/vendors/claude/commands/check-todos.md +57 -0
- package/vendors/claude/commands/checkpoint.md +73 -0
- package/vendors/claude/commands/contribute.md +16 -0
- package/vendors/claude/commands/create-outline.md +72 -0
- package/vendors/claude/commands/create-poster.md +16 -0
- package/vendors/claude/commands/create-slides.md +16 -0
- package/vendors/claude/commands/discuss-section.md +63 -0
- package/vendors/claude/commands/execute-outline.md +74 -0
- package/vendors/claude/commands/export-latex.md +16 -0
- package/vendors/claude/commands/help.md +47 -0
- package/vendors/claude/commands/insert-section.md +59 -0
- package/vendors/claude/commands/list-assumptions.md +58 -0
- package/vendors/claude/commands/map-project.md +60 -0
- package/vendors/claude/commands/new-paper.md +68 -0
- package/vendors/claude/commands/pause-writing.md +64 -0
- package/vendors/claude/commands/plan-milestone-gaps.md +61 -0
- package/vendors/claude/commands/plan-revision.md +61 -0
- package/vendors/claude/commands/plan-section.md +74 -0
- package/vendors/claude/commands/polish-prose.md +62 -0
- package/vendors/claude/commands/progress.md +71 -0
- package/vendors/claude/commands/quick.md +62 -0
- package/vendors/claude/commands/remove-section.md +16 -0
- package/vendors/claude/commands/report-bug.md +16 -0
- package/vendors/claude/commands/request-feature.md +16 -0
- package/vendors/claude/commands/research-gap.md +16 -0
- package/vendors/claude/commands/resume-writing.md +69 -0
- package/vendors/claude/commands/review-section.md +66 -0
- package/vendors/claude/commands/settings.md +55 -0
- package/vendors/claude/commands/submit-milestone.md +71 -0
- package/vendors/claude/commands/update.md +16 -0
- package/vendors/claude/commands/verify-work.md +61 -0
- package/vendors/claude/commands/write-section.md +74 -0
- package/vendors/claude/compatibility/action-availability.json +314 -0
- package/vendors/claude/effects.json +107 -0
- package/vendors/claude/fleets/wtfp-draft-review.json +35 -0
- package/vendors/claude/fleets/wtfp-plan-section.json +34 -0
- package/vendors/claude/project/README.md +65 -0
- package/vendors/claude/project/schemas/checkpoint.schema.json +102 -0
- package/vendors/claude/project/schemas/common.schema.json +33 -0
- package/vendors/claude/project/schemas/config.schema.json +69 -0
- package/vendors/claude/project/schemas/decisions.schema.json +31 -0
- package/vendors/claude/project/schemas/evidence.schema.json +48 -0
- package/vendors/claude/project/schemas/manifest.schema.json +102 -0
- package/vendors/claude/project/schemas/outline.schema.json +67 -0
- package/vendors/claude/project/schemas/section.schema.json +95 -0
- package/vendors/claude/project/schemas/source.schema.json +73 -0
- package/vendors/claude/project/schemas/state.schema.json +58 -0
- package/vendors/claude/project/schemas/validation.schema.json +74 -0
- package/vendors/claude/project/templates/checkpoint.json +25 -0
- package/vendors/claude/project/templates/config.json +31 -0
- package/vendors/claude/project/templates/decisions.json +35 -0
- package/vendors/claude/project/templates/evidence.json +18 -0
- package/vendors/claude/project/templates/manifest.json +30 -0
- package/vendors/claude/project/templates/outline.json +38 -0
- package/vendors/claude/project/templates/section.json +32 -0
- package/vendors/claude/project/templates/source.json +20 -0
- package/vendors/claude/project/templates/state.json +22 -0
- package/vendors/claude/project/templates/validation.json +32 -0
- package/vendors/claude/repository/CONTRIBUTING.md +183 -0
- package/vendors/claude/roles/argument-verifier.md +62 -0
- package/vendors/claude/roles/citation-expert.md +63 -0
- package/vendors/claude/roles/citation-formatter.md +63 -0
- package/vendors/claude/roles/coherence-checker.md +61 -0
- package/vendors/claude/roles/outliner.md +68 -0
- package/vendors/claude/roles/plan-checker.md +62 -0
- package/vendors/claude/roles/prose-polisher.md +63 -0
- package/vendors/claude/roles/research-synthesizer.md +65 -0
- package/vendors/claude/roles/section-planner.md +65 -0
- package/vendors/claude/roles/section-reviewer.md +61 -0
- package/vendors/claude/roles/section-writer.md +66 -0
- package/vendors/claude/schemas/action.schema.json +129 -0
- package/vendors/claude/schemas/aliases.schema.json +26 -0
- package/vendors/claude/schemas/catalog.schema.json +61 -0
- package/vendors/claude/schemas/effects.schema.json +26 -0
- package/vendors/claude/schemas/role-result.schema.json +74 -0
- package/vendors/claude/schemas/tools.schema.json +26 -0
- package/vendors/claude/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/vendors/claude/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/vendors/claude/skills/wtfp-deliver-research/references/actions.md +117 -0
- package/vendors/claude/skills/wtfp-manage-project/SKILL.md +40 -0
- package/vendors/claude/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/vendors/claude/skills/wtfp-manage-project/references/actions.md +90 -0
- package/vendors/claude/skills/wtfp-plan-section/SKILL.md +39 -0
- package/vendors/claude/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/vendors/claude/skills/wtfp-plan-section/references/actions.md +129 -0
- package/vendors/claude/skills/wtfp-research-literature/SKILL.md +37 -0
- package/vendors/claude/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/vendors/claude/skills/wtfp-research-literature/references/actions.md +115 -0
- package/vendors/claude/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/vendors/claude/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/vendors/claude/skills/wtfp-review-manuscript/references/actions.md +112 -0
- package/vendors/claude/skills/wtfp-start-project/SKILL.md +38 -0
- package/vendors/claude/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/vendors/claude/skills/wtfp-start-project/references/actions.md +80 -0
- package/vendors/claude/skills/wtfp-write-section/SKILL.md +37 -0
- package/vendors/claude/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/vendors/claude/skills/wtfp-write-section/references/actions.md +69 -0
- package/vendors/claude/tools/README.md +13 -0
- package/vendors/claude/tools/bibliography/analyze-impact.js +109 -0
- package/vendors/claude/tools/bibliography/format.js +161 -0
- package/vendors/claude/tools/bibliography/index.js +104 -0
- package/vendors/claude/tools/citation/fetch.js +299 -0
- package/vendors/claude/tools/citation/rank.js +145 -0
- package/vendors/claude/tools/citation/scholar-lookup.js +188 -0
- package/vendors/claude/tools/citation/semantic-scholar.js +184 -0
- package/vendors/claude/tools.json +54 -0
- package/vendors/claude/workflows/add-todo.md +32 -0
- package/vendors/claude/workflows/analyze-bib.md +33 -0
- package/vendors/claude/workflows/audit-milestone.md +32 -0
- package/vendors/claude/workflows/check-refs.md +32 -0
- package/vendors/claude/workflows/check-todos.md +32 -0
- package/vendors/claude/workflows/checkpoint.md +32 -0
- package/vendors/claude/workflows/contribute.md +30 -0
- package/vendors/claude/workflows/create-outline.md +32 -0
- package/vendors/claude/workflows/create-poster.md +32 -0
- package/vendors/claude/workflows/create-slides.md +32 -0
- package/vendors/claude/workflows/discuss-section.md +32 -0
- package/vendors/claude/workflows/execute-outline.md +32 -0
- package/vendors/claude/workflows/export-latex.md +32 -0
- package/vendors/claude/workflows/help.md +30 -0
- package/vendors/claude/workflows/insert-section.md +32 -0
- package/vendors/claude/workflows/list-assumptions.md +32 -0
- package/vendors/claude/workflows/map-project.md +32 -0
- package/vendors/claude/workflows/new-paper.md +37 -0
- package/vendors/claude/workflows/pause-writing.md +32 -0
- package/vendors/claude/workflows/plan-milestone-gaps.md +32 -0
- package/vendors/claude/workflows/plan-revision.md +32 -0
- package/vendors/claude/workflows/plan-section.md +32 -0
- package/vendors/claude/workflows/polish-prose.md +32 -0
- package/vendors/claude/workflows/progress.md +32 -0
- package/vendors/claude/workflows/quick.md +32 -0
- package/vendors/claude/workflows/remove-section.md +32 -0
- package/vendors/claude/workflows/report-bug.md +30 -0
- package/vendors/claude/workflows/request-feature.md +30 -0
- package/vendors/claude/workflows/research-gap.md +32 -0
- package/vendors/claude/workflows/resume-writing.md +32 -0
- package/vendors/claude/workflows/review-section.md +32 -0
- package/vendors/claude/workflows/settings.md +32 -0
- package/vendors/claude/workflows/submit-milestone.md +32 -0
- package/vendors/claude/workflows/update.md +30 -0
- package/vendors/claude/workflows/verify-work.md +32 -0
- package/vendors/claude/workflows/write-section.md +32 -0
- package/vendors/clio/.wtfp-generated.json +936 -0
- package/vendors/clio/actions/add-todo.json +52 -0
- package/vendors/clio/actions/analyze-bib.json +97 -0
- package/vendors/clio/actions/audit-milestone.json +63 -0
- package/vendors/clio/actions/check-refs.json +80 -0
- package/vendors/clio/actions/check-todos.json +52 -0
- package/vendors/clio/actions/checkpoint.json +76 -0
- package/vendors/clio/actions/contribute.json +57 -0
- package/vendors/clio/actions/create-outline.json +80 -0
- package/vendors/clio/actions/create-poster.json +59 -0
- package/vendors/clio/actions/create-slides.json +59 -0
- package/vendors/clio/actions/discuss-section.json +76 -0
- package/vendors/clio/actions/execute-outline.json +116 -0
- package/vendors/clio/actions/export-latex.json +65 -0
- package/vendors/clio/actions/help.json +30 -0
- package/vendors/clio/actions/insert-section.json +61 -0
- package/vendors/clio/actions/list-assumptions.json +35 -0
- package/vendors/clio/actions/map-project.json +57 -0
- package/vendors/clio/actions/new-paper.json +70 -0
- package/vendors/clio/actions/pause-writing.json +71 -0
- package/vendors/clio/actions/plan-milestone-gaps.json +57 -0
- package/vendors/clio/actions/plan-revision.json +58 -0
- package/vendors/clio/actions/plan-section.json +97 -0
- package/vendors/clio/actions/polish-prose.json +69 -0
- package/vendors/clio/actions/progress.json +51 -0
- package/vendors/clio/actions/quick.json +70 -0
- package/vendors/clio/actions/remove-section.json +63 -0
- package/vendors/clio/actions/report-bug.json +47 -0
- package/vendors/clio/actions/request-feature.json +47 -0
- package/vendors/clio/actions/research-gap.json +101 -0
- package/vendors/clio/actions/resume-writing.json +63 -0
- package/vendors/clio/actions/review-section.json +83 -0
- package/vendors/clio/actions/settings.json +47 -0
- package/vendors/clio/actions/submit-milestone.json +77 -0
- package/vendors/clio/actions/update.json +42 -0
- package/vendors/clio/actions/verify-work.json +63 -0
- package/vendors/clio/actions/write-section.json +115 -0
- package/vendors/clio/agents/wtfp-argument-verifier.md +60 -0
- package/vendors/clio/agents/wtfp-citation-expert.md +61 -0
- package/vendors/clio/agents/wtfp-citation-formatter.md +61 -0
- package/vendors/clio/agents/wtfp-coherence-checker.md +59 -0
- package/vendors/clio/agents/wtfp-outliner.md +66 -0
- package/vendors/clio/agents/wtfp-plan-checker.md +60 -0
- package/vendors/clio/agents/wtfp-prose-polisher.md +61 -0
- package/vendors/clio/agents/wtfp-research-synthesizer.md +63 -0
- package/vendors/clio/agents/wtfp-section-planner.md +63 -0
- package/vendors/clio/agents/wtfp-section-reviewer.md +59 -0
- package/vendors/clio/agents/wtfp-section-writer.md +64 -0
- package/vendors/clio/aliases.lock.json +42 -0
- package/vendors/clio/catalog.json +127 -0
- package/vendors/clio/clio-coder-extension.yaml +12 -0
- package/vendors/clio/compatibility/action-availability.json +323 -0
- package/vendors/clio/effects.json +107 -0
- package/vendors/clio/fleets/wtfp-draft-review.md +25 -0
- package/vendors/clio/fleets/wtfp-plan-section.md +23 -0
- package/vendors/clio/project/README.md +65 -0
- package/vendors/clio/project/schemas/checkpoint.schema.json +102 -0
- package/vendors/clio/project/schemas/common.schema.json +33 -0
- package/vendors/clio/project/schemas/config.schema.json +69 -0
- package/vendors/clio/project/schemas/decisions.schema.json +31 -0
- package/vendors/clio/project/schemas/evidence.schema.json +48 -0
- package/vendors/clio/project/schemas/manifest.schema.json +102 -0
- package/vendors/clio/project/schemas/outline.schema.json +67 -0
- package/vendors/clio/project/schemas/section.schema.json +95 -0
- package/vendors/clio/project/schemas/source.schema.json +73 -0
- package/vendors/clio/project/schemas/state.schema.json +58 -0
- package/vendors/clio/project/schemas/validation.schema.json +74 -0
- package/vendors/clio/project/templates/checkpoint.json +25 -0
- package/vendors/clio/project/templates/config.json +31 -0
- package/vendors/clio/project/templates/decisions.json +35 -0
- package/vendors/clio/project/templates/evidence.json +18 -0
- package/vendors/clio/project/templates/manifest.json +30 -0
- package/vendors/clio/project/templates/outline.json +38 -0
- package/vendors/clio/project/templates/section.json +32 -0
- package/vendors/clio/project/templates/source.json +20 -0
- package/vendors/clio/project/templates/state.json +22 -0
- package/vendors/clio/project/templates/validation.json +32 -0
- package/vendors/clio/prompts/wtfp/add-todo.md +52 -0
- package/vendors/clio/prompts/wtfp/analyze-bib.md +15 -0
- package/vendors/clio/prompts/wtfp/audit-milestone.md +15 -0
- package/vendors/clio/prompts/wtfp/check-refs.md +15 -0
- package/vendors/clio/prompts/wtfp/check-todos.md +50 -0
- package/vendors/clio/prompts/wtfp/checkpoint.md +66 -0
- package/vendors/clio/prompts/wtfp/contribute.md +15 -0
- package/vendors/clio/prompts/wtfp/create-outline.md +64 -0
- package/vendors/clio/prompts/wtfp/create-poster.md +15 -0
- package/vendors/clio/prompts/wtfp/create-slides.md +15 -0
- package/vendors/clio/prompts/wtfp/discuss-section.md +56 -0
- package/vendors/clio/prompts/wtfp/execute-outline.md +66 -0
- package/vendors/clio/prompts/wtfp/export-latex.md +15 -0
- package/vendors/clio/prompts/wtfp/help.md +43 -0
- package/vendors/clio/prompts/wtfp/insert-section.md +52 -0
- package/vendors/clio/prompts/wtfp/list-assumptions.md +54 -0
- package/vendors/clio/prompts/wtfp/map-project.md +54 -0
- package/vendors/clio/prompts/wtfp/new-paper.md +61 -0
- package/vendors/clio/prompts/wtfp/pause-writing.md +58 -0
- package/vendors/clio/prompts/wtfp/plan-milestone-gaps.md +54 -0
- package/vendors/clio/prompts/wtfp/plan-revision.md +54 -0
- package/vendors/clio/prompts/wtfp/plan-section.md +66 -0
- package/vendors/clio/prompts/wtfp/polish-prose.md +54 -0
- package/vendors/clio/prompts/wtfp/progress.md +66 -0
- package/vendors/clio/prompts/wtfp/quick.md +54 -0
- package/vendors/clio/prompts/wtfp/remove-section.md +15 -0
- package/vendors/clio/prompts/wtfp/report-bug.md +15 -0
- package/vendors/clio/prompts/wtfp/request-feature.md +15 -0
- package/vendors/clio/prompts/wtfp/research-gap.md +15 -0
- package/vendors/clio/prompts/wtfp/resume-writing.md +62 -0
- package/vendors/clio/prompts/wtfp/review-section.md +58 -0
- package/vendors/clio/prompts/wtfp/settings.md +48 -0
- package/vendors/clio/prompts/wtfp/submit-milestone.md +64 -0
- package/vendors/clio/prompts/wtfp/update.md +15 -0
- package/vendors/clio/prompts/wtfp/verify-work.md +54 -0
- package/vendors/clio/prompts/wtfp/write-section.md +66 -0
- package/vendors/clio/prompts/wtfp-add-todo.md +52 -0
- package/vendors/clio/prompts/wtfp-analyze-bib.md +15 -0
- package/vendors/clio/prompts/wtfp-audit-milestone.md +15 -0
- package/vendors/clio/prompts/wtfp-check-refs.md +15 -0
- package/vendors/clio/prompts/wtfp-check-todos.md +50 -0
- package/vendors/clio/prompts/wtfp-checkpoint.md +66 -0
- package/vendors/clio/prompts/wtfp-contribute.md +15 -0
- package/vendors/clio/prompts/wtfp-create-outline.md +64 -0
- package/vendors/clio/prompts/wtfp-create-poster.md +15 -0
- package/vendors/clio/prompts/wtfp-create-slides.md +15 -0
- package/vendors/clio/prompts/wtfp-discuss-section.md +56 -0
- package/vendors/clio/prompts/wtfp-execute-outline.md +66 -0
- package/vendors/clio/prompts/wtfp-export-latex.md +15 -0
- package/vendors/clio/prompts/wtfp-help.md +43 -0
- package/vendors/clio/prompts/wtfp-insert-section.md +52 -0
- package/vendors/clio/prompts/wtfp-list-assumptions.md +54 -0
- package/vendors/clio/prompts/wtfp-map-project.md +54 -0
- package/vendors/clio/prompts/wtfp-new-paper.md +61 -0
- package/vendors/clio/prompts/wtfp-pause-writing.md +58 -0
- package/vendors/clio/prompts/wtfp-plan-milestone-gaps.md +54 -0
- package/vendors/clio/prompts/wtfp-plan-revision.md +54 -0
- package/vendors/clio/prompts/wtfp-plan-section.md +66 -0
- package/vendors/clio/prompts/wtfp-polish-prose.md +54 -0
- package/vendors/clio/prompts/wtfp-progress.md +66 -0
- package/vendors/clio/prompts/wtfp-quick.md +54 -0
- package/vendors/clio/prompts/wtfp-remove-section.md +15 -0
- package/vendors/clio/prompts/wtfp-report-bug.md +15 -0
- package/vendors/clio/prompts/wtfp-request-feature.md +15 -0
- package/vendors/clio/prompts/wtfp-research-gap.md +15 -0
- package/vendors/clio/prompts/wtfp-resume-writing.md +62 -0
- package/vendors/clio/prompts/wtfp-review-section.md +58 -0
- package/vendors/clio/prompts/wtfp-settings.md +48 -0
- package/vendors/clio/prompts/wtfp-submit-milestone.md +64 -0
- package/vendors/clio/prompts/wtfp-update.md +15 -0
- package/vendors/clio/prompts/wtfp-verify-work.md +54 -0
- package/vendors/clio/prompts/wtfp-write-section.md +66 -0
- package/vendors/clio/repository/CONTRIBUTING.md +183 -0
- package/vendors/clio/roles/argument-verifier.md +62 -0
- package/vendors/clio/roles/citation-expert.md +63 -0
- package/vendors/clio/roles/citation-formatter.md +63 -0
- package/vendors/clio/roles/coherence-checker.md +61 -0
- package/vendors/clio/roles/outliner.md +68 -0
- package/vendors/clio/roles/plan-checker.md +62 -0
- package/vendors/clio/roles/prose-polisher.md +63 -0
- package/vendors/clio/roles/research-synthesizer.md +65 -0
- package/vendors/clio/roles/section-planner.md +65 -0
- package/vendors/clio/roles/section-reviewer.md +61 -0
- package/vendors/clio/roles/section-writer.md +66 -0
- package/vendors/clio/schemas/action.schema.json +129 -0
- package/vendors/clio/schemas/aliases.schema.json +26 -0
- package/vendors/clio/schemas/catalog.schema.json +61 -0
- package/vendors/clio/schemas/effects.schema.json +26 -0
- package/vendors/clio/schemas/role-result.schema.json +74 -0
- package/vendors/clio/schemas/tools.schema.json +26 -0
- package/vendors/clio/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/vendors/clio/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/vendors/clio/skills/wtfp-deliver-research/references/actions.md +117 -0
- package/vendors/clio/skills/wtfp-manage-project/SKILL.md +40 -0
- package/vendors/clio/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/vendors/clio/skills/wtfp-manage-project/references/actions.md +90 -0
- package/vendors/clio/skills/wtfp-plan-section/SKILL.md +39 -0
- package/vendors/clio/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/vendors/clio/skills/wtfp-plan-section/references/actions.md +129 -0
- package/vendors/clio/skills/wtfp-research-literature/SKILL.md +37 -0
- package/vendors/clio/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/vendors/clio/skills/wtfp-research-literature/references/actions.md +115 -0
- package/vendors/clio/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/vendors/clio/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/vendors/clio/skills/wtfp-review-manuscript/references/actions.md +112 -0
- package/vendors/clio/skills/wtfp-start-project/SKILL.md +38 -0
- package/vendors/clio/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/vendors/clio/skills/wtfp-start-project/references/actions.md +80 -0
- package/vendors/clio/skills/wtfp-write-section/SKILL.md +37 -0
- package/vendors/clio/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/vendors/clio/skills/wtfp-write-section/references/actions.md +69 -0
- package/vendors/clio/tools/README.md +13 -0
- package/vendors/clio/tools/bibliography/analyze-impact.js +109 -0
- package/vendors/clio/tools/bibliography/format.js +161 -0
- package/vendors/clio/tools/bibliography/index.js +104 -0
- package/vendors/clio/tools/citation/fetch.js +299 -0
- package/vendors/clio/tools/citation/rank.js +145 -0
- package/vendors/clio/tools/citation/scholar-lookup.js +188 -0
- package/vendors/clio/tools/citation/semantic-scholar.js +184 -0
- package/vendors/clio/tools.json +54 -0
- package/vendors/clio/workflows/add-todo.md +32 -0
- package/vendors/clio/workflows/analyze-bib.md +33 -0
- package/vendors/clio/workflows/audit-milestone.md +32 -0
- package/vendors/clio/workflows/check-refs.md +32 -0
- package/vendors/clio/workflows/check-todos.md +32 -0
- package/vendors/clio/workflows/checkpoint.md +32 -0
- package/vendors/clio/workflows/contribute.md +30 -0
- package/vendors/clio/workflows/create-outline.md +32 -0
- package/vendors/clio/workflows/create-poster.md +32 -0
- package/vendors/clio/workflows/create-slides.md +32 -0
- package/vendors/clio/workflows/discuss-section.md +32 -0
- package/vendors/clio/workflows/execute-outline.md +32 -0
- package/vendors/clio/workflows/export-latex.md +32 -0
- package/vendors/clio/workflows/help.md +30 -0
- package/vendors/clio/workflows/insert-section.md +32 -0
- package/vendors/clio/workflows/list-assumptions.md +32 -0
- package/vendors/clio/workflows/map-project.md +32 -0
- package/vendors/clio/workflows/new-paper.md +37 -0
- package/vendors/clio/workflows/pause-writing.md +32 -0
- package/vendors/clio/workflows/plan-milestone-gaps.md +32 -0
- package/vendors/clio/workflows/plan-revision.md +32 -0
- package/vendors/clio/workflows/plan-section.md +32 -0
- package/vendors/clio/workflows/polish-prose.md +32 -0
- package/vendors/clio/workflows/progress.md +32 -0
- package/vendors/clio/workflows/quick.md +32 -0
- package/vendors/clio/workflows/remove-section.md +32 -0
- package/vendors/clio/workflows/report-bug.md +30 -0
- package/vendors/clio/workflows/request-feature.md +30 -0
- package/vendors/clio/workflows/research-gap.md +32 -0
- package/vendors/clio/workflows/resume-writing.md +32 -0
- package/vendors/clio/workflows/review-section.md +32 -0
- package/vendors/clio/workflows/settings.md +32 -0
- package/vendors/clio/workflows/submit-milestone.md +32 -0
- package/vendors/clio/workflows/update.md +30 -0
- package/vendors/clio/workflows/verify-work.md +32 -0
- package/vendors/clio/workflows/write-section.md +32 -0
- package/vendors/codex/.agents/plugins/marketplace.json +20 -0
- package/vendors/codex/.wtfp-generated.json +12 -0
- package/vendors/codex/plugins/wtf-p/.codex-plugin/plugin.json +32 -0
- package/vendors/codex/plugins/wtf-p/.wtfp-generated.json +604 -0
- package/vendors/codex/plugins/wtf-p/actions/add-todo.json +52 -0
- package/vendors/codex/plugins/wtf-p/actions/analyze-bib.json +97 -0
- package/vendors/codex/plugins/wtf-p/actions/audit-milestone.json +63 -0
- package/vendors/codex/plugins/wtf-p/actions/check-refs.json +80 -0
- package/vendors/codex/plugins/wtf-p/actions/check-todos.json +52 -0
- package/vendors/codex/plugins/wtf-p/actions/checkpoint.json +76 -0
- package/vendors/codex/plugins/wtf-p/actions/contribute.json +57 -0
- package/vendors/codex/plugins/wtf-p/actions/create-outline.json +80 -0
- package/vendors/codex/plugins/wtf-p/actions/create-poster.json +59 -0
- package/vendors/codex/plugins/wtf-p/actions/create-slides.json +59 -0
- package/vendors/codex/plugins/wtf-p/actions/discuss-section.json +76 -0
- package/vendors/codex/plugins/wtf-p/actions/execute-outline.json +116 -0
- package/vendors/codex/plugins/wtf-p/actions/export-latex.json +65 -0
- package/vendors/codex/plugins/wtf-p/actions/help.json +30 -0
- package/vendors/codex/plugins/wtf-p/actions/insert-section.json +61 -0
- package/vendors/codex/plugins/wtf-p/actions/list-assumptions.json +35 -0
- package/vendors/codex/plugins/wtf-p/actions/map-project.json +57 -0
- package/vendors/codex/plugins/wtf-p/actions/new-paper.json +70 -0
- package/vendors/codex/plugins/wtf-p/actions/pause-writing.json +71 -0
- package/vendors/codex/plugins/wtf-p/actions/plan-milestone-gaps.json +57 -0
- package/vendors/codex/plugins/wtf-p/actions/plan-revision.json +58 -0
- package/vendors/codex/plugins/wtf-p/actions/plan-section.json +97 -0
- package/vendors/codex/plugins/wtf-p/actions/polish-prose.json +69 -0
- package/vendors/codex/plugins/wtf-p/actions/progress.json +51 -0
- package/vendors/codex/plugins/wtf-p/actions/quick.json +70 -0
- package/vendors/codex/plugins/wtf-p/actions/remove-section.json +63 -0
- package/vendors/codex/plugins/wtf-p/actions/report-bug.json +47 -0
- package/vendors/codex/plugins/wtf-p/actions/request-feature.json +47 -0
- package/vendors/codex/plugins/wtf-p/actions/research-gap.json +101 -0
- package/vendors/codex/plugins/wtf-p/actions/resume-writing.json +63 -0
- package/vendors/codex/plugins/wtf-p/actions/review-section.json +83 -0
- package/vendors/codex/plugins/wtf-p/actions/settings.json +47 -0
- package/vendors/codex/plugins/wtf-p/actions/submit-milestone.json +77 -0
- package/vendors/codex/plugins/wtf-p/actions/update.json +42 -0
- package/vendors/codex/plugins/wtf-p/actions/verify-work.json +63 -0
- package/vendors/codex/plugins/wtf-p/actions/write-section.json +115 -0
- package/vendors/codex/plugins/wtf-p/aliases.lock.json +42 -0
- package/vendors/codex/plugins/wtf-p/catalog.json +127 -0
- package/vendors/codex/plugins/wtf-p/compatibility/action-availability.json +314 -0
- package/vendors/codex/plugins/wtf-p/effects.json +107 -0
- package/vendors/codex/plugins/wtf-p/fleets/wtfp-draft-review.json +35 -0
- package/vendors/codex/plugins/wtf-p/fleets/wtfp-plan-section.json +34 -0
- package/vendors/codex/plugins/wtf-p/project/README.md +65 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/checkpoint.schema.json +102 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/common.schema.json +33 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/config.schema.json +69 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/decisions.schema.json +31 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/evidence.schema.json +48 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/manifest.schema.json +102 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/outline.schema.json +67 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/section.schema.json +95 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/source.schema.json +73 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/state.schema.json +58 -0
- package/vendors/codex/plugins/wtf-p/project/schemas/validation.schema.json +74 -0
- package/vendors/codex/plugins/wtf-p/project/templates/checkpoint.json +25 -0
- package/vendors/codex/plugins/wtf-p/project/templates/config.json +31 -0
- package/vendors/codex/plugins/wtf-p/project/templates/decisions.json +35 -0
- package/vendors/codex/plugins/wtf-p/project/templates/evidence.json +18 -0
- package/vendors/codex/plugins/wtf-p/project/templates/manifest.json +30 -0
- package/vendors/codex/plugins/wtf-p/project/templates/outline.json +38 -0
- package/vendors/codex/plugins/wtf-p/project/templates/section.json +32 -0
- package/vendors/codex/plugins/wtf-p/project/templates/source.json +20 -0
- package/vendors/codex/plugins/wtf-p/project/templates/state.json +22 -0
- package/vendors/codex/plugins/wtf-p/project/templates/validation.json +32 -0
- package/vendors/codex/plugins/wtf-p/repository/CONTRIBUTING.md +183 -0
- package/vendors/codex/plugins/wtf-p/roles/argument-verifier.md +62 -0
- package/vendors/codex/plugins/wtf-p/roles/citation-expert.md +63 -0
- package/vendors/codex/plugins/wtf-p/roles/citation-formatter.md +63 -0
- package/vendors/codex/plugins/wtf-p/roles/coherence-checker.md +61 -0
- package/vendors/codex/plugins/wtf-p/roles/outliner.md +68 -0
- package/vendors/codex/plugins/wtf-p/roles/plan-checker.md +62 -0
- package/vendors/codex/plugins/wtf-p/roles/prose-polisher.md +63 -0
- package/vendors/codex/plugins/wtf-p/roles/research-synthesizer.md +65 -0
- package/vendors/codex/plugins/wtf-p/roles/section-planner.md +65 -0
- package/vendors/codex/plugins/wtf-p/roles/section-reviewer.md +61 -0
- package/vendors/codex/plugins/wtf-p/roles/section-writer.md +66 -0
- package/vendors/codex/plugins/wtf-p/schemas/action.schema.json +129 -0
- package/vendors/codex/plugins/wtf-p/schemas/aliases.schema.json +26 -0
- package/vendors/codex/plugins/wtf-p/schemas/catalog.schema.json +61 -0
- package/vendors/codex/plugins/wtf-p/schemas/effects.schema.json +26 -0
- package/vendors/codex/plugins/wtf-p/schemas/role-result.schema.json +74 -0
- package/vendors/codex/plugins/wtf-p/schemas/tools.schema.json +26 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-deliver-research/references/actions.md +117 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-manage-project/SKILL.md +40 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-manage-project/references/actions.md +90 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-plan-section/SKILL.md +39 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-plan-section/references/actions.md +129 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-research-literature/SKILL.md +37 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-research-literature/references/actions.md +115 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-review-manuscript/references/actions.md +112 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-start-project/SKILL.md +38 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-start-project/references/actions.md +80 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-write-section/SKILL.md +37 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/vendors/codex/plugins/wtf-p/skills/wtfp-write-section/references/actions.md +69 -0
- package/vendors/codex/plugins/wtf-p/tools/README.md +13 -0
- package/vendors/codex/plugins/wtf-p/tools/bibliography/analyze-impact.js +109 -0
- package/vendors/codex/plugins/wtf-p/tools/bibliography/format.js +161 -0
- package/vendors/codex/plugins/wtf-p/tools/bibliography/index.js +104 -0
- package/vendors/codex/plugins/wtf-p/tools/citation/fetch.js +299 -0
- package/vendors/codex/plugins/wtf-p/tools/citation/rank.js +145 -0
- package/vendors/codex/plugins/wtf-p/tools/citation/scholar-lookup.js +188 -0
- package/vendors/codex/plugins/wtf-p/tools/citation/semantic-scholar.js +184 -0
- package/vendors/codex/plugins/wtf-p/tools.json +54 -0
- package/vendors/codex/plugins/wtf-p/workflows/add-todo.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/analyze-bib.md +33 -0
- package/vendors/codex/plugins/wtf-p/workflows/audit-milestone.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/check-refs.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/check-todos.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/checkpoint.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/contribute.md +30 -0
- package/vendors/codex/plugins/wtf-p/workflows/create-outline.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/create-poster.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/create-slides.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/discuss-section.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/execute-outline.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/export-latex.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/help.md +30 -0
- package/vendors/codex/plugins/wtf-p/workflows/insert-section.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/list-assumptions.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/map-project.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/new-paper.md +37 -0
- package/vendors/codex/plugins/wtf-p/workflows/pause-writing.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/plan-milestone-gaps.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/plan-revision.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/plan-section.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/polish-prose.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/progress.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/quick.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/remove-section.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/report-bug.md +30 -0
- package/vendors/codex/plugins/wtf-p/workflows/request-feature.md +30 -0
- package/vendors/codex/plugins/wtf-p/workflows/research-gap.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/resume-writing.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/review-section.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/settings.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/submit-milestone.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/update.md +30 -0
- package/vendors/codex/plugins/wtf-p/workflows/verify-work.md +32 -0
- package/vendors/codex/plugins/wtf-p/workflows/write-section.md +32 -0
- package/vendors/copilot/.wtfp-generated.json +848 -0
- package/vendors/copilot/marketplace.json +24 -0
- package/vendors/copilot/plugins/wtf-p/.claude-plugin/plugin.json +12 -0
- package/vendors/copilot/plugins/wtf-p/.wtfp-generated.json +792 -0
- package/vendors/copilot/plugins/wtf-p/actions/add-todo.json +52 -0
- package/vendors/copilot/plugins/wtf-p/actions/analyze-bib.json +97 -0
- package/vendors/copilot/plugins/wtf-p/actions/audit-milestone.json +63 -0
- package/vendors/copilot/plugins/wtf-p/actions/check-refs.json +80 -0
- package/vendors/copilot/plugins/wtf-p/actions/check-todos.json +52 -0
- package/vendors/copilot/plugins/wtf-p/actions/checkpoint.json +76 -0
- package/vendors/copilot/plugins/wtf-p/actions/contribute.json +57 -0
- package/vendors/copilot/plugins/wtf-p/actions/create-outline.json +80 -0
- package/vendors/copilot/plugins/wtf-p/actions/create-poster.json +59 -0
- package/vendors/copilot/plugins/wtf-p/actions/create-slides.json +59 -0
- package/vendors/copilot/plugins/wtf-p/actions/discuss-section.json +76 -0
- package/vendors/copilot/plugins/wtf-p/actions/execute-outline.json +116 -0
- package/vendors/copilot/plugins/wtf-p/actions/export-latex.json +65 -0
- package/vendors/copilot/plugins/wtf-p/actions/help.json +30 -0
- package/vendors/copilot/plugins/wtf-p/actions/insert-section.json +61 -0
- package/vendors/copilot/plugins/wtf-p/actions/list-assumptions.json +35 -0
- package/vendors/copilot/plugins/wtf-p/actions/map-project.json +57 -0
- package/vendors/copilot/plugins/wtf-p/actions/new-paper.json +70 -0
- package/vendors/copilot/plugins/wtf-p/actions/pause-writing.json +71 -0
- package/vendors/copilot/plugins/wtf-p/actions/plan-milestone-gaps.json +57 -0
- package/vendors/copilot/plugins/wtf-p/actions/plan-revision.json +58 -0
- package/vendors/copilot/plugins/wtf-p/actions/plan-section.json +97 -0
- package/vendors/copilot/plugins/wtf-p/actions/polish-prose.json +69 -0
- package/vendors/copilot/plugins/wtf-p/actions/progress.json +51 -0
- package/vendors/copilot/plugins/wtf-p/actions/quick.json +70 -0
- package/vendors/copilot/plugins/wtf-p/actions/remove-section.json +63 -0
- package/vendors/copilot/plugins/wtf-p/actions/report-bug.json +47 -0
- package/vendors/copilot/plugins/wtf-p/actions/request-feature.json +47 -0
- package/vendors/copilot/plugins/wtf-p/actions/research-gap.json +101 -0
- package/vendors/copilot/plugins/wtf-p/actions/resume-writing.json +63 -0
- package/vendors/copilot/plugins/wtf-p/actions/review-section.json +83 -0
- package/vendors/copilot/plugins/wtf-p/actions/settings.json +47 -0
- package/vendors/copilot/plugins/wtf-p/actions/submit-milestone.json +77 -0
- package/vendors/copilot/plugins/wtf-p/actions/update.json +42 -0
- package/vendors/copilot/plugins/wtf-p/actions/verify-work.json +63 -0
- package/vendors/copilot/plugins/wtf-p/actions/write-section.json +115 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-argument-verifier.md +65 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-citation-expert.md +68 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-citation-formatter.md +68 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-coherence-checker.md +64 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-outliner.md +73 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-plan-checker.md +65 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-prose-polisher.md +68 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-research-synthesizer.md +70 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-section-planner.md +70 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-section-reviewer.md +64 -0
- package/vendors/copilot/plugins/wtf-p/agents/wtfp-section-writer.md +71 -0
- package/vendors/copilot/plugins/wtf-p/aliases.lock.json +42 -0
- package/vendors/copilot/plugins/wtf-p/catalog.json +127 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-add-todo.md +59 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-analyze-bib.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-audit-milestone.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-check-refs.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-check-todos.md +58 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-checkpoint.md +74 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-contribute.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-create-outline.md +73 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-create-poster.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-create-slides.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-discuss-section.md +64 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-execute-outline.md +75 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-export-latex.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-help.md +48 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-insert-section.md +60 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-list-assumptions.md +59 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-map-project.md +61 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-new-paper.md +69 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-pause-writing.md +65 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-plan-milestone-gaps.md +62 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-plan-revision.md +62 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-plan-section.md +75 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-polish-prose.md +63 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-progress.md +72 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-quick.md +63 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-remove-section.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-report-bug.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-request-feature.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-research-gap.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-resume-writing.md +70 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-review-section.md +67 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-settings.md +56 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-submit-milestone.md +72 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-update.md +17 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-verify-work.md +62 -0
- package/vendors/copilot/plugins/wtf-p/commands/wtfp-write-section.md +75 -0
- package/vendors/copilot/plugins/wtf-p/compatibility/action-availability.json +314 -0
- package/vendors/copilot/plugins/wtf-p/effects.json +107 -0
- package/vendors/copilot/plugins/wtf-p/fleets/wtfp-draft-review.json +35 -0
- package/vendors/copilot/plugins/wtf-p/fleets/wtfp-plan-section.json +34 -0
- package/vendors/copilot/plugins/wtf-p/project/README.md +65 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/checkpoint.schema.json +102 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/common.schema.json +33 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/config.schema.json +69 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/decisions.schema.json +31 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/evidence.schema.json +48 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/manifest.schema.json +102 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/outline.schema.json +67 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/section.schema.json +95 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/source.schema.json +73 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/state.schema.json +58 -0
- package/vendors/copilot/plugins/wtf-p/project/schemas/validation.schema.json +74 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/checkpoint.json +25 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/config.json +31 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/decisions.json +35 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/evidence.json +18 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/manifest.json +30 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/outline.json +38 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/section.json +32 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/source.json +20 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/state.json +22 -0
- package/vendors/copilot/plugins/wtf-p/project/templates/validation.json +32 -0
- package/vendors/copilot/plugins/wtf-p/repository/CONTRIBUTING.md +183 -0
- package/vendors/copilot/plugins/wtf-p/roles/argument-verifier.md +62 -0
- package/vendors/copilot/plugins/wtf-p/roles/citation-expert.md +63 -0
- package/vendors/copilot/plugins/wtf-p/roles/citation-formatter.md +63 -0
- package/vendors/copilot/plugins/wtf-p/roles/coherence-checker.md +61 -0
- package/vendors/copilot/plugins/wtf-p/roles/outliner.md +68 -0
- package/vendors/copilot/plugins/wtf-p/roles/plan-checker.md +62 -0
- package/vendors/copilot/plugins/wtf-p/roles/prose-polisher.md +63 -0
- package/vendors/copilot/plugins/wtf-p/roles/research-synthesizer.md +65 -0
- package/vendors/copilot/plugins/wtf-p/roles/section-planner.md +65 -0
- package/vendors/copilot/plugins/wtf-p/roles/section-reviewer.md +61 -0
- package/vendors/copilot/plugins/wtf-p/roles/section-writer.md +66 -0
- package/vendors/copilot/plugins/wtf-p/schemas/action.schema.json +129 -0
- package/vendors/copilot/plugins/wtf-p/schemas/aliases.schema.json +26 -0
- package/vendors/copilot/plugins/wtf-p/schemas/catalog.schema.json +61 -0
- package/vendors/copilot/plugins/wtf-p/schemas/effects.schema.json +26 -0
- package/vendors/copilot/plugins/wtf-p/schemas/role-result.schema.json +74 -0
- package/vendors/copilot/plugins/wtf-p/schemas/tools.schema.json +26 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-deliver-research/references/actions.md +117 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-manage-project/SKILL.md +40 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-manage-project/references/actions.md +90 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-plan-section/SKILL.md +39 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-plan-section/references/actions.md +129 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-research-literature/SKILL.md +37 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-research-literature/references/actions.md +115 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-review-manuscript/references/actions.md +112 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-start-project/SKILL.md +38 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-start-project/references/actions.md +80 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-write-section/SKILL.md +37 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/vendors/copilot/plugins/wtf-p/skills/wtfp-write-section/references/actions.md +69 -0
- package/vendors/copilot/plugins/wtf-p/tools/README.md +13 -0
- package/vendors/copilot/plugins/wtf-p/tools/bibliography/analyze-impact.js +109 -0
- package/vendors/copilot/plugins/wtf-p/tools/bibliography/format.js +161 -0
- package/vendors/copilot/plugins/wtf-p/tools/bibliography/index.js +104 -0
- package/vendors/copilot/plugins/wtf-p/tools/citation/fetch.js +299 -0
- package/vendors/copilot/plugins/wtf-p/tools/citation/rank.js +145 -0
- package/vendors/copilot/plugins/wtf-p/tools/citation/scholar-lookup.js +188 -0
- package/vendors/copilot/plugins/wtf-p/tools/citation/semantic-scholar.js +184 -0
- package/vendors/copilot/plugins/wtf-p/tools.json +54 -0
- package/vendors/copilot/plugins/wtf-p/workflows/add-todo.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/analyze-bib.md +33 -0
- package/vendors/copilot/plugins/wtf-p/workflows/audit-milestone.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/check-refs.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/check-todos.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/checkpoint.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/contribute.md +30 -0
- package/vendors/copilot/plugins/wtf-p/workflows/create-outline.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/create-poster.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/create-slides.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/discuss-section.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/execute-outline.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/export-latex.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/help.md +30 -0
- package/vendors/copilot/plugins/wtf-p/workflows/insert-section.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/list-assumptions.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/map-project.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/new-paper.md +37 -0
- package/vendors/copilot/plugins/wtf-p/workflows/pause-writing.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/plan-milestone-gaps.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/plan-revision.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/plan-section.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/polish-prose.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/progress.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/quick.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/remove-section.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/report-bug.md +30 -0
- package/vendors/copilot/plugins/wtf-p/workflows/request-feature.md +30 -0
- package/vendors/copilot/plugins/wtf-p/workflows/research-gap.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/resume-writing.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/review-section.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/settings.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/submit-milestone.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/update.md +30 -0
- package/vendors/copilot/plugins/wtf-p/workflows/verify-work.md +32 -0
- package/vendors/copilot/plugins/wtf-p/workflows/write-section.md +32 -0
- package/vendors/copilot/project/.github/agents/wtfp-argument-verifier.agent.md +62 -0
- package/vendors/copilot/project/.github/agents/wtfp-citation-expert.agent.md +63 -0
- package/vendors/copilot/project/.github/agents/wtfp-citation-formatter.agent.md +63 -0
- package/vendors/copilot/project/.github/agents/wtfp-coherence-checker.agent.md +61 -0
- package/vendors/copilot/project/.github/agents/wtfp-outliner.agent.md +68 -0
- package/vendors/copilot/project/.github/agents/wtfp-plan-checker.agent.md +62 -0
- package/vendors/copilot/project/.github/agents/wtfp-prose-polisher.agent.md +63 -0
- package/vendors/copilot/project/.github/agents/wtfp-research-synthesizer.agent.md +65 -0
- package/vendors/copilot/project/.github/agents/wtfp-section-planner.agent.md +65 -0
- package/vendors/copilot/project/.github/agents/wtfp-section-reviewer.agent.md +61 -0
- package/vendors/copilot/project/.github/agents/wtfp-section-writer.agent.md +66 -0
- package/vendors/copilot/project/.github/copilot-instructions.md +7 -0
- package/vendors/copilot/project/.github/prompts/wtfp-add-todo.prompt.md +54 -0
- package/vendors/copilot/project/.github/prompts/wtfp-analyze-bib.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-audit-milestone.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-check-refs.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-check-todos.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-checkpoint.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-contribute.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-create-outline.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-create-poster.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-create-slides.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-discuss-section.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-execute-outline.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-export-latex.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-help.prompt.md +45 -0
- package/vendors/copilot/project/.github/prompts/wtfp-insert-section.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-list-assumptions.prompt.md +56 -0
- package/vendors/copilot/project/.github/prompts/wtfp-map-project.prompt.md +56 -0
- package/vendors/copilot/project/.github/prompts/wtfp-new-paper.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-pause-writing.prompt.md +60 -0
- package/vendors/copilot/project/.github/prompts/wtfp-plan-milestone-gaps.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-plan-revision.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-plan-section.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-polish-prose.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-progress.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-quick.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-remove-section.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-report-bug.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-request-feature.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-research-gap.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-resume-writing.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-review-section.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-settings.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-submit-milestone.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-update.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-verify-work.prompt.md +18 -0
- package/vendors/copilot/project/.github/prompts/wtfp-write-section.prompt.md +18 -0
- package/vendors/copilot/project/.github/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/vendors/copilot/project/.github/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/skills/wtfp-deliver-research/references/actions.md +129 -0
- package/vendors/copilot/project/.github/skills/wtfp-manage-project/SKILL.md +40 -0
- package/vendors/copilot/project/.github/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/skills/wtfp-manage-project/references/actions.md +154 -0
- package/vendors/copilot/project/.github/skills/wtfp-plan-section/SKILL.md +39 -0
- package/vendors/copilot/project/.github/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/skills/wtfp-plan-section/references/actions.md +177 -0
- package/vendors/copilot/project/.github/skills/wtfp-research-literature/SKILL.md +37 -0
- package/vendors/copilot/project/.github/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/skills/wtfp-research-literature/references/actions.md +115 -0
- package/vendors/copilot/project/.github/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/vendors/copilot/project/.github/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/skills/wtfp-review-manuscript/references/actions.md +160 -0
- package/vendors/copilot/project/.github/skills/wtfp-start-project/SKILL.md +38 -0
- package/vendors/copilot/project/.github/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/skills/wtfp-start-project/references/actions.md +108 -0
- package/vendors/copilot/project/.github/skills/wtfp-write-section/SKILL.md +37 -0
- package/vendors/copilot/project/.github/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/skills/wtfp-write-section/references/actions.md +109 -0
- package/vendors/copilot/project/.github/wtfp/actions/add-todo.json +52 -0
- package/vendors/copilot/project/.github/wtfp/actions/analyze-bib.json +97 -0
- package/vendors/copilot/project/.github/wtfp/actions/audit-milestone.json +63 -0
- package/vendors/copilot/project/.github/wtfp/actions/check-refs.json +80 -0
- package/vendors/copilot/project/.github/wtfp/actions/check-todos.json +52 -0
- package/vendors/copilot/project/.github/wtfp/actions/checkpoint.json +76 -0
- package/vendors/copilot/project/.github/wtfp/actions/contribute.json +57 -0
- package/vendors/copilot/project/.github/wtfp/actions/create-outline.json +80 -0
- package/vendors/copilot/project/.github/wtfp/actions/create-poster.json +59 -0
- package/vendors/copilot/project/.github/wtfp/actions/create-slides.json +59 -0
- package/vendors/copilot/project/.github/wtfp/actions/discuss-section.json +76 -0
- package/vendors/copilot/project/.github/wtfp/actions/execute-outline.json +116 -0
- package/vendors/copilot/project/.github/wtfp/actions/export-latex.json +65 -0
- package/vendors/copilot/project/.github/wtfp/actions/help.json +30 -0
- package/vendors/copilot/project/.github/wtfp/actions/insert-section.json +61 -0
- package/vendors/copilot/project/.github/wtfp/actions/list-assumptions.json +35 -0
- package/vendors/copilot/project/.github/wtfp/actions/map-project.json +57 -0
- package/vendors/copilot/project/.github/wtfp/actions/new-paper.json +70 -0
- package/vendors/copilot/project/.github/wtfp/actions/pause-writing.json +71 -0
- package/vendors/copilot/project/.github/wtfp/actions/plan-milestone-gaps.json +57 -0
- package/vendors/copilot/project/.github/wtfp/actions/plan-revision.json +58 -0
- package/vendors/copilot/project/.github/wtfp/actions/plan-section.json +97 -0
- package/vendors/copilot/project/.github/wtfp/actions/polish-prose.json +69 -0
- package/vendors/copilot/project/.github/wtfp/actions/progress.json +51 -0
- package/vendors/copilot/project/.github/wtfp/actions/quick.json +70 -0
- package/vendors/copilot/project/.github/wtfp/actions/remove-section.json +63 -0
- package/vendors/copilot/project/.github/wtfp/actions/report-bug.json +47 -0
- package/vendors/copilot/project/.github/wtfp/actions/request-feature.json +47 -0
- package/vendors/copilot/project/.github/wtfp/actions/research-gap.json +101 -0
- package/vendors/copilot/project/.github/wtfp/actions/resume-writing.json +63 -0
- package/vendors/copilot/project/.github/wtfp/actions/review-section.json +83 -0
- package/vendors/copilot/project/.github/wtfp/actions/settings.json +47 -0
- package/vendors/copilot/project/.github/wtfp/actions/submit-milestone.json +77 -0
- package/vendors/copilot/project/.github/wtfp/actions/update.json +42 -0
- package/vendors/copilot/project/.github/wtfp/actions/verify-work.json +63 -0
- package/vendors/copilot/project/.github/wtfp/actions/write-section.json +115 -0
- package/vendors/copilot/project/.github/wtfp/aliases.lock.json +42 -0
- package/vendors/copilot/project/.github/wtfp/catalog.json +127 -0
- package/vendors/copilot/project/.github/wtfp/compatibility/action-availability.json +364 -0
- package/vendors/copilot/project/.github/wtfp/effects.json +107 -0
- package/vendors/copilot/project/.github/wtfp/fleets/wtfp-draft-review.json +35 -0
- package/vendors/copilot/project/.github/wtfp/fleets/wtfp-plan-section.json +34 -0
- package/vendors/copilot/project/.github/wtfp/project/README.md +65 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/checkpoint.schema.json +102 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/common.schema.json +33 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/config.schema.json +69 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/decisions.schema.json +31 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/evidence.schema.json +48 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/manifest.schema.json +102 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/outline.schema.json +67 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/section.schema.json +95 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/source.schema.json +73 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/state.schema.json +58 -0
- package/vendors/copilot/project/.github/wtfp/project/schemas/validation.schema.json +74 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/checkpoint.json +25 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/config.json +31 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/decisions.json +35 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/evidence.json +18 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/manifest.json +30 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/outline.json +38 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/section.json +32 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/source.json +20 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/state.json +22 -0
- package/vendors/copilot/project/.github/wtfp/project/templates/validation.json +32 -0
- package/vendors/copilot/project/.github/wtfp/roles/argument-verifier.md +62 -0
- package/vendors/copilot/project/.github/wtfp/roles/citation-expert.md +63 -0
- package/vendors/copilot/project/.github/wtfp/roles/citation-formatter.md +63 -0
- package/vendors/copilot/project/.github/wtfp/roles/coherence-checker.md +61 -0
- package/vendors/copilot/project/.github/wtfp/roles/outliner.md +68 -0
- package/vendors/copilot/project/.github/wtfp/roles/plan-checker.md +62 -0
- package/vendors/copilot/project/.github/wtfp/roles/prose-polisher.md +63 -0
- package/vendors/copilot/project/.github/wtfp/roles/research-synthesizer.md +65 -0
- package/vendors/copilot/project/.github/wtfp/roles/section-planner.md +65 -0
- package/vendors/copilot/project/.github/wtfp/roles/section-reviewer.md +61 -0
- package/vendors/copilot/project/.github/wtfp/roles/section-writer.md +66 -0
- package/vendors/copilot/project/.github/wtfp/schemas/action.schema.json +129 -0
- package/vendors/copilot/project/.github/wtfp/schemas/aliases.schema.json +26 -0
- package/vendors/copilot/project/.github/wtfp/schemas/catalog.schema.json +61 -0
- package/vendors/copilot/project/.github/wtfp/schemas/effects.schema.json +26 -0
- package/vendors/copilot/project/.github/wtfp/schemas/role-result.schema.json +74 -0
- package/vendors/copilot/project/.github/wtfp/schemas/tools.schema.json +26 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-deliver-research/references/actions.md +77 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-manage-project/SKILL.md +40 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-manage-project/references/actions.md +90 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-plan-section/SKILL.md +39 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-plan-section/references/actions.md +113 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-research-literature/SKILL.md +37 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-research-literature/references/actions.md +75 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-review-manuscript/references/actions.md +96 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-start-project/SKILL.md +38 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-start-project/references/actions.md +80 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-write-section/SKILL.md +37 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/vendors/copilot/project/.github/wtfp/skills/wtfp-write-section/references/actions.md +69 -0
- package/vendors/copilot/project/.github/wtfp/tools.json +54 -0
- package/vendors/copilot/project/.github/wtfp/workflows/add-todo.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/analyze-bib.md +33 -0
- package/vendors/copilot/project/.github/wtfp/workflows/audit-milestone.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/check-refs.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/check-todos.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/checkpoint.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/contribute.md +30 -0
- package/vendors/copilot/project/.github/wtfp/workflows/create-outline.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/create-poster.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/create-slides.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/discuss-section.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/execute-outline.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/export-latex.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/help.md +30 -0
- package/vendors/copilot/project/.github/wtfp/workflows/insert-section.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/list-assumptions.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/map-project.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/new-paper.md +37 -0
- package/vendors/copilot/project/.github/wtfp/workflows/pause-writing.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/plan-milestone-gaps.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/plan-revision.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/plan-section.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/polish-prose.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/progress.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/quick.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/remove-section.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/report-bug.md +30 -0
- package/vendors/copilot/project/.github/wtfp/workflows/request-feature.md +30 -0
- package/vendors/copilot/project/.github/wtfp/workflows/research-gap.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/resume-writing.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/review-section.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/settings.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/submit-milestone.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/update.md +30 -0
- package/vendors/copilot/project/.github/wtfp/workflows/verify-work.md +32 -0
- package/vendors/copilot/project/.github/wtfp/workflows/write-section.md +32 -0
- package/vendors/copilot/project/README.md +5 -0
- package/vendors/gemini/.wtfp-generated.json +796 -0
- package/vendors/gemini/GEMINI.md +3 -0
- package/vendors/gemini/actions/add-todo.json +52 -0
- package/vendors/gemini/actions/analyze-bib.json +97 -0
- package/vendors/gemini/actions/audit-milestone.json +63 -0
- package/vendors/gemini/actions/check-refs.json +80 -0
- package/vendors/gemini/actions/check-todos.json +52 -0
- package/vendors/gemini/actions/checkpoint.json +76 -0
- package/vendors/gemini/actions/contribute.json +57 -0
- package/vendors/gemini/actions/create-outline.json +80 -0
- package/vendors/gemini/actions/create-poster.json +59 -0
- package/vendors/gemini/actions/create-slides.json +59 -0
- package/vendors/gemini/actions/discuss-section.json +76 -0
- package/vendors/gemini/actions/execute-outline.json +116 -0
- package/vendors/gemini/actions/export-latex.json +65 -0
- package/vendors/gemini/actions/help.json +30 -0
- package/vendors/gemini/actions/insert-section.json +61 -0
- package/vendors/gemini/actions/list-assumptions.json +35 -0
- package/vendors/gemini/actions/map-project.json +57 -0
- package/vendors/gemini/actions/new-paper.json +70 -0
- package/vendors/gemini/actions/pause-writing.json +71 -0
- package/vendors/gemini/actions/plan-milestone-gaps.json +57 -0
- package/vendors/gemini/actions/plan-revision.json +58 -0
- package/vendors/gemini/actions/plan-section.json +97 -0
- package/vendors/gemini/actions/polish-prose.json +69 -0
- package/vendors/gemini/actions/progress.json +51 -0
- package/vendors/gemini/actions/quick.json +70 -0
- package/vendors/gemini/actions/remove-section.json +63 -0
- package/vendors/gemini/actions/report-bug.json +47 -0
- package/vendors/gemini/actions/request-feature.json +47 -0
- package/vendors/gemini/actions/research-gap.json +101 -0
- package/vendors/gemini/actions/resume-writing.json +63 -0
- package/vendors/gemini/actions/review-section.json +83 -0
- package/vendors/gemini/actions/settings.json +47 -0
- package/vendors/gemini/actions/submit-milestone.json +77 -0
- package/vendors/gemini/actions/update.json +42 -0
- package/vendors/gemini/actions/verify-work.json +63 -0
- package/vendors/gemini/actions/write-section.json +115 -0
- package/vendors/gemini/agents/wtfp/argument-verifier.md +141 -0
- package/vendors/gemini/agents/wtfp/citation-expert.md +142 -0
- package/vendors/gemini/agents/wtfp/citation-formatter.md +142 -0
- package/vendors/gemini/agents/wtfp/coherence-checker.md +140 -0
- package/vendors/gemini/agents/wtfp/outliner.md +147 -0
- package/vendors/gemini/agents/wtfp/plan-checker.md +141 -0
- package/vendors/gemini/agents/wtfp/prose-polisher.md +142 -0
- package/vendors/gemini/agents/wtfp/research-synthesizer.md +144 -0
- package/vendors/gemini/agents/wtfp/section-planner.md +144 -0
- package/vendors/gemini/agents/wtfp/section-reviewer.md +140 -0
- package/vendors/gemini/agents/wtfp/section-writer.md +145 -0
- package/vendors/gemini/aliases.lock.json +42 -0
- package/vendors/gemini/catalog.json +127 -0
- package/vendors/gemini/commands/wtfp/add-todo.toml +712 -0
- package/vendors/gemini/commands/wtfp/analyze-bib.toml +14 -0
- package/vendors/gemini/commands/wtfp/audit-milestone.toml +14 -0
- package/vendors/gemini/commands/wtfp/check-refs.toml +14 -0
- package/vendors/gemini/commands/wtfp/check-todos.toml +570 -0
- package/vendors/gemini/commands/wtfp/checkpoint.toml +1469 -0
- package/vendors/gemini/commands/wtfp/contribute.toml +14 -0
- package/vendors/gemini/commands/wtfp/create-outline.toml +1324 -0
- package/vendors/gemini/commands/wtfp/create-poster.toml +14 -0
- package/vendors/gemini/commands/wtfp/create-slides.toml +14 -0
- package/vendors/gemini/commands/wtfp/discuss-section.toml +996 -0
- package/vendors/gemini/commands/wtfp/execute-outline.toml +1485 -0
- package/vendors/gemini/commands/wtfp/export-latex.toml +14 -0
- package/vendors/gemini/commands/wtfp/help.toml +276 -0
- package/vendors/gemini/commands/wtfp/insert-section.toml +716 -0
- package/vendors/gemini/commands/wtfp/list-assumptions.toml +818 -0
- package/vendors/gemini/commands/wtfp/map-project.toml +747 -0
- package/vendors/gemini/commands/wtfp/new-paper.toml +887 -0
- package/vendors/gemini/commands/wtfp/pause-writing.toml +1033 -0
- package/vendors/gemini/commands/wtfp/plan-milestone-gaps.toml +859 -0
- package/vendors/gemini/commands/wtfp/plan-revision.toml +842 -0
- package/vendors/gemini/commands/wtfp/plan-section.toml +1512 -0
- package/vendors/gemini/commands/wtfp/polish-prose.toml +810 -0
- package/vendors/gemini/commands/wtfp/progress.toml +1444 -0
- package/vendors/gemini/commands/wtfp/quick.toml +782 -0
- package/vendors/gemini/commands/wtfp/remove-section.toml +14 -0
- package/vendors/gemini/commands/wtfp/report-bug.toml +14 -0
- package/vendors/gemini/commands/wtfp/request-feature.toml +14 -0
- package/vendors/gemini/commands/wtfp/research-gap.toml +14 -0
- package/vendors/gemini/commands/wtfp/resume-writing.toml +1277 -0
- package/vendors/gemini/commands/wtfp/review-section.toml +1042 -0
- package/vendors/gemini/commands/wtfp/settings.toml +448 -0
- package/vendors/gemini/commands/wtfp/submit-milestone.toml +1319 -0
- package/vendors/gemini/commands/wtfp/update.toml +14 -0
- package/vendors/gemini/commands/wtfp/verify-work.toml +779 -0
- package/vendors/gemini/commands/wtfp/write-section.toml +1484 -0
- package/vendors/gemini/compatibility/action-availability.json +314 -0
- package/vendors/gemini/effects.json +107 -0
- package/vendors/gemini/fleets/wtfp-draft-review.json +35 -0
- package/vendors/gemini/fleets/wtfp-plan-section.json +34 -0
- package/vendors/gemini/gemini-extension.json +6 -0
- package/vendors/gemini/project/README.md +65 -0
- package/vendors/gemini/project/schemas/checkpoint.schema.json +102 -0
- package/vendors/gemini/project/schemas/common.schema.json +33 -0
- package/vendors/gemini/project/schemas/config.schema.json +69 -0
- package/vendors/gemini/project/schemas/decisions.schema.json +31 -0
- package/vendors/gemini/project/schemas/evidence.schema.json +48 -0
- package/vendors/gemini/project/schemas/manifest.schema.json +102 -0
- package/vendors/gemini/project/schemas/outline.schema.json +67 -0
- package/vendors/gemini/project/schemas/section.schema.json +95 -0
- package/vendors/gemini/project/schemas/source.schema.json +73 -0
- package/vendors/gemini/project/schemas/state.schema.json +58 -0
- package/vendors/gemini/project/schemas/validation.schema.json +74 -0
- package/vendors/gemini/project/templates/checkpoint.json +25 -0
- package/vendors/gemini/project/templates/config.json +31 -0
- package/vendors/gemini/project/templates/decisions.json +35 -0
- package/vendors/gemini/project/templates/evidence.json +18 -0
- package/vendors/gemini/project/templates/manifest.json +30 -0
- package/vendors/gemini/project/templates/outline.json +38 -0
- package/vendors/gemini/project/templates/section.json +32 -0
- package/vendors/gemini/project/templates/source.json +20 -0
- package/vendors/gemini/project/templates/state.json +22 -0
- package/vendors/gemini/project/templates/validation.json +32 -0
- package/vendors/gemini/repository/CONTRIBUTING.md +183 -0
- package/vendors/gemini/roles/argument-verifier.md +62 -0
- package/vendors/gemini/roles/citation-expert.md +63 -0
- package/vendors/gemini/roles/citation-formatter.md +63 -0
- package/vendors/gemini/roles/coherence-checker.md +61 -0
- package/vendors/gemini/roles/outliner.md +68 -0
- package/vendors/gemini/roles/plan-checker.md +62 -0
- package/vendors/gemini/roles/prose-polisher.md +63 -0
- package/vendors/gemini/roles/research-synthesizer.md +65 -0
- package/vendors/gemini/roles/section-planner.md +65 -0
- package/vendors/gemini/roles/section-reviewer.md +61 -0
- package/vendors/gemini/roles/section-writer.md +66 -0
- package/vendors/gemini/schemas/action.schema.json +129 -0
- package/vendors/gemini/schemas/aliases.schema.json +26 -0
- package/vendors/gemini/schemas/catalog.schema.json +61 -0
- package/vendors/gemini/schemas/effects.schema.json +26 -0
- package/vendors/gemini/schemas/role-result.schema.json +74 -0
- package/vendors/gemini/schemas/tools.schema.json +26 -0
- package/vendors/gemini/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/vendors/gemini/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/vendors/gemini/skills/wtfp-deliver-research/references/actions.md +117 -0
- package/vendors/gemini/skills/wtfp-manage-project/SKILL.md +40 -0
- package/vendors/gemini/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/vendors/gemini/skills/wtfp-manage-project/references/actions.md +90 -0
- package/vendors/gemini/skills/wtfp-plan-section/SKILL.md +39 -0
- package/vendors/gemini/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/vendors/gemini/skills/wtfp-plan-section/references/actions.md +129 -0
- package/vendors/gemini/skills/wtfp-research-literature/SKILL.md +37 -0
- package/vendors/gemini/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/vendors/gemini/skills/wtfp-research-literature/references/actions.md +115 -0
- package/vendors/gemini/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/vendors/gemini/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/vendors/gemini/skills/wtfp-review-manuscript/references/actions.md +112 -0
- package/vendors/gemini/skills/wtfp-start-project/SKILL.md +38 -0
- package/vendors/gemini/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/vendors/gemini/skills/wtfp-start-project/references/actions.md +80 -0
- package/vendors/gemini/skills/wtfp-write-section/SKILL.md +37 -0
- package/vendors/gemini/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/vendors/gemini/skills/wtfp-write-section/references/actions.md +69 -0
- package/vendors/gemini/tools/README.md +13 -0
- package/vendors/gemini/tools/bibliography/analyze-impact.js +109 -0
- package/vendors/gemini/tools/bibliography/format.js +161 -0
- package/vendors/gemini/tools/bibliography/index.js +104 -0
- package/vendors/gemini/tools/citation/fetch.js +299 -0
- package/vendors/gemini/tools/citation/rank.js +145 -0
- package/vendors/gemini/tools/citation/scholar-lookup.js +188 -0
- package/vendors/gemini/tools/citation/semantic-scholar.js +184 -0
- package/vendors/gemini/tools.json +54 -0
- package/vendors/gemini/workflows/add-todo.md +32 -0
- package/vendors/gemini/workflows/analyze-bib.md +33 -0
- package/vendors/gemini/workflows/audit-milestone.md +32 -0
- package/vendors/gemini/workflows/check-refs.md +32 -0
- package/vendors/gemini/workflows/check-todos.md +32 -0
- package/vendors/gemini/workflows/checkpoint.md +32 -0
- package/vendors/gemini/workflows/contribute.md +30 -0
- package/vendors/gemini/workflows/create-outline.md +32 -0
- package/vendors/gemini/workflows/create-poster.md +32 -0
- package/vendors/gemini/workflows/create-slides.md +32 -0
- package/vendors/gemini/workflows/discuss-section.md +32 -0
- package/vendors/gemini/workflows/execute-outline.md +32 -0
- package/vendors/gemini/workflows/export-latex.md +32 -0
- package/vendors/gemini/workflows/help.md +30 -0
- package/vendors/gemini/workflows/insert-section.md +32 -0
- package/vendors/gemini/workflows/list-assumptions.md +32 -0
- package/vendors/gemini/workflows/map-project.md +32 -0
- package/vendors/gemini/workflows/new-paper.md +37 -0
- package/vendors/gemini/workflows/pause-writing.md +32 -0
- package/vendors/gemini/workflows/plan-milestone-gaps.md +32 -0
- package/vendors/gemini/workflows/plan-revision.md +32 -0
- package/vendors/gemini/workflows/plan-section.md +32 -0
- package/vendors/gemini/workflows/polish-prose.md +32 -0
- package/vendors/gemini/workflows/progress.md +32 -0
- package/vendors/gemini/workflows/quick.md +32 -0
- package/vendors/gemini/workflows/remove-section.md +32 -0
- package/vendors/gemini/workflows/report-bug.md +30 -0
- package/vendors/gemini/workflows/request-feature.md +30 -0
- package/vendors/gemini/workflows/research-gap.md +32 -0
- package/vendors/gemini/workflows/resume-writing.md +32 -0
- package/vendors/gemini/workflows/review-section.md +32 -0
- package/vendors/gemini/workflows/settings.md +32 -0
- package/vendors/gemini/workflows/submit-milestone.md +32 -0
- package/vendors/gemini/workflows/update.md +30 -0
- package/vendors/gemini/workflows/verify-work.md +32 -0
- package/vendors/gemini/workflows/write-section.md +32 -0
- package/vendors/opencode/.wtfp-generated.json +788 -0
- package/vendors/opencode/actions/add-todo.json +52 -0
- package/vendors/opencode/actions/analyze-bib.json +97 -0
- package/vendors/opencode/actions/audit-milestone.json +63 -0
- package/vendors/opencode/actions/check-refs.json +80 -0
- package/vendors/opencode/actions/check-todos.json +52 -0
- package/vendors/opencode/actions/checkpoint.json +76 -0
- package/vendors/opencode/actions/contribute.json +57 -0
- package/vendors/opencode/actions/create-outline.json +80 -0
- package/vendors/opencode/actions/create-poster.json +59 -0
- package/vendors/opencode/actions/create-slides.json +59 -0
- package/vendors/opencode/actions/discuss-section.json +76 -0
- package/vendors/opencode/actions/execute-outline.json +116 -0
- package/vendors/opencode/actions/export-latex.json +65 -0
- package/vendors/opencode/actions/help.json +30 -0
- package/vendors/opencode/actions/insert-section.json +61 -0
- package/vendors/opencode/actions/list-assumptions.json +35 -0
- package/vendors/opencode/actions/map-project.json +57 -0
- package/vendors/opencode/actions/new-paper.json +70 -0
- package/vendors/opencode/actions/pause-writing.json +71 -0
- package/vendors/opencode/actions/plan-milestone-gaps.json +57 -0
- package/vendors/opencode/actions/plan-revision.json +58 -0
- package/vendors/opencode/actions/plan-section.json +97 -0
- package/vendors/opencode/actions/polish-prose.json +69 -0
- package/vendors/opencode/actions/progress.json +51 -0
- package/vendors/opencode/actions/quick.json +70 -0
- package/vendors/opencode/actions/remove-section.json +63 -0
- package/vendors/opencode/actions/report-bug.json +47 -0
- package/vendors/opencode/actions/request-feature.json +47 -0
- package/vendors/opencode/actions/research-gap.json +101 -0
- package/vendors/opencode/actions/resume-writing.json +63 -0
- package/vendors/opencode/actions/review-section.json +83 -0
- package/vendors/opencode/actions/settings.json +47 -0
- package/vendors/opencode/actions/submit-milestone.json +77 -0
- package/vendors/opencode/actions/update.json +42 -0
- package/vendors/opencode/actions/verify-work.json +63 -0
- package/vendors/opencode/actions/write-section.json +115 -0
- package/vendors/opencode/agents/wtfp/argument-verifier.md +141 -0
- package/vendors/opencode/agents/wtfp/citation-expert.md +142 -0
- package/vendors/opencode/agents/wtfp/citation-formatter.md +142 -0
- package/vendors/opencode/agents/wtfp/coherence-checker.md +140 -0
- package/vendors/opencode/agents/wtfp/outliner.md +147 -0
- package/vendors/opencode/agents/wtfp/plan-checker.md +141 -0
- package/vendors/opencode/agents/wtfp/prose-polisher.md +142 -0
- package/vendors/opencode/agents/wtfp/research-synthesizer.md +144 -0
- package/vendors/opencode/agents/wtfp/section-planner.md +144 -0
- package/vendors/opencode/agents/wtfp/section-reviewer.md +140 -0
- package/vendors/opencode/agents/wtfp/section-writer.md +145 -0
- package/vendors/opencode/aliases.lock.json +42 -0
- package/vendors/opencode/catalog.json +127 -0
- package/vendors/opencode/commands/wtfp/add-todo.md +715 -0
- package/vendors/opencode/commands/wtfp/analyze-bib.md +16 -0
- package/vendors/opencode/commands/wtfp/audit-milestone.md +16 -0
- package/vendors/opencode/commands/wtfp/check-refs.md +16 -0
- package/vendors/opencode/commands/wtfp/check-todos.md +573 -0
- package/vendors/opencode/commands/wtfp/checkpoint.md +1472 -0
- package/vendors/opencode/commands/wtfp/contribute.md +16 -0
- package/vendors/opencode/commands/wtfp/create-outline.md +1327 -0
- package/vendors/opencode/commands/wtfp/create-poster.md +16 -0
- package/vendors/opencode/commands/wtfp/create-slides.md +16 -0
- package/vendors/opencode/commands/wtfp/discuss-section.md +999 -0
- package/vendors/opencode/commands/wtfp/execute-outline.md +1488 -0
- package/vendors/opencode/commands/wtfp/export-latex.md +16 -0
- package/vendors/opencode/commands/wtfp/help.md +279 -0
- package/vendors/opencode/commands/wtfp/insert-section.md +719 -0
- package/vendors/opencode/commands/wtfp/list-assumptions.md +821 -0
- package/vendors/opencode/commands/wtfp/map-project.md +750 -0
- package/vendors/opencode/commands/wtfp/new-paper.md +890 -0
- package/vendors/opencode/commands/wtfp/pause-writing.md +1036 -0
- package/vendors/opencode/commands/wtfp/plan-milestone-gaps.md +862 -0
- package/vendors/opencode/commands/wtfp/plan-revision.md +845 -0
- package/vendors/opencode/commands/wtfp/plan-section.md +1515 -0
- package/vendors/opencode/commands/wtfp/polish-prose.md +813 -0
- package/vendors/opencode/commands/wtfp/progress.md +1447 -0
- package/vendors/opencode/commands/wtfp/quick.md +785 -0
- package/vendors/opencode/commands/wtfp/remove-section.md +16 -0
- package/vendors/opencode/commands/wtfp/report-bug.md +16 -0
- package/vendors/opencode/commands/wtfp/request-feature.md +16 -0
- package/vendors/opencode/commands/wtfp/research-gap.md +16 -0
- package/vendors/opencode/commands/wtfp/resume-writing.md +1280 -0
- package/vendors/opencode/commands/wtfp/review-section.md +1045 -0
- package/vendors/opencode/commands/wtfp/settings.md +451 -0
- package/vendors/opencode/commands/wtfp/submit-milestone.md +1322 -0
- package/vendors/opencode/commands/wtfp/update.md +16 -0
- package/vendors/opencode/commands/wtfp/verify-work.md +782 -0
- package/vendors/opencode/commands/wtfp/write-section.md +1487 -0
- package/vendors/opencode/compatibility/action-availability.json +314 -0
- package/vendors/opencode/effects.json +107 -0
- package/vendors/opencode/fleets/wtfp-draft-review.json +35 -0
- package/vendors/opencode/fleets/wtfp-plan-section.json +34 -0
- package/vendors/opencode/project/README.md +65 -0
- package/vendors/opencode/project/schemas/checkpoint.schema.json +102 -0
- package/vendors/opencode/project/schemas/common.schema.json +33 -0
- package/vendors/opencode/project/schemas/config.schema.json +69 -0
- package/vendors/opencode/project/schemas/decisions.schema.json +31 -0
- package/vendors/opencode/project/schemas/evidence.schema.json +48 -0
- package/vendors/opencode/project/schemas/manifest.schema.json +102 -0
- package/vendors/opencode/project/schemas/outline.schema.json +67 -0
- package/vendors/opencode/project/schemas/section.schema.json +95 -0
- package/vendors/opencode/project/schemas/source.schema.json +73 -0
- package/vendors/opencode/project/schemas/state.schema.json +58 -0
- package/vendors/opencode/project/schemas/validation.schema.json +74 -0
- package/vendors/opencode/project/templates/checkpoint.json +25 -0
- package/vendors/opencode/project/templates/config.json +31 -0
- package/vendors/opencode/project/templates/decisions.json +35 -0
- package/vendors/opencode/project/templates/evidence.json +18 -0
- package/vendors/opencode/project/templates/manifest.json +30 -0
- package/vendors/opencode/project/templates/outline.json +38 -0
- package/vendors/opencode/project/templates/section.json +32 -0
- package/vendors/opencode/project/templates/source.json +20 -0
- package/vendors/opencode/project/templates/state.json +22 -0
- package/vendors/opencode/project/templates/validation.json +32 -0
- package/vendors/opencode/repository/CONTRIBUTING.md +183 -0
- package/vendors/opencode/roles/argument-verifier.md +62 -0
- package/vendors/opencode/roles/citation-expert.md +63 -0
- package/vendors/opencode/roles/citation-formatter.md +63 -0
- package/vendors/opencode/roles/coherence-checker.md +61 -0
- package/vendors/opencode/roles/outliner.md +68 -0
- package/vendors/opencode/roles/plan-checker.md +62 -0
- package/vendors/opencode/roles/prose-polisher.md +63 -0
- package/vendors/opencode/roles/research-synthesizer.md +65 -0
- package/vendors/opencode/roles/section-planner.md +65 -0
- package/vendors/opencode/roles/section-reviewer.md +61 -0
- package/vendors/opencode/roles/section-writer.md +66 -0
- package/vendors/opencode/schemas/action.schema.json +129 -0
- package/vendors/opencode/schemas/aliases.schema.json +26 -0
- package/vendors/opencode/schemas/catalog.schema.json +61 -0
- package/vendors/opencode/schemas/effects.schema.json +26 -0
- package/vendors/opencode/schemas/role-result.schema.json +74 -0
- package/vendors/opencode/schemas/tools.schema.json +26 -0
- package/vendors/opencode/skills/wtfp-deliver-research/SKILL.md +39 -0
- package/vendors/opencode/skills/wtfp-deliver-research/agents/openai.yaml +4 -0
- package/vendors/opencode/skills/wtfp-deliver-research/references/actions.md +117 -0
- package/vendors/opencode/skills/wtfp-manage-project/SKILL.md +40 -0
- package/vendors/opencode/skills/wtfp-manage-project/agents/openai.yaml +4 -0
- package/vendors/opencode/skills/wtfp-manage-project/references/actions.md +90 -0
- package/vendors/opencode/skills/wtfp-plan-section/SKILL.md +39 -0
- package/vendors/opencode/skills/wtfp-plan-section/agents/openai.yaml +4 -0
- package/vendors/opencode/skills/wtfp-plan-section/references/actions.md +129 -0
- package/vendors/opencode/skills/wtfp-research-literature/SKILL.md +37 -0
- package/vendors/opencode/skills/wtfp-research-literature/agents/openai.yaml +4 -0
- package/vendors/opencode/skills/wtfp-research-literature/references/actions.md +115 -0
- package/vendors/opencode/skills/wtfp-review-manuscript/SKILL.md +40 -0
- package/vendors/opencode/skills/wtfp-review-manuscript/agents/openai.yaml +4 -0
- package/vendors/opencode/skills/wtfp-review-manuscript/references/actions.md +112 -0
- package/vendors/opencode/skills/wtfp-start-project/SKILL.md +38 -0
- package/vendors/opencode/skills/wtfp-start-project/agents/openai.yaml +4 -0
- package/vendors/opencode/skills/wtfp-start-project/references/actions.md +80 -0
- package/vendors/opencode/skills/wtfp-write-section/SKILL.md +37 -0
- package/vendors/opencode/skills/wtfp-write-section/agents/openai.yaml +4 -0
- package/vendors/opencode/skills/wtfp-write-section/references/actions.md +69 -0
- package/vendors/opencode/tools/README.md +13 -0
- package/vendors/opencode/tools/bibliography/analyze-impact.js +109 -0
- package/vendors/opencode/tools/bibliography/format.js +161 -0
- package/vendors/opencode/tools/bibliography/index.js +104 -0
- package/vendors/opencode/tools/citation/fetch.js +299 -0
- package/vendors/opencode/tools/citation/rank.js +145 -0
- package/vendors/opencode/tools/citation/scholar-lookup.js +188 -0
- package/vendors/opencode/tools/citation/semantic-scholar.js +184 -0
- package/vendors/opencode/tools.json +54 -0
- package/vendors/opencode/workflows/add-todo.md +32 -0
- package/vendors/opencode/workflows/analyze-bib.md +33 -0
- package/vendors/opencode/workflows/audit-milestone.md +32 -0
- package/vendors/opencode/workflows/check-refs.md +32 -0
- package/vendors/opencode/workflows/check-todos.md +32 -0
- package/vendors/opencode/workflows/checkpoint.md +32 -0
- package/vendors/opencode/workflows/contribute.md +30 -0
- package/vendors/opencode/workflows/create-outline.md +32 -0
- package/vendors/opencode/workflows/create-poster.md +32 -0
- package/vendors/opencode/workflows/create-slides.md +32 -0
- package/vendors/opencode/workflows/discuss-section.md +32 -0
- package/vendors/opencode/workflows/execute-outline.md +32 -0
- package/vendors/opencode/workflows/export-latex.md +32 -0
- package/vendors/opencode/workflows/help.md +30 -0
- package/vendors/opencode/workflows/insert-section.md +32 -0
- package/vendors/opencode/workflows/list-assumptions.md +32 -0
- package/vendors/opencode/workflows/map-project.md +32 -0
- package/vendors/opencode/workflows/new-paper.md +37 -0
- package/vendors/opencode/workflows/pause-writing.md +32 -0
- package/vendors/opencode/workflows/plan-milestone-gaps.md +32 -0
- package/vendors/opencode/workflows/plan-revision.md +32 -0
- package/vendors/opencode/workflows/plan-section.md +32 -0
- package/vendors/opencode/workflows/polish-prose.md +32 -0
- package/vendors/opencode/workflows/progress.md +32 -0
- package/vendors/opencode/workflows/quick.md +32 -0
- package/vendors/opencode/workflows/remove-section.md +32 -0
- package/vendors/opencode/workflows/report-bug.md +30 -0
- package/vendors/opencode/workflows/request-feature.md +30 -0
- package/vendors/opencode/workflows/research-gap.md +32 -0
- package/vendors/opencode/workflows/resume-writing.md +32 -0
- package/vendors/opencode/workflows/review-section.md +32 -0
- package/vendors/opencode/workflows/settings.md +32 -0
- package/vendors/opencode/workflows/submit-milestone.md +32 -0
- package/vendors/opencode/workflows/update.md +30 -0
- package/vendors/opencode/workflows/verify-work.md +32 -0
- package/vendors/opencode/workflows/write-section.md +32 -0
- package/vendors/claude/agents/wtfp/citation-retriever.md +0 -31
- package/vendors/claude/commands/wtfp/analyze-bib.md +0 -315
- package/vendors/claude/commands/wtfp/check-refs.md +0 -207
- package/vendors/claude/commands/wtfp/contribute.md +0 -278
- package/vendors/claude/commands/wtfp/create-outline.md +0 -275
- package/vendors/claude/commands/wtfp/create-poster.md +0 -42
- package/vendors/claude/commands/wtfp/create-slides.md +0 -41
- package/vendors/claude/commands/wtfp/discuss-section.md +0 -71
- package/vendors/claude/commands/wtfp/export-latex.md +0 -216
- package/vendors/claude/commands/wtfp/help.md +0 -370
- package/vendors/claude/commands/wtfp/insert-section.md +0 -130
- package/vendors/claude/commands/wtfp/list-assumptions.md +0 -109
- package/vendors/claude/commands/wtfp/map-project.md +0 -197
- package/vendors/claude/commands/wtfp/new-paper.md +0 -404
- package/vendors/claude/commands/wtfp/pause-writing.md +0 -145
- package/vendors/claude/commands/wtfp/plan-revision.md +0 -180
- package/vendors/claude/commands/wtfp/plan-section.md +0 -247
- package/vendors/claude/commands/wtfp/polish-prose.md +0 -177
- package/vendors/claude/commands/wtfp/progress.md +0 -325
- package/vendors/claude/commands/wtfp/remove-section.md +0 -147
- package/vendors/claude/commands/wtfp/report-bug.md +0 -131
- package/vendors/claude/commands/wtfp/request-feature.md +0 -160
- package/vendors/claude/commands/wtfp/research-gap.md +0 -234
- package/vendors/claude/commands/wtfp/resume-writing.md +0 -142
- package/vendors/claude/commands/wtfp/review-section.md +0 -409
- package/vendors/claude/commands/wtfp/submit-milestone.md +0 -211
- package/vendors/claude/commands/wtfp/write-section.md +0 -273
- package/vendors/claude/mcp/research-server/package.json +0 -13
- package/vendors/claude/mcp/research-server/src/index.js +0 -133
- package/vendors/claude/skills/wtfp/echarts/SKILL.md +0 -47
- package/vendors/claude/skills/wtfp/marp/SKILL.md +0 -49
package/README.md
CHANGED
|
@@ -1,341 +1,292 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
+
<img src="https://raw.githubusercontent.com/akougkas/wtf-p/main/assets/wtfp-banner.jpg" alt="WTF-P Banner" width="600">
|
|
4
|
+
|
|
3
5
|
# WTF-P
|
|
4
6
|
|
|
5
|
-
**Write The
|
|
6
|
-
- **P**aper
|
|
7
|
-
- **P**roposal
|
|
8
|
-
- **P**resentation
|
|
9
|
-
- **P**oster
|
|
7
|
+
**Write The F\*\*\*ing Paper.**
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
Also: Proposal. Presentation. Poster.
|
|
12
10
|
|
|
13
|
-
|
|
14
|
-
npx wtf-p
|
|
15
|
-
```
|
|
11
|
+
Portable, evidence-grounded academic workflows for modern coding agents.
|
|
16
12
|
|
|
17
13
|
</div>
|
|
18
14
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
## What This Does
|
|
22
|
-
|
|
23
|
-
WTF-P turns Claude Code into a structured academic writing system. Instead of chatting with AI and hoping for the best, you get:
|
|
24
|
-
|
|
25
|
-
- **Spec-driven writing** — Define your paper's vision, then execute section by section
|
|
26
|
-
- **Grounded output** — BibTeX integration, citation mapping, no hallucinated references
|
|
27
|
-
- **State management** — Pause, resume, track progress across sessions
|
|
28
|
-
- **Venue templates** — ACM, IEEE, Nature, arXiv-ML structures built in
|
|
15
|
+
WTF-P turns an AI coding agent into a structured research and writing system. It plans before drafting, grounds claims in evidence, isolates section context, delegates bounded work to specialist agents, and verifies the result against the approved plan.
|
|
29
16
|
|
|
30
|
-
|
|
17
|
+
Version `0.6.0-rc.1` is a ground-up modernization of the agent platform. One canonical protocol now generates native resources for Clio Coder, Claude Code, Codex, GitHub Copilot CLI, OpenCode, Antigravity CLI, and Gemini CLI.
|
|
31
18
|
|
|
32
|
-
|
|
19
|
+
## Quick start
|
|
33
20
|
|
|
34
|
-
|
|
21
|
+
Install explicitly for the agent you use:
|
|
35
22
|
|
|
36
23
|
```bash
|
|
37
|
-
npx wtf-p
|
|
24
|
+
npx wtf-p install clio --advanced
|
|
25
|
+
npx wtf-p install claude --advanced
|
|
26
|
+
npx wtf-p install codex --advanced
|
|
27
|
+
npx wtf-p install copilot --advanced
|
|
28
|
+
npx wtf-p install opencode --advanced
|
|
29
|
+
npx wtf-p install antigravity --advanced
|
|
30
|
+
npx wtf-p install gemini --advanced
|
|
38
31
|
```
|
|
39
32
|
|
|
40
|
-
|
|
33
|
+
An interactive terminal can also run `npx wtf-p` and choose a target. A noninteractive bare invocation refuses to write anything; it requires an explicit target or scope.
|
|
41
34
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
/wtfp:plan-section 1 # Plan first section
|
|
46
|
-
/wtfp:write-section # Execute the plan
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
Run `/wtfp:help` for the full command reference.
|
|
35
|
+
Then start a paper with the native WTF-P action exposed by your client. The
|
|
36
|
+
following is the slash-command form used by Clio, Claude, Copilot CLI,
|
|
37
|
+
OpenCode, Antigravity, and Gemini:
|
|
50
38
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
# Local to current project
|
|
59
|
-
npx wtf-p --local
|
|
60
|
-
|
|
61
|
-
# Custom Claude config directory
|
|
62
|
-
npx wtf-p --global --config-dir ~/research/.claude
|
|
63
|
-
|
|
64
|
-
# Check installation status
|
|
65
|
-
npx wtf-p status
|
|
66
|
-
|
|
67
|
-
# Diagnose issues
|
|
68
|
-
npx wtf-p doctor
|
|
39
|
+
```text
|
|
40
|
+
/wtfp:new-paper
|
|
41
|
+
/wtfp:create-outline
|
|
42
|
+
/wtfp:plan-section 1
|
|
43
|
+
/wtfp:write-section 1
|
|
44
|
+
/wtfp:review-section 1
|
|
69
45
|
```
|
|
70
|
-
</details>
|
|
71
|
-
|
|
72
|
-
<details>
|
|
73
|
-
<summary><strong>Upgrading</strong></summary>
|
|
74
46
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
47
|
+
These five lifecycle commands are deliberately unavailable in the Copilot
|
|
48
|
+
cloud projection until that surface has an exact explicit-approval binding.
|
|
49
|
+
|
|
50
|
+
Clio also ships flat `/wtfp-new-paper` compatibility prompts for current releases. The coordinated Clio integration discovers the preferred nested `/wtfp:new-paper` namespace; installation probes that capability in a credential-free disposable profile and falls back gracefully for legacy clients.
|
|
51
|
+
|
|
52
|
+
Codex discovers all 36 stable method routes through seven native Agent Skills
|
|
53
|
+
instead of a `/wtfp:*` command namespace. Twenty-four are adapter-available in the
|
|
54
|
+
current adapter; the other 12 carry deterministic `WTFP_ACTION_UNAVAILABLE`
|
|
55
|
+
references instead of unsupported workflow instructions. Select the owning
|
|
56
|
+
plugin skill explicitly when the route must be unambiguous (for example,
|
|
57
|
+
`$wtf-p:wtfp-start-project` followed by the `new-paper` request and its exact
|
|
58
|
+
arguments). Existing user-level commands can take precedence over extension
|
|
59
|
+
commands in clients that support both; use the client's discovery listing to
|
|
60
|
+
confirm the reported source before testing a new installation.
|
|
61
|
+
|
|
62
|
+
## First-class adapters
|
|
63
|
+
|
|
64
|
+
| Target | Native envelope | Semantic actions: discoverable / adapter-available | Specialists | Skills | Target-specific capabilities |
|
|
65
|
+
| --- | --- | ---: | ---: | ---: | --- |
|
|
66
|
+
| Clio Coder | Extension | 36 / 24 (72 prompt aliases: 48 available) | 11 | 7 | Strict worker recipes; host-session tool policy for slash prompts; two explicit fleets |
|
|
67
|
+
| Claude Code | Claude plugin | 36 / 24 | 11 | 7 | Native command permissions and plugin validation |
|
|
68
|
+
| Codex | Codex plugin | 36 / 24 through skills | Host-managed | 7 | `.codex-plugin` metadata and marketplace packaging |
|
|
69
|
+
| GitHub Copilot | Native CLI plugin plus committed cloud `.github` projection | CLI 36 / 24; cloud 36 / 5 | 11 | 7 | CLI discovery and cloud-safe prompts, agents, skills, and instructions |
|
|
70
|
+
| OpenCode | Filesystem bundle | 36 / 24 | 11 | 7 | Native commands and agents |
|
|
71
|
+
| Antigravity CLI | `agy` plugin | 36 / 24 | 11 | 7 | Commands converted to native skills by `agy` |
|
|
72
|
+
| Gemini CLI | Gemini extension | 36 / 24 | 11 | 7 | TOML commands and extension context |
|
|
73
|
+
|
|
74
|
+
Discovery counts stable action routes, including deterministic refusal stubs;
|
|
75
|
+
it does not by itself establish behavioral support. Clio, Claude, Codex,
|
|
76
|
+
Copilot CLI, OpenCode, Antigravity, and Gemini project 24 of the 36 canonical
|
|
77
|
+
actions as adapter-available and return `WTFP_ACTION_UNAVAILABLE` for `analyze-bib`,
|
|
78
|
+
`audit-milestone`, `check-refs`, `contribute`, `create-poster`,
|
|
79
|
+
`create-slides`, `export-latex`, `remove-section`, `report-bug`,
|
|
80
|
+
`request-feature`, `research-gap`, and `update`, because those actions lack an
|
|
81
|
+
exact target binding for at least one declared capability or effect. The
|
|
82
|
+
Copilot cloud projection marks only `add-todo`, `help`, `list-assumptions`,
|
|
83
|
+
`map-project`, and `pause-writing`; it refuses the other 31 because it also
|
|
84
|
+
lacks an exact explicit-approval binding. Each generated target records its
|
|
85
|
+
machine-readable result in `compatibility/action-availability.json`.
|
|
86
|
+
|
|
87
|
+
An available action has complete semantic capability, effect, and approval
|
|
88
|
+
bindings; that is not automatically an action-scoped host tool allowlist.
|
|
89
|
+
Clio 0.3.8 prompt templates expand into an ordinary main-agent turn and retain
|
|
90
|
+
the session tool surface. The Clio manifest records this as
|
|
91
|
+
`hostToolEnforcement.actionScoped: false`. Use `read-only` for previews or
|
|
92
|
+
supervised `suggest` autonomy for mutations, and deny and stop on any tool call
|
|
93
|
+
outside the action contract. A run under `auto-edit` cannot earn WTF-P's
|
|
94
|
+
no-undeclared-tool safety result merely because the generated prompt told the
|
|
95
|
+
model not to use shell.
|
|
96
|
+
|
|
97
|
+
The adapters are generated artifacts, not seven hand-maintained copies. Every generated envelope includes a cryptographic inventory and the portable protocol resources needed to understand its workflows. Copilot additionally receives a generated, commit-ready `.github` projection for cloud/repository use.
|
|
98
|
+
|
|
99
|
+
For a GitHub-hosted Copilot coding agent, review and copy the `.github/` tree from `vendors/copilot/project/` in the release archive into the target repository, then commit it through that repository's normal review process. The user-level `install copilot` command configures the CLI plugin; it deliberately does not write into an unrelated project checkout.
|
|
100
|
+
|
|
101
|
+
The release-candidate native-discovery matrix was exercised with Claude Code
|
|
102
|
+
2.1.251, Codex CLI 0.144.1, Copilot CLI 1.0.80, OpenCode 1.18.16,
|
|
103
|
+
Antigravity 1.1.22, Gemini CLI 0.57.0, and Clio Coder 0.3.8 at merged
|
|
104
|
+
commit `9b7b80cc`. Real isolated `new-paper` evaluations used Claude Sonnet
|
|
105
|
+
5/xhigh, Codex GPT-5.4/xhigh (GPT-5.6 was unavailable through that CLI's
|
|
106
|
+
ChatGPT-auth route), and Clio GPT-5.6 Terra/xhigh. The compiler-v4 Clio rerun
|
|
107
|
+
earned 8/8 with independent validation of all five previewed records. The
|
|
108
|
+
broader paid routing matrix, full lifecycle chain, and cross-version baseline
|
|
109
|
+
remain separate evidence gates. See [compatibility evidence](docs/COMPATIBILITY.md)
|
|
110
|
+
for exact claims and caveats. These are repository validation results, not a
|
|
111
|
+
claim that `0.6.0-rc.1` has been published.
|
|
112
|
+
|
|
113
|
+
The first retained local-model lifecycle reading used Clio 0.3.8 with
|
|
114
|
+
`dynamo/qwen3.8-27b`. Both native fleet contracts validated, but the lifecycle
|
|
115
|
+
did not pass: high effort timed out before writing, and an effort-off retry
|
|
116
|
+
stopped after `new-paper` because the model attempted a denied shell call and
|
|
117
|
+
made 5,600 section words disagree with the 6,000-word outline target. The five
|
|
118
|
+
records were individually schema-valid. See the
|
|
119
|
+
[blocked evidence](evaluation/v1/evidence/clio-dynamo-lifecycle-blocked/README.md);
|
|
120
|
+
the remaining lifecycle and routing roadmap items stay open. That reading
|
|
121
|
+
binds the earlier WTF-P source `6b58b298`; it predates later remediation for
|
|
122
|
+
exact outline totals and direct-tool use, and is not a behavioral reading of
|
|
123
|
+
the later source revisions.
|
|
124
|
+
|
|
125
|
+
Later post-remediation readings are retained separately because they bind
|
|
126
|
+
different WTF-P commits. At `0245818`, exact `/wtfp:new-paper` arguments arrived
|
|
127
|
+
but the model listed excluded `.git` metadata, read an absolute host Clio
|
|
128
|
+
documentation path, looped on agent discovery, and produced no planning
|
|
129
|
+
records. Those accesses were read-only; zero mutating and network effects were
|
|
130
|
+
applied. At `b4f0543`, the plan/check fleet completed structurally but its
|
|
131
|
+
semantic checks were ungrounded. The `cbba38c` manuscript-path projection
|
|
132
|
+
observation placed draft/review manuscript and summary files in the correct
|
|
133
|
+
roots with no boundary violation, but drafted without the required approved
|
|
134
|
+
plan, left portable state unreconciled, and failed its word target. See the
|
|
135
|
+
[retained RC readings](evaluation/v1/evidence/clio-dynamo-rc-readings/README.md).
|
|
136
|
+
Neither the full lifecycle nor a semantic fleet pass is claimed.
|
|
137
|
+
|
|
138
|
+
A final current-source Dynamo reading at `bf50e23` created exactly five
|
|
139
|
+
initialization records and passed literal schema validation 5/5. It still
|
|
140
|
+
failed the release gate: the outline placed a dependency in the same wave, and
|
|
141
|
+
the model made three successful shell calls plus ten denied shell retries
|
|
142
|
+
despite an explicit no-shell policy. The operator stopped the run before
|
|
143
|
+
`map-project`; no terminal receipt or trustworthy numeric cost exists. See the
|
|
144
|
+
[current-source blocked evidence](evaluation/v1/evidence/clio-dynamo-current-source-blocked/README.md).
|
|
145
|
+
|
|
146
|
+
## The paper lifecycle
|
|
147
|
+
|
|
148
|
+
WTF-P keeps the human in control while making the repeatable work deterministic:
|
|
149
|
+
|
|
150
|
+
1. `/wtfp:new-paper` captures research questions, intended contribution, evidence, audience, venue, and constraints.
|
|
151
|
+
2. `/wtfp:map-project` indexes existing drafts, sources, data, figures, and decisions.
|
|
152
|
+
3. `/wtfp:create-outline` turns the argument into sections, dependencies, and word budgets.
|
|
153
|
+
4. `/wtfp:research-gap` and `/wtfp:analyze-bib` build an evidence map without inventing citations.
|
|
154
|
+
5. `/wtfp:plan-section` creates a traceable section plan and can send it through an independent plan checker.
|
|
155
|
+
6. `/wtfp:write-section` drafts from the approved plan in bounded context.
|
|
156
|
+
7. `/wtfp:review-section`, `/wtfp:verify-work`, and `/wtfp:polish-prose` check argument coverage, evidence, coherence, venue requirements, and prose quality.
|
|
157
|
+
8. `/wtfp:audit-milestone`, `/wtfp:export-latex`, `/wtfp:create-slides`, and `/wtfp:create-poster` prepare deliverables.
|
|
158
|
+
|
|
159
|
+
Use the native help route—`/wtfp:help` on slash-command clients—to inspect all
|
|
160
|
+
36 stable action contracts. Executable availability is target-specific and
|
|
161
|
+
recorded in the generated compatibility manifest.
|
|
162
|
+
|
|
163
|
+
## What became portable
|
|
164
|
+
|
|
165
|
+
The canonical source lives under `protocol/` and has four parts:
|
|
166
|
+
|
|
167
|
+
- A versioned `.planning` project protocol with 11 JSON schemas and ten templates for the project manifest, configuration, state, sources, evidence, decisions, outline, sections, checkpoints, and validation results.
|
|
168
|
+
- Seven standard Agent Skills for starting a project, literature research, section planning, section writing, manuscript review, project management, and research delivery.
|
|
169
|
+
- Thirty-six semantic action contracts declaring inputs, reads, outputs, specialist delegation, tools, effects, and approval boundaries.
|
|
170
|
+
- Eleven host-neutral specialist roles with strict mutation or verification result contracts.
|
|
171
|
+
|
|
172
|
+
Concrete model names and client tool syntax do not live in canonical workflow prose. Each adapter maps semantic needs such as filesystem access, research search, user interaction, and delegation into the active client's capabilities.
|
|
173
|
+
|
|
174
|
+
## Project state
|
|
175
|
+
|
|
176
|
+
New workflows use a versioned `.planning/` directory. Its records are JSON-schema validated and designed to survive movement between clients:
|
|
177
|
+
|
|
178
|
+
```text
|
|
179
|
+
.planning/
|
|
180
|
+
├── project.json
|
|
181
|
+
├── config.json
|
|
182
|
+
├── state.json
|
|
183
|
+
├── decisions.json
|
|
184
|
+
├── structure/outline.json
|
|
185
|
+
├── sources/*.json
|
|
186
|
+
├── evidence/*.json
|
|
187
|
+
├── sections/*/section.json
|
|
188
|
+
├── checkpoints/*.json
|
|
189
|
+
└── validations/*.json
|
|
134
190
|
```
|
|
135
191
|
|
|
136
|
-
|
|
192
|
+
The protocol records evidence separately from prose and records author decisions explicitly. That lets a reviewer trace a claim back to a source and lets a different agent resume without guessing what the author intended.
|
|
137
193
|
|
|
138
|
-
|
|
194
|
+
## Installation safety
|
|
139
195
|
|
|
140
|
-
|
|
141
|
-
- The paper vision
|
|
142
|
-
- That section's plan
|
|
143
|
-
- Relevant citations from your BibTeX
|
|
144
|
-
- Prior sections for continuity
|
|
196
|
+
The `0.6` installer is an ownership-aware transaction engine:
|
|
145
197
|
|
|
146
|
-
|
|
198
|
+
- It rejects filesystem roots, the home directory itself, the repository root, traversal, and symlink escapes.
|
|
199
|
+
- It snapshots package sources and refuses source or destination path races.
|
|
200
|
+
- It publishes files atomically where possible and rolls back a failed transaction.
|
|
201
|
+
- It compensates native marketplace/plugin registration if a later activation step fails.
|
|
202
|
+
- It does not register a partial adapter when any conflicting file was preserved.
|
|
203
|
+
- It records only files it actually wrote, with SHA-256 hashes, adapter-contract v1, and generator-v4 metadata, in a v2 receipt.
|
|
204
|
+
- Reinstallation cannot claim ownership of files it skipped.
|
|
205
|
+
- Uninstall removes exact unchanged owned files. It preserves modified files and unrelated siblings by default.
|
|
206
|
+
- Dry runs are byte-preserving.
|
|
147
207
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
AI drafts. Humans verify. Every section goes through:
|
|
151
|
-
- Citation audit (are these real? are they relevant?)
|
|
152
|
-
- Argument check (does this follow from the evidence?)
|
|
153
|
-
- Rubric validation (does this meet venue requirements?)
|
|
154
|
-
|
|
155
|
-
The system flags issues. You fix them. Iterate until solid.
|
|
156
|
-
|
|
157
|
-
---
|
|
158
|
-
|
|
159
|
-
## The Workflow
|
|
160
|
-
|
|
161
|
-
### Starting Fresh
|
|
162
|
-
|
|
163
|
-
```bash
|
|
164
|
-
/wtfp:new-paper # Deep interview about your research
|
|
165
|
-
/wtfp:create-outline # Generate section structure + word budgets
|
|
166
|
-
```
|
|
167
|
-
|
|
168
|
-
Creates `.planning/` with your paper's specification:
|
|
169
|
-
- `PROJECT.md` — Vision, requirements, constraints
|
|
170
|
-
- `ROADMAP.md` — Section breakdown with status
|
|
171
|
-
- `STATE.md` — Writing progress and context
|
|
172
|
-
|
|
173
|
-
### Writing Sections
|
|
208
|
+
Use a custom isolated client root when evaluating an adapter:
|
|
174
209
|
|
|
175
210
|
```bash
|
|
176
|
-
/wtfp
|
|
177
|
-
/wtfp
|
|
178
|
-
/wtfp:progress # Check status, get next action
|
|
211
|
+
CODEX_HOME=/tmp/wtfp-codex npx wtf-p install codex --advanced
|
|
212
|
+
CLIO_CODER_CONFIG_DIR=/tmp/wtfp-clio npx wtf-p install clio --advanced
|
|
179
213
|
```
|
|
180
214
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
### Review and Polish
|
|
184
|
-
|
|
185
|
-
```bash
|
|
186
|
-
/wtfp:review-section 1 # Three-layer verification
|
|
187
|
-
/wtfp:polish-prose # Remove AI-speak, improve flow
|
|
188
|
-
/wtfp:check-refs # BibTeX audit
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
### Export
|
|
192
|
-
|
|
193
|
-
```bash
|
|
194
|
-
/wtfp:export-latex # Generate .tex with proper formatting
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
---
|
|
198
|
-
|
|
199
|
-
## Reviving Stalled Projects
|
|
200
|
-
|
|
201
|
-
Got a half-finished paper? WTF-P can work with existing material.
|
|
215
|
+
Inspect or remove an installation with:
|
|
202
216
|
|
|
203
217
|
```bash
|
|
204
|
-
|
|
205
|
-
|
|
218
|
+
npx wtf-p status
|
|
219
|
+
npx wtf-p doctor
|
|
220
|
+
npx wtf-p uninstall --clio --dry-run
|
|
221
|
+
npx wtf-p uninstall --clio --yes
|
|
206
222
|
```
|
|
207
223
|
|
|
208
|
-
The
|
|
209
|
-
- Existing drafts and their state
|
|
210
|
-
- Your BibTeX and how citations are used
|
|
211
|
-
- Data files and figures
|
|
212
|
-
- What's missing vs. what's done
|
|
213
|
-
|
|
214
|
-
---
|
|
215
|
-
|
|
216
|
-
## Citation Expert (v0.4.0)
|
|
224
|
+
The legacy `--global`, `--local`, `--claude`, `--gemini`, and `--opencode` selectors remain compatibility aliases during the release-candidate cycle.
|
|
217
225
|
|
|
218
|
-
|
|
226
|
+
## Developing adapters
|
|
219
227
|
|
|
220
|
-
|
|
221
|
-
/wtfp:analyze-bib # Deep analysis of impact (seminal vs rising)
|
|
222
|
-
/wtfp:research-gap # Intent-aware search (seminal/recent)
|
|
223
|
-
/wtfp:check-refs # Auto-suggest missing citations
|
|
224
|
-
```
|
|
225
|
-
|
|
226
|
-
Capabilities:
|
|
227
|
-
- **Tiered Search:** Integrated Semantic Scholar, SerpAPI (Google Scholar), and CrossRef.
|
|
228
|
-
- **Impact Ranking:** Automatically scores papers by citations, velocity, and venue prestige.
|
|
229
|
-
- **Deduplication:** universal anchoring via DOI and Scholar Cluster IDs.
|
|
230
|
-
- **Provenance:** Entries track their metadata source and verification status.
|
|
231
|
-
|
|
232
|
-
---
|
|
233
|
-
|
|
234
|
-
## Command Reference
|
|
235
|
-
|
|
236
|
-
### Setup
|
|
237
|
-
| Command | Purpose |
|
|
238
|
-
|---------|---------|
|
|
239
|
-
| `/wtfp:new-paper` | Initialize paper with deep context gathering |
|
|
240
|
-
| `/wtfp:create-outline` | Generate section structure |
|
|
241
|
-
| `/wtfp:map-project` | Index existing project materials |
|
|
242
|
-
| `/wtfp:analyze-bib` | Deep analysis of your bibliography |
|
|
243
|
-
|
|
244
|
-
### Planning
|
|
245
|
-
| Command | Purpose |
|
|
246
|
-
|---------|---------|
|
|
247
|
-
| `/wtfp:discuss-section [N]` | Articulate vision before planning |
|
|
248
|
-
| `/wtfp:plan-section [N]` | Create execution plan |
|
|
249
|
-
| `/wtfp:list-assumptions [N]` | See what Claude plans to write |
|
|
250
|
-
| `/wtfp:research-gap [N]` | Literature analysis for a section |
|
|
251
|
-
|
|
252
|
-
### Writing
|
|
253
|
-
| Command | Purpose |
|
|
254
|
-
|---------|---------|
|
|
255
|
-
| `/wtfp:write-section` | Execute a plan |
|
|
256
|
-
| `/wtfp:progress` | Status + intelligent next action |
|
|
257
|
-
| `/wtfp:pause-writing` | Save state for later |
|
|
258
|
-
| `/wtfp:resume-writing` | Restore context and continue |
|
|
259
|
-
|
|
260
|
-
### Review
|
|
261
|
-
| Command | Purpose |
|
|
262
|
-
|---------|---------|
|
|
263
|
-
| `/wtfp:review-section [N]` | Three-layer verification |
|
|
264
|
-
| `/wtfp:plan-revision [N]` | Create fix plan from issues |
|
|
265
|
-
| `/wtfp:polish-prose` | Improve readability |
|
|
266
|
-
| `/wtfp:check-refs` | Citation audit |
|
|
267
|
-
|
|
268
|
-
### Export
|
|
269
|
-
| Command | Purpose |
|
|
270
|
-
|---------|---------|
|
|
271
|
-
| `/wtfp:export-latex` | Generate .tex output |
|
|
272
|
-
| `/wtfp:submit-milestone` | Archive submission version |
|
|
273
|
-
|
|
274
|
-
### Contributing
|
|
275
|
-
| Command | Purpose |
|
|
276
|
-
|---------|---------|
|
|
277
|
-
| `/wtfp:report-bug` | File a GitHub issue |
|
|
278
|
-
| `/wtfp:request-feature` | Request new functionality |
|
|
279
|
-
| `/wtfp:contribute` | Submit a pull request |
|
|
280
|
-
|
|
281
|
-
---
|
|
282
|
-
|
|
283
|
-
## Venue Templates
|
|
284
|
-
|
|
285
|
-
| Template | Structure |
|
|
286
|
-
|----------|-----------|
|
|
287
|
-
| `acm-cs` | Intro → Background → Approach → Evaluation → Related Work → Conclusion |
|
|
288
|
-
| `ieee-cs` | Intro → Background → Design → Implementation → Evaluation → Conclusion |
|
|
289
|
-
| `arxiv-ml` | Intro → Related Work → Preliminaries → Method → Experiments → Conclusion |
|
|
290
|
-
| `nature` | Intro → Methods → Results → Discussion |
|
|
291
|
-
| `thesis` | Flexible chapter structure |
|
|
292
|
-
|
|
293
|
-
---
|
|
294
|
-
|
|
295
|
-
## WCN Mode (Reduced Tokens)
|
|
296
|
-
|
|
297
|
-
For smaller models or limited context windows, WTF-P includes compressed workflows:
|
|
228
|
+
Edit canonical resources under `protocol/`, then regenerate every native projection:
|
|
298
229
|
|
|
299
230
|
```bash
|
|
300
|
-
|
|
301
|
-
|
|
231
|
+
npm run build:adapters
|
|
232
|
+
npm run check:adapters
|
|
233
|
+
npm test
|
|
234
|
+
npm run test:integration
|
|
302
235
|
```
|
|
303
236
|
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
237
|
+
`check:adapters` fails when committed generated resources drift from their canonical inputs. The test suite also checks action parity, skills, portable roles, `.planning` schemas, resource containment, exact installer ownership, rollback, uninstall preservation, and native envelope structure.
|
|
238
|
+
|
|
239
|
+
The Clio reference integration is merged into Clio Coder `v0.3.8` at
|
|
240
|
+
`9b7b80cc`. It adds recursive namespaced extension prompts, extension-owned
|
|
241
|
+
agents and fleets, same-extension skill binding, contained `${extensionRoot}`
|
|
242
|
+
resource resolution, exact operator-argument preservation, preservation of
|
|
243
|
+
nested template `state.json` resources, and extension-aware fleet preflight.
|
|
244
|
+
Effective package discovery certifies 72 prompts (36 nested and 36 flat), 11
|
|
245
|
+
agents, seven skills, two fleets, and zero diagnostics. Of those prompts, 48
|
|
246
|
+
aliases represent 24 adapter-available semantic actions and 24 aliases are the nested
|
|
247
|
+
and flat forms of 12 deterministic refusal routes. WTF-P capability-probes that
|
|
248
|
+
surface because Clio currently records, but does not enforce,
|
|
249
|
+
`compatibility.clio`. The generated fleet contracts use directory boundaries
|
|
250
|
+
(`.planning/` and `paper/`) so nested writes are authorized without broadening
|
|
251
|
+
the worker sandbox.
|
|
252
|
+
|
|
253
|
+
The two Clio fleets are operator-invoked native primitives, not implicit
|
|
254
|
+
routes behind `/wtfp:*`. Use
|
|
255
|
+
`clio-coder fleet run wtfp-plan-section --var section=<id>` or
|
|
256
|
+
`clio-coder fleet run wtfp-draft-review --var section=<id>` when their narrower
|
|
257
|
+
specialist contracts are appropriate; the slash-command orchestrator remains
|
|
258
|
+
responsible for approval and portable-state reconciliation around those worker
|
|
259
|
+
steps.
|
|
260
|
+
|
|
261
|
+
## Design principles
|
|
262
|
+
|
|
263
|
+
- Evidence before eloquence: a fluent paragraph is not a substitute for a supported claim.
|
|
264
|
+
- Specification before drafting: author intent and acceptance criteria remain explicit.
|
|
265
|
+
- Portable semantics, native ergonomics: share the method while respecting each client's real plugin model.
|
|
266
|
+
- Bounded delegation: specialists receive the minimum context and authority their task requires.
|
|
267
|
+
- Human approval at consequential boundaries: deletion, commits, merges, package updates, and external issue creation remain explicit effects.
|
|
268
|
+
- Reversible installation: WTF-P never treats an agent's whole configuration directory as its property.
|
|
307
269
|
|
|
308
270
|
## Origin
|
|
309
271
|
|
|
310
|
-
WTF-P was built at the [Gnosis Research Center](https://
|
|
311
|
-
|
|
312
|
-
The problem: research teams with grants to win, papers to publish, and no time to waste on writer's block. Existing AI tools either hallucinated citations or produced generic output that required complete rewrites.
|
|
272
|
+
WTF-P was built at the [Gnosis Research Center](https://grc.iit.edu/) at Illinois Tech for research teams with papers to publish, grants to win, and no time for writer's block.
|
|
313
273
|
|
|
314
|
-
|
|
274
|
+
## Links
|
|
315
275
|
|
|
316
|
-
|
|
276
|
+
- [Changelog](CHANGELOG.md)
|
|
277
|
+
- [Modernization architecture](docs/agent-platform-modernization.md)
|
|
278
|
+
- [Compatibility evidence](docs/COMPATIBILITY.md)
|
|
279
|
+
- [Behavioral evaluation methodology](evaluation/README.md)
|
|
280
|
+
- [Tool execution and MCP decision](docs/adr/0001-hybrid-tool-execution.md)
|
|
281
|
+
- [v0.5 → v0.6 migration guide](docs/MIGRATION_V05_TO_V06.md)
|
|
282
|
+
- [Build and release](docs/BUILD_AND_RELEASE.md)
|
|
283
|
+
- [Contributing](CONTRIBUTING.md)
|
|
284
|
+
- [Roadmap](ROADMAP.md)
|
|
285
|
+
- [License](LICENSE)
|
|
286
|
+
- [GitHub](https://github.com/akougkas/wtf-p)
|
|
317
287
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
## Contributing
|
|
321
|
-
|
|
322
|
-
Found a bug? Want a feature? WTF-P includes commands to help:
|
|
323
|
-
|
|
324
|
-
```bash
|
|
325
|
-
/wtfp:report-bug # Creates a GitHub issue
|
|
326
|
-
/wtfp:request-feature # Submits a feature request
|
|
327
|
-
/wtfp:contribute # Guides you through a PR
|
|
328
|
-
```
|
|
329
|
-
|
|
330
|
-
Or visit [github.com/akougkas/wtf-p](https://github.com/akougkas/wtf-p).
|
|
331
|
-
|
|
332
|
-
---
|
|
333
|
-
|
|
334
|
-
## License
|
|
288
|
+
<div align="center">
|
|
335
289
|
|
|
336
|
-
|
|
290
|
+
**No more excuses. Ship the paper.**
|
|
337
291
|
|
|
338
|
-
<div align="center">
|
|
339
|
-
<br>
|
|
340
|
-
<strong>Stop staring at the cursor. Start shipping papers.</strong>
|
|
341
292
|
</div>
|