- Rename project config dir from .pi/ to .feynman/ (Pi supports this via piConfig.configDir) - Rename citation agent to verifier across all prompts, agents, skills, and docs - Add website with homepage and 24 doc pages (Astro + Tailwind) - Add skills for all workflows (deep-research, lit, review, audit, replicate, compare, draft, autoresearch, watch, jobs, session-log, agentcomputer) - Add Pi-native prompt frontmatter (args, section, topLevelCli) and read at runtime - Remove sync-docs generation layer — docs are standalone - Remove metadata/prompts.mjs and metadata/packages.mjs — not needed at runtime - Rewrite README and homepage copy - Add environment selection to /replicate before executing - Add prompts/delegate.md and AGENTS.md Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
72 lines
1.6 KiB
JSON
72 lines
1.6 KiB
JSON
{
|
|
"name": "@companion-ai/feynman",
|
|
"version": "0.1.5",
|
|
"description": "Research-first CLI agent built on Pi and alphaXiv",
|
|
"type": "module",
|
|
"bin": {
|
|
"feynman": "./bin/feynman.js"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"dist/",
|
|
"metadata/",
|
|
".feynman/agents/",
|
|
".feynman/settings.json",
|
|
".feynman/SYSTEM.md",
|
|
".feynman/themes/",
|
|
"extensions/",
|
|
"prompts/",
|
|
"scripts/",
|
|
"skills/",
|
|
"AGENTS.md",
|
|
"README.md",
|
|
".env.example"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"dev": "tsx src/index.ts",
|
|
"postinstall": "node ./scripts/patch-embedded-pi.mjs",
|
|
"start": "tsx src/index.ts",
|
|
"start:dist": "node ./bin/feynman.js",
|
|
"test": "node --import tsx --test --test-concurrency=1 tests/*.test.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"pi-package",
|
|
"research-agent",
|
|
"literature-review",
|
|
"experiments"
|
|
],
|
|
"pi": {
|
|
"extensions": [
|
|
"./extensions"
|
|
],
|
|
"prompts": [
|
|
"./prompts"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@companion-ai/alpha-hub": "^0.1.2",
|
|
"@mariozechner/pi-ai": "^0.62.0",
|
|
"@mariozechner/pi-coding-agent": "^0.62.0",
|
|
"@sinclair/typebox": "^0.34.48",
|
|
"dotenv": "^17.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.5.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.18.1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/getcompanion-ai/feynman.git"
|
|
},
|
|
"homepage": "https://github.com/getcompanion-ai/feynman#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/getcompanion-ai/feynman/issues"
|
|
}
|
|
}
|