@companion-ai/feynman 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +8 -0
- package/.feynman/SYSTEM.md +62 -0
- package/.feynman/agents/researcher.md +63 -0
- package/.feynman/agents/reviewer.md +84 -0
- package/.feynman/agents/verifier.md +38 -0
- package/.feynman/agents/writer.md +51 -0
- package/.feynman/settings.json +20 -0
- package/.feynman/themes/feynman.json +85 -0
- package/AGENTS.md +53 -0
- package/README.md +99 -0
- package/bin/feynman.js +2 -0
- package/dist/bootstrap/sync.js +98 -0
- package/dist/cli.js +297 -0
- package/dist/config/commands.js +71 -0
- package/dist/config/feynman-config.js +42 -0
- package/dist/config/paths.js +32 -0
- package/dist/feynman-prompt.js +63 -0
- package/dist/index.js +5 -0
- package/dist/model/catalog.js +238 -0
- package/dist/model/commands.js +165 -0
- package/dist/pi/launch.js +31 -0
- package/dist/pi/runtime.js +70 -0
- package/dist/pi/settings.js +101 -0
- package/dist/pi/web-access.js +74 -0
- package/dist/search/commands.js +12 -0
- package/dist/setup/doctor.js +126 -0
- package/dist/setup/preview.js +20 -0
- package/dist/setup/prompts.js +29 -0
- package/dist/setup/setup.js +119 -0
- package/dist/system/executables.js +38 -0
- package/dist/system/promise-polyfill.js +12 -0
- package/dist/ui/terminal.js +53 -0
- package/dist/web-search.js +1 -0
- package/extensions/research-tools/alpha.ts +212 -0
- package/extensions/research-tools/header.ts +379 -0
- package/extensions/research-tools/help.ts +93 -0
- package/extensions/research-tools/preview.ts +233 -0
- package/extensions/research-tools/project.ts +116 -0
- package/extensions/research-tools/session-search.ts +223 -0
- package/extensions/research-tools/shared.ts +46 -0
- package/extensions/research-tools.ts +25 -0
- package/metadata/commands.d.mts +46 -0
- package/metadata/commands.mjs +133 -0
- package/package.json +71 -0
- package/prompts/audit.md +15 -0
- package/prompts/autoresearch.md +63 -0
- package/prompts/compare.md +16 -0
- package/prompts/deepresearch.md +167 -0
- package/prompts/delegate.md +21 -0
- package/prompts/draft.md +16 -0
- package/prompts/jobs.md +16 -0
- package/prompts/lit.md +16 -0
- package/prompts/log.md +14 -0
- package/prompts/replicate.md +22 -0
- package/prompts/review.md +15 -0
- package/prompts/watch.md +14 -0
- package/scripts/patch-embedded-pi.mjs +319 -0
- package/skills/agentcomputer/SKILL.md +108 -0
- package/skills/agentcomputer/references/acp-flow.md +23 -0
- package/skills/agentcomputer/references/cli-cheatsheet.md +68 -0
- package/skills/autoresearch/SKILL.md +12 -0
- package/skills/deep-research/SKILL.md +12 -0
- package/skills/docker/SKILL.md +84 -0
- package/skills/jobs/SKILL.md +10 -0
- package/skills/literature-review/SKILL.md +12 -0
- package/skills/paper-code-audit/SKILL.md +12 -0
- package/skills/paper-writing/SKILL.md +12 -0
- package/skills/peer-review/SKILL.md +12 -0
- package/skills/replication/SKILL.md +14 -0
- package/skills/session-log/SKILL.md +10 -0
- package/skills/source-comparison/SKILL.md +12 -0
- package/skills/watch/SKILL.md +12 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: paper-writing
|
|
3
|
+
description: Turn research findings into a polished paper-style draft with sections, equations, and citations. Use when the user asks to write a paper, draft a report, write up findings, or produce a technical document from collected research.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Paper Writing
|
|
7
|
+
|
|
8
|
+
Run the `/draft` workflow. Read the prompt template at `prompts/draft.md` for the full procedure.
|
|
9
|
+
|
|
10
|
+
Agents used: `writer`, `verifier`
|
|
11
|
+
|
|
12
|
+
Output: paper draft in `papers/`.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: peer-review
|
|
3
|
+
description: Simulate a tough but constructive peer review of an AI research artifact. Use when the user asks for a review, critique, feedback on a paper or draft, or wants to identify weaknesses before submission.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Peer Review
|
|
7
|
+
|
|
8
|
+
Run the `/review` workflow. Read the prompt template at `prompts/review.md` for the full procedure.
|
|
9
|
+
|
|
10
|
+
Agents used: `researcher`, `reviewer`
|
|
11
|
+
|
|
12
|
+
Output: structured review in `outputs/`.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: replication
|
|
3
|
+
description: Plan or execute a replication of a paper, claim, or benchmark. Use when the user asks to replicate results, reproduce an experiment, verify a claim empirically, or build a replication package.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Replication
|
|
7
|
+
|
|
8
|
+
Run the `/replicate` workflow. Read the prompt template at `prompts/replicate.md` for the full procedure.
|
|
9
|
+
|
|
10
|
+
Agents used: `researcher`
|
|
11
|
+
|
|
12
|
+
Asks the user to choose an execution environment (local, virtual env, cloud, or plan-only) before running any code.
|
|
13
|
+
|
|
14
|
+
Output: replication plan, scripts, and results saved to disk.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: session-log
|
|
3
|
+
description: Write a durable session log capturing completed work, findings, open questions, and next steps. Use when the user asks to log progress, save session notes, write up what was done, or create a research diary entry.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Session Log
|
|
7
|
+
|
|
8
|
+
Run the `/log` workflow. Read the prompt template at `prompts/log.md` for the full procedure.
|
|
9
|
+
|
|
10
|
+
Output: session log in `notes/session-logs/`.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: source-comparison
|
|
3
|
+
description: Compare multiple sources on a topic and produce a grounded comparison matrix. Use when the user asks to compare papers, tools, approaches, frameworks, or claims across multiple sources.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Source Comparison
|
|
7
|
+
|
|
8
|
+
Run the `/compare` workflow. Read the prompt template at `prompts/compare.md` for the full procedure.
|
|
9
|
+
|
|
10
|
+
Agents used: `researcher`, `verifier`
|
|
11
|
+
|
|
12
|
+
Output: comparison matrix in `outputs/`.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: watch
|
|
3
|
+
description: Set up a recurring research watch on a topic, company, paper area, or product surface. Use when the user asks to monitor a field, track new papers, watch for updates, or set up alerts on a research area.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Watch
|
|
7
|
+
|
|
8
|
+
Run the `/watch` workflow. Read the prompt template at `prompts/watch.md` for the full procedure.
|
|
9
|
+
|
|
10
|
+
Agents used: `researcher`
|
|
11
|
+
|
|
12
|
+
Output: baseline survey in `outputs/`, recurring checks via `pi-schedule-prompt`.
|