alfred-agent/package.json
Alfred e89ce12316 Initial commit: Alfred Agent - multi-provider AI agent harness
- 7 source files: providers, tools (14), prompt, session, agent (core loop), cli, http
- Multi-provider: Anthropic, OpenAI, Groq
- 14 built-in tools for file ops, web, code execution
- HTTP API + CLI interface
2026-04-07 11:39:57 -04:00

16 lines
357 B
JSON

{
"name": "alfred-agent",
"version": "1.0.0",
"description": "Alfred Agent Harness — Sovereign AI agent runtime for GoSiteMe",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"cli": "node src/cli.js",
"test": "node src/test.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0"
}
}