agentic-toolkit/package.json
Khalim Conn-Kowlessar 1d8a77b29b feat: scaffold agentic-toolkit (runner + skills + setup)
Initial implementation of Domna's agentic toolkit per PRD #1:

- Runner CLI (src/cli.ts) wrapping sandcastle.run() with Docker provider
- Pure modules: PhaseScheduler, PromptBuilder, FailureHandler with tests
- Project Status v2 GraphQL client + parsers with tests
- BranchManager (git/gh wrapper) and LoopOrchestrator (per-tick algorithm)
- Variant-aware: per-ticket (one PR per issue, phase-gated, exit between phases)
  vs single-pr (one PR for the whole DAG, halt on failure)
- /to-project skill that creates a repo-level project, configures the Status
  schema the runner expects, and sets initial issue statuses
- setup.sh that installs Matt Pocock skills + Domna skills via npx skills

Out of scope at v1: remote runners, Slack notifications, stacked PRs,
cross-repo projects, SHA-pinning of upstream skills (tracks HEAD until the
skills CLI supports repo#sha).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-03 12:40:26 +01:00

33 lines
824 B
JSON

{
"name": "@domna/agentic-toolkit",
"version": "0.0.1",
"private": true,
"description": "Domna's agentic toolkit: curated skills + sandcastle-based runner for executing GitHub Project work",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"agentic-toolkit": "./bin/run-sandcastle.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@ai-hero/sandcastle": "^0.5.7",
"@octokit/graphql": "^8.1.1",
"@octokit/rest": "^21.0.2",
"commander": "^12.1.0",
"execa": "^9.5.1"
},
"devDependencies": {
"@types/node": "^22.9.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}