wtf-p 0.5.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 +236 -205
- package/bin/commands/doctor.js +30 -9
- package/bin/commands/install-logic.js +573 -89
- package/bin/commands/list.js +4 -12
- package/bin/commands/status.js +15 -12
- package/bin/commands/update.js +5 -4
- package/bin/install.js +223 -39
- 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/citation-fetcher.js +20 -20
- package/bin/lib/citation-ranker.js +44 -32
- package/bin/lib/manifest.js +141 -95
- 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 +109 -43
- package/bin/uninstall.js +776 -504
- package/package.json +23 -13
- 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 +42 -166
- 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 +41 -144
- package/vendors/claude/agents/wtfp/outliner.md +47 -233
- package/vendors/claude/agents/wtfp/plan-checker.md +42 -226
- package/vendors/claude/agents/wtfp/prose-polisher.md +58 -156
- package/vendors/claude/agents/wtfp/research-synthesizer.md +47 -192
- package/vendors/claude/agents/wtfp/section-planner.md +46 -340
- package/vendors/claude/agents/wtfp/section-reviewer.md +41 -159
- package/vendors/claude/agents/wtfp/section-writer.md +46 -287
- 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 +137 -180
- package/vendors/gemini/agents/wtfp/citation-expert.md +128 -27
- package/vendors/gemini/agents/wtfp/citation-formatter.md +129 -25
- package/vendors/gemini/agents/wtfp/coherence-checker.md +136 -158
- package/vendors/gemini/agents/wtfp/outliner.md +143 -248
- package/vendors/gemini/agents/wtfp/plan-checker.md +137 -240
- package/vendors/gemini/agents/wtfp/prose-polisher.md +138 -154
- package/vendors/gemini/agents/wtfp/research-synthesizer.md +140 -201
- package/vendors/gemini/agents/wtfp/section-planner.md +140 -351
- package/vendors/gemini/agents/wtfp/section-reviewer.md +136 -171
- package/vendors/gemini/agents/wtfp/section-writer.md +141 -300
- package/vendors/gemini/aliases.lock.json +42 -0
- package/vendors/gemini/catalog.json +127 -0
- package/vendors/gemini/commands/wtfp/add-todo.toml +678 -68
- package/vendors/gemini/commands/wtfp/analyze-bib.toml +9 -121
- package/vendors/gemini/commands/wtfp/audit-milestone.toml +9 -273
- package/vendors/gemini/commands/wtfp/check-refs.toml +9 -118
- package/vendors/gemini/commands/wtfp/check-todos.toml +567 -142
- package/vendors/gemini/commands/wtfp/checkpoint.toml +1440 -67
- package/vendors/gemini/commands/wtfp/contribute.toml +9 -264
- package/vendors/gemini/commands/wtfp/create-outline.toml +1270 -126
- package/vendors/gemini/commands/wtfp/create-poster.toml +9 -31
- package/vendors/gemini/commands/wtfp/create-slides.toml +9 -30
- package/vendors/gemini/commands/wtfp/discuss-section.toml +993 -59
- package/vendors/gemini/commands/wtfp/execute-outline.toml +1458 -220
- package/vendors/gemini/commands/wtfp/export-latex.toml +9 -204
- package/vendors/gemini/commands/wtfp/help.toml +267 -175
- package/vendors/gemini/commands/wtfp/insert-section.toml +677 -84
- package/vendors/gemini/commands/wtfp/list-assumptions.toml +791 -77
- package/vendors/gemini/commands/wtfp/map-project.toml +733 -85
- package/vendors/gemini/commands/wtfp/new-paper.toml +874 -147
- package/vendors/gemini/commands/wtfp/pause-writing.toml +991 -98
- package/vendors/gemini/commands/wtfp/plan-milestone-gaps.toml +828 -218
- package/vendors/gemini/commands/wtfp/plan-revision.toml +803 -132
- package/vendors/gemini/commands/wtfp/plan-section.toml +1482 -182
- package/vendors/gemini/commands/wtfp/polish-prose.toml +775 -79
- package/vendors/gemini/commands/wtfp/progress.toml +1398 -99
- package/vendors/gemini/commands/wtfp/quick.toml +751 -65
- package/vendors/gemini/commands/wtfp/remove-section.toml +9 -135
- package/vendors/gemini/commands/wtfp/report-bug.toml +9 -121
- package/vendors/gemini/commands/wtfp/request-feature.toml +9 -150
- package/vendors/gemini/commands/wtfp/research-gap.toml +9 -209
- package/vendors/gemini/commands/wtfp/resume-writing.toml +1231 -90
- package/vendors/gemini/commands/wtfp/review-section.toml +1007 -86
- package/vendors/gemini/commands/wtfp/settings.toml +410 -153
- package/vendors/gemini/commands/wtfp/submit-milestone.toml +1279 -311
- package/vendors/gemini/commands/wtfp/update.toml +9 -102
- package/vendors/gemini/commands/wtfp/verify-work.toml +735 -201
- package/vendors/gemini/commands/wtfp/write-section.toml +1457 -201
- 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 +137 -180
- package/vendors/opencode/agents/wtfp/citation-expert.md +128 -27
- package/vendors/opencode/agents/wtfp/citation-formatter.md +129 -25
- package/vendors/opencode/agents/wtfp/coherence-checker.md +136 -158
- package/vendors/opencode/agents/wtfp/outliner.md +143 -248
- package/vendors/opencode/agents/wtfp/plan-checker.md +137 -240
- package/vendors/opencode/agents/wtfp/prose-polisher.md +138 -154
- package/vendors/opencode/agents/wtfp/research-synthesizer.md +140 -201
- package/vendors/opencode/agents/wtfp/section-planner.md +140 -351
- package/vendors/opencode/agents/wtfp/section-reviewer.md +136 -171
- package/vendors/opencode/agents/wtfp/section-writer.md +141 -300
- package/vendors/opencode/aliases.lock.json +42 -0
- package/vendors/opencode/catalog.json +127 -0
- package/vendors/opencode/commands/wtfp/add-todo.md +680 -68
- package/vendors/opencode/commands/wtfp/analyze-bib.md +9 -120
- package/vendors/opencode/commands/wtfp/audit-milestone.md +9 -272
- package/vendors/opencode/commands/wtfp/check-refs.md +9 -117
- package/vendors/opencode/commands/wtfp/check-todos.md +568 -141
- package/vendors/opencode/commands/wtfp/checkpoint.md +1442 -67
- package/vendors/opencode/commands/wtfp/contribute.md +9 -259
- package/vendors/opencode/commands/wtfp/create-outline.md +1272 -126
- package/vendors/opencode/commands/wtfp/create-poster.md +9 -30
- package/vendors/opencode/commands/wtfp/create-slides.md +9 -29
- package/vendors/opencode/commands/wtfp/discuss-section.md +982 -46
- package/vendors/opencode/commands/wtfp/execute-outline.md +1452 -212
- package/vendors/opencode/commands/wtfp/export-latex.md +9 -203
- package/vendors/opencode/commands/wtfp/help.md +267 -173
- package/vendors/opencode/commands/wtfp/insert-section.md +679 -84
- package/vendors/opencode/commands/wtfp/list-assumptions.md +792 -76
- package/vendors/opencode/commands/wtfp/map-project.md +722 -72
- package/vendors/opencode/commands/wtfp/new-paper.md +863 -134
- package/vendors/opencode/commands/wtfp/pause-writing.md +993 -98
- package/vendors/opencode/commands/wtfp/plan-milestone-gaps.md +830 -218
- package/vendors/opencode/commands/wtfp/plan-revision.md +804 -133
- package/vendors/opencode/commands/wtfp/plan-section.md +1472 -171
- package/vendors/opencode/commands/wtfp/polish-prose.md +777 -79
- package/vendors/opencode/commands/wtfp/progress.md +1400 -99
- package/vendors/opencode/commands/wtfp/quick.md +753 -65
- package/vendors/opencode/commands/wtfp/remove-section.md +9 -134
- package/vendors/opencode/commands/wtfp/report-bug.md +9 -120
- package/vendors/opencode/commands/wtfp/request-feature.md +9 -149
- package/vendors/opencode/commands/wtfp/research-gap.md +9 -208
- package/vendors/opencode/commands/wtfp/resume-writing.md +1232 -89
- package/vendors/opencode/commands/wtfp/review-section.md +1007 -85
- package/vendors/opencode/commands/wtfp/settings.md +408 -149
- package/vendors/opencode/commands/wtfp/submit-milestone.md +1280 -310
- package/vendors/opencode/commands/wtfp/update.md +9 -101
- package/vendors/opencode/commands/wtfp/verify-work.md +736 -200
- package/vendors/opencode/commands/wtfp/write-section.md +1449 -190
- 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/commands/wtfp/add-todo.md +0 -108
- package/vendors/claude/commands/wtfp/analyze-bib.md +0 -137
- package/vendors/claude/commands/wtfp/audit-milestone.md +0 -286
- package/vendors/claude/commands/wtfp/check-refs.md +0 -134
- package/vendors/claude/commands/wtfp/check-todos.md +0 -152
- package/vendors/claude/commands/wtfp/checkpoint.md +0 -105
- package/vendors/claude/commands/wtfp/contribute.md +0 -278
- package/vendors/claude/commands/wtfp/create-outline.md +0 -189
- 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/execute-outline.md +0 -257
- package/vendors/claude/commands/wtfp/export-latex.md +0 -216
- package/vendors/claude/commands/wtfp/help.md +0 -264
- 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 -108
- package/vendors/claude/commands/wtfp/new-paper.md +0 -169
- package/vendors/claude/commands/wtfp/pause-writing.md +0 -145
- package/vendors/claude/commands/wtfp/plan-milestone-gaps.md +0 -255
- package/vendors/claude/commands/wtfp/plan-revision.md +0 -180
- package/vendors/claude/commands/wtfp/plan-section.md +0 -222
- package/vendors/claude/commands/wtfp/polish-prose.md +0 -125
- package/vendors/claude/commands/wtfp/progress.md +0 -153
- package/vendors/claude/commands/wtfp/quick.md +0 -107
- 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 -222
- package/vendors/claude/commands/wtfp/resume-writing.md +0 -142
- package/vendors/claude/commands/wtfp/review-section.md +0 -131
- package/vendors/claude/commands/wtfp/settings.md +0 -197
- package/vendors/claude/commands/wtfp/submit-milestone.md +0 -360
- package/vendors/claude/commands/wtfp/update.md +0 -112
- package/vendors/claude/commands/wtfp/verify-work.md +0 -254
- package/vendors/claude/commands/wtfp/write-section.md +0 -237
- 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
|
@@ -8,254 +8,285 @@
|
|
|
8
8
|
|
|
9
9
|
Also: Proposal. Presentation. Poster.
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
npx wtf-p
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
*Academic writing commands for [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [Gemini CLI](https://github.com/google-gemini/gemini-cli), and [OpenCode](https://github.com/opencode-ai/opencode).*
|
|
11
|
+
Portable, evidence-grounded academic workflows for modern coding agents.
|
|
16
12
|
|
|
17
13
|
</div>
|
|
18
14
|
|
|
19
|
-
|
|
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.
|
|
20
16
|
|
|
21
|
-
|
|
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.
|
|
22
18
|
|
|
23
|
-
|
|
19
|
+
## Quick start
|
|
24
20
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
## Quick Start
|
|
21
|
+
Install explicitly for the agent you use:
|
|
28
22
|
|
|
29
23
|
```bash
|
|
30
|
-
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
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
/wtfp:new-paper # Guided interview about your research
|
|
37
|
-
/wtfp:create-outline # Build section structure + word budgets
|
|
38
|
-
/wtfp:plan-section 1 # Plan first section
|
|
39
|
-
/wtfp:write-section # Write the section
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
Run `/wtfp:help` for the full command list.
|
|
43
|
-
|
|
44
|
-
---
|
|
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.
|
|
45
34
|
|
|
46
|
-
|
|
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:
|
|
47
38
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
```bash
|
|
55
|
-
npx wtf-p --global # Claude Code (default)
|
|
56
|
-
npx wtf-p --global --gemini # Gemini CLI
|
|
57
|
-
npx wtf-p --global --opencode # OpenCode
|
|
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
|
|
58
45
|
```
|
|
59
46
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
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
|
|
190
|
+
```
|
|
70
191
|
|
|
71
|
-
|
|
72
|
-
npx wtf-p --local
|
|
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.
|
|
73
193
|
|
|
74
|
-
|
|
75
|
-
npx wtf-p --global --config-dir ~/research/.claude
|
|
194
|
+
## Installation safety
|
|
76
195
|
|
|
77
|
-
|
|
78
|
-
npx wtf-p status
|
|
196
|
+
The `0.6` installer is an ownership-aware transaction engine:
|
|
79
197
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
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.
|
|
83
207
|
|
|
84
|
-
|
|
208
|
+
Use a custom isolated client root when evaluating an adapter:
|
|
85
209
|
|
|
86
210
|
```bash
|
|
87
|
-
npx wtf-p
|
|
88
|
-
npx wtf-p
|
|
89
|
-
npx wtf-p --global --force # Overwrite everything
|
|
90
|
-
npx wtf-p --global --backup-all # Backup before overwriting
|
|
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
|
|
91
213
|
```
|
|
92
214
|
|
|
93
|
-
|
|
215
|
+
Inspect or remove an installation with:
|
|
94
216
|
|
|
95
217
|
```bash
|
|
96
|
-
npx wtf-p
|
|
97
|
-
npx wtf-p
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
Only WTF-P files are removed. Your config files and other tools stay intact.
|
|
101
|
-
|
|
102
|
-
---
|
|
103
|
-
|
|
104
|
-
## Command Reference
|
|
105
|
-
|
|
106
|
-
### Setup
|
|
107
|
-
|
|
108
|
-
| Command | Purpose |
|
|
109
|
-
|---------|---------|
|
|
110
|
-
| `/wtfp:new-paper` | Guided interview to define your paper's vision and requirements |
|
|
111
|
-
| `/wtfp:create-outline` | Build section structure, argument map, and word budgets |
|
|
112
|
-
| `/wtfp:map-project` | Index existing drafts, data, and references |
|
|
113
|
-
| `/wtfp:analyze-bib` | Analyze bibliography and map citations to sections |
|
|
114
|
-
|
|
115
|
-
### Planning
|
|
116
|
-
|
|
117
|
-
| Command | Purpose |
|
|
118
|
-
|---------|---------|
|
|
119
|
-
| `/wtfp:discuss-section [N]` | Discuss your vision for a section before planning |
|
|
120
|
-
| `/wtfp:plan-section [N]` | Create detailed writing plan with quality validation |
|
|
121
|
-
| `/wtfp:list-assumptions [N]` | Preview intended approach before writing |
|
|
122
|
-
| `/wtfp:research-gap [N]` | Research literature for a section (tiered: Semantic Scholar, Google Scholar, CrossRef) |
|
|
123
|
-
|
|
124
|
-
### Writing
|
|
125
|
-
|
|
126
|
-
| Command | Purpose |
|
|
127
|
-
|---------|---------|
|
|
128
|
-
| `/wtfp:write-section` | Execute a section plan with agent-based writing |
|
|
129
|
-
| `/wtfp:execute-outline` | Write all sections in parallel, then check coherence |
|
|
130
|
-
| `/wtfp:quick` | Minimal-ceremony writing for quick tasks |
|
|
131
|
-
| `/wtfp:progress` | Show writing progress and suggest next step |
|
|
132
|
-
| `/wtfp:pause-writing` | Save current progress for later |
|
|
133
|
-
| `/wtfp:resume-writing` | Resume from a previous session |
|
|
134
|
-
|
|
135
|
-
### Review
|
|
136
|
-
|
|
137
|
-
| Command | Purpose |
|
|
138
|
-
|---------|---------|
|
|
139
|
-
| `/wtfp:review-section [N]` | Review for citations, coherence, and venue requirements |
|
|
140
|
-
| `/wtfp:verify-work [N]` | Acceptance-test a section against its plan |
|
|
141
|
-
| `/wtfp:plan-revision [N]` | Create revision plan from review issues |
|
|
142
|
-
| `/wtfp:polish-prose` | Improve clarity, flow, and academic voice |
|
|
143
|
-
| `/wtfp:check-refs` | Audit BibTeX for missing, duplicate, or broken references |
|
|
144
|
-
|
|
145
|
-
### Structure
|
|
146
|
-
|
|
147
|
-
| Command | Purpose |
|
|
148
|
-
|---------|---------|
|
|
149
|
-
| `/wtfp:create-poster` | Full poster creation workflow |
|
|
150
|
-
| `/wtfp:create-slides` | Presentation deck workflow |
|
|
151
|
-
| `/wtfp:insert-section` | Add a new section to the outline |
|
|
152
|
-
| `/wtfp:remove-section` | Remove a section from the outline |
|
|
153
|
-
|
|
154
|
-
### Export & Submission
|
|
155
|
-
|
|
156
|
-
| Command | Purpose |
|
|
157
|
-
|---------|---------|
|
|
158
|
-
| `/wtfp:export-latex` | Export to LaTeX with bibliography and formatting |
|
|
159
|
-
| `/wtfp:audit-milestone` | Pre-submission checks on sections, citations, and word counts |
|
|
160
|
-
| `/wtfp:plan-milestone-gaps` | Create fix plans for gaps found by audit |
|
|
161
|
-
| `/wtfp:submit-milestone` | Archive a completed draft or submission version |
|
|
162
|
-
|
|
163
|
-
### Settings & Productivity
|
|
164
|
-
|
|
165
|
-
| Command | Purpose |
|
|
166
|
-
|---------|---------|
|
|
167
|
-
| `/wtfp:settings` | View and edit project settings interactively |
|
|
168
|
-
| `/wtfp:checkpoint` | Save, restore, and list paper state checkpoints |
|
|
169
|
-
| `/wtfp:add-todo` | Capture a quick note or task without breaking flow |
|
|
170
|
-
| `/wtfp:check-todos` | Review pending todos (act, defer, dismiss) |
|
|
171
|
-
| `/wtfp:update` | Check for updates and install newer version |
|
|
172
|
-
|
|
173
|
-
### Help & Contributing
|
|
174
|
-
|
|
175
|
-
| Command | Purpose |
|
|
176
|
-
|---------|---------|
|
|
177
|
-
| `/wtfp:help` | Full command reference |
|
|
178
|
-
| `/wtfp:report-bug` | Report a bug via GitHub issue |
|
|
179
|
-
| `/wtfp:request-feature` | Request a new feature via GitHub issue |
|
|
180
|
-
| `/wtfp:contribute` | Walk through contributing code via pull request |
|
|
181
|
-
|
|
182
|
-
---
|
|
183
|
-
|
|
184
|
-
## Configuration
|
|
185
|
-
|
|
186
|
-
WTF-P uses a `config.json` in your `.planning/` directory. Key settings:
|
|
187
|
-
|
|
188
|
-
```jsonc
|
|
189
|
-
{
|
|
190
|
-
"model_profile": "balanced", // "quality" | "balanced" | "budget"
|
|
191
|
-
"workflow": {
|
|
192
|
-
"research": true, // Enable research phase
|
|
193
|
-
"plan_check": true, // Pre-write plan validation
|
|
194
|
-
"verifier": true // Post-write verification
|
|
195
|
-
},
|
|
196
|
-
"parallelization": {
|
|
197
|
-
"enabled": false, // Parallel section writing
|
|
198
|
-
"max_concurrent_agents": 3
|
|
199
|
-
}
|
|
200
|
-
}
|
|
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
|
|
201
222
|
```
|
|
202
223
|
|
|
203
|
-
|
|
204
|
-
- **quality** — best models for all agents (slower, higher cost)
|
|
205
|
-
- **balanced** — strong models for writing, lighter for validation (default)
|
|
206
|
-
- **budget** — fastest models everywhere (good for iteration)
|
|
207
|
-
|
|
208
|
-
---
|
|
209
|
-
|
|
210
|
-
## Venue Templates
|
|
211
|
-
|
|
212
|
-
| Template | Structure |
|
|
213
|
-
|----------|-----------|
|
|
214
|
-
| `acm-cs` | Intro → Background → Approach → Evaluation → Related Work → Conclusion |
|
|
215
|
-
| `ieee-cs` | Intro → Background → Design → Implementation → Evaluation → Conclusion |
|
|
216
|
-
| `arxiv-ml` | Intro → Related Work → Preliminaries → Method → Experiments → Conclusion |
|
|
217
|
-
| `nature` | Intro → Methods → Results → Discussion |
|
|
218
|
-
| `thesis` | Flexible chapter structure |
|
|
224
|
+
The legacy `--global`, `--local`, `--claude`, `--gemini`, and `--opencode` selectors remain compatibility aliases during the release-candidate cycle.
|
|
219
225
|
|
|
220
|
-
|
|
226
|
+
## Developing adapters
|
|
221
227
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
WTF-P follows a **thin orchestrator → specialized agent → quality loop** architecture:
|
|
225
|
-
|
|
226
|
-
1. **Specification first** — `/wtfp:new-paper` interviews you to extract research questions, argument structure, evidence inventory, and venue requirements into a `PROJECT.md`.
|
|
227
|
-
2. **Hierarchical planning** — Papers break down: Paper Vision → Section Outline → Section Plan → Paragraph Execution. Each level has its own document.
|
|
228
|
-
3. **Isolated execution** — Each section is written in a fresh context containing only the paper vision, that section's plan, relevant citations, and prior sections. No context pollution.
|
|
229
|
-
4. **Quality loops** — Pre-write plan validation (7 dimensions, up to 3 revisions) and post-write goal-backward verification ensure claims match plans and evidence.
|
|
230
|
-
|
|
231
|
-
### WCN Mode (Reduced Tokens)
|
|
232
|
-
|
|
233
|
-
For smaller models or limited context windows, WTF-P includes compressed workflows with 35-50% token reduction:
|
|
228
|
+
Edit canonical resources under `protocol/`, then regenerate every native projection:
|
|
234
229
|
|
|
235
230
|
```bash
|
|
236
|
-
|
|
237
|
-
|
|
231
|
+
npm run build:adapters
|
|
232
|
+
npm run check:adapters
|
|
233
|
+
npm test
|
|
234
|
+
npm run test:integration
|
|
238
235
|
```
|
|
239
236
|
|
|
240
|
-
|
|
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.
|
|
241
269
|
|
|
242
270
|
## Origin
|
|
243
271
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
---
|
|
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.
|
|
247
273
|
|
|
248
274
|
## Links
|
|
249
275
|
|
|
250
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)
|
|
251
283
|
- [Contributing](CONTRIBUTING.md)
|
|
252
284
|
- [Roadmap](ROADMAP.md)
|
|
253
|
-
- [License](LICENSE)
|
|
285
|
+
- [License](LICENSE)
|
|
254
286
|
- [GitHub](https://github.com/akougkas/wtf-p)
|
|
255
287
|
|
|
256
|
-
---
|
|
257
|
-
|
|
258
288
|
<div align="center">
|
|
259
|
-
|
|
260
|
-
|
|
289
|
+
|
|
290
|
+
**No more excuses. Ship the paper.**
|
|
291
|
+
|
|
261
292
|
</div>
|
package/bin/commands/doctor.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const fs = require('fs');
|
|
2
2
|
const path = require('path');
|
|
3
3
|
const { getClaudeDir, normalizePath, getPathLabel, detectInstallation } = require('../lib/utils');
|
|
4
|
+
const { assertSafeTarget } = require('../lib/ownership');
|
|
4
5
|
|
|
5
6
|
async function runDoctor(options) {
|
|
6
7
|
const { out, explicitConfigDir } = options;
|
|
@@ -22,7 +23,7 @@ async function runDoctor(options) {
|
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
// Check 2: Claude directory exists
|
|
25
|
-
const globalDir = getClaudeDir(explicitConfigDir, true);
|
|
26
|
+
const globalDir = assertSafeTarget(getClaudeDir(explicitConfigDir, true)).path;
|
|
26
27
|
if (fs.existsSync(globalDir)) {
|
|
27
28
|
checks.push({ name: 'Claude config directory', status: 'pass', detail: getPathLabel(globalDir, true) });
|
|
28
29
|
} else {
|
|
@@ -30,20 +31,38 @@ async function runDoctor(options) {
|
|
|
30
31
|
}
|
|
31
32
|
|
|
32
33
|
// Check 3: Write permissions
|
|
33
|
-
|
|
34
|
+
let testRoot = globalDir;
|
|
35
|
+
while (!fs.existsSync(testRoot)) {
|
|
36
|
+
const parent = path.dirname(testRoot);
|
|
37
|
+
if (parent === testRoot) break;
|
|
38
|
+
testRoot = parent;
|
|
39
|
+
}
|
|
40
|
+
let testDir = null;
|
|
34
41
|
try {
|
|
35
|
-
fs.
|
|
42
|
+
testDir = fs.mkdtempSync(path.join(testRoot, '.wtfp-doctor-'));
|
|
36
43
|
fs.writeFileSync(path.join(testDir, 'test'), 'test');
|
|
37
|
-
fs.
|
|
44
|
+
fs.unlinkSync(path.join(testDir, 'test'));
|
|
45
|
+
fs.rmdirSync(testDir);
|
|
46
|
+
testDir = null;
|
|
38
47
|
checks.push({ name: 'Write permissions', status: 'pass', detail: 'Can write to config directory' });
|
|
39
48
|
} catch (err) {
|
|
40
49
|
issues.push(`Cannot write to ${getPathLabel(globalDir, true)}: ${err.message}`);
|
|
41
50
|
checks.push({ name: 'Write permissions', status: 'fail', detail: err.message });
|
|
51
|
+
} finally {
|
|
52
|
+
if (testDir && fs.existsSync(testDir)) {
|
|
53
|
+
try {
|
|
54
|
+
const testFile = path.join(testDir, 'test');
|
|
55
|
+
if (fs.existsSync(testFile)) fs.unlinkSync(testFile);
|
|
56
|
+
if (fs.readdirSync(testDir).length === 0) fs.rmdirSync(testDir);
|
|
57
|
+
} catch {
|
|
58
|
+
// Leave an exact diagnostic temp directory rather than broadening cleanup.
|
|
59
|
+
}
|
|
60
|
+
}
|
|
42
61
|
}
|
|
43
62
|
|
|
44
63
|
// Check 4: Installation state
|
|
45
64
|
const detection = detectInstallation(globalDir);
|
|
46
|
-
if (detection.
|
|
65
|
+
if (detection.hasAny) {
|
|
47
66
|
if (detection.partial) {
|
|
48
67
|
issues.push('Partial installation detected - some files are missing');
|
|
49
68
|
checks.push({ name: 'Installation integrity', status: 'warn', detail: 'Partial install' });
|
|
@@ -59,7 +78,9 @@ async function runDoctor(options) {
|
|
|
59
78
|
|
|
60
79
|
// Check 5: CLAUDE_CONFIG_DIR env var
|
|
61
80
|
const configDirEnv = process.env.CLAUDE_CONFIG_DIR;
|
|
62
|
-
if (
|
|
81
|
+
if (explicitConfigDir) {
|
|
82
|
+
checks.push({ name: 'Config directory source', status: 'pass', detail: '--config-dir override' });
|
|
83
|
+
} else if (configDirEnv) {
|
|
63
84
|
const expanded = normalizePath(configDirEnv);
|
|
64
85
|
if (fs.existsSync(expanded)) {
|
|
65
86
|
checks.push({ name: 'CLAUDE_CONFIG_DIR', status: 'pass', detail: expanded });
|
|
@@ -144,11 +165,11 @@ async function runDoctor(options) {
|
|
|
144
165
|
}
|
|
145
166
|
|
|
146
167
|
// Check 7: Dual-installation conflict (global + local both present)
|
|
147
|
-
const localDir =
|
|
168
|
+
const localDir = assertSafeTarget(getClaudeDir(null, false)).path;
|
|
148
169
|
if (localDir !== globalDir) {
|
|
149
170
|
const localDetection = detectInstallation(localDir);
|
|
150
|
-
if (localDetection.
|
|
151
|
-
issues.push('WTF-P is installed both globally and locally —
|
|
171
|
+
if (localDetection.hasAny && detection.hasAny) {
|
|
172
|
+
issues.push('WTF-P is installed both globally and locally — resources may appear more than once');
|
|
152
173
|
checks.push({
|
|
153
174
|
name: 'Dual installation',
|
|
154
175
|
status: 'warn',
|