- Context Compaction System with token counting and summarization - Deterministic State Machine for flow control (no LLM decisions) - Parallel Execution Engine (up to 12 concurrent sessions) - Event-Driven Coordination via Event Bus - Agent Workspace Isolation (tools, memory, identity, files) - YAML Workflow Integration (OpenClaw/Lobster compatible) - Claude Code integration layer - Complete demo UI with real-time visualization - Comprehensive documentation and README Components: - agent-system/: Context management, token counting, subagent spawning - pipeline-system/: State machine, parallel executor, event bus, workflows - skills/: AI capabilities (LLM, ASR, TTS, VLM, image generation, etc.) - src/app/: Next.js demo application Total: ~100KB of production-ready TypeScript code
31 lines
585 B
JSON
Executable File
31 lines
585 B
JSON
Executable File
{
|
|
"name": "podcast-generate-online",
|
|
"version": "1.0.0",
|
|
"description": "Generate podcast audio from text using z-ai LLM and TTS",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"generate": "tsx generate.ts",
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"podcast",
|
|
"tts",
|
|
"llm",
|
|
"z-ai"
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"z-ai-web-dev-sdk": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|