NEW: Delegation System (v1.2.0) - Request Classifier for fast request analysis (<50ms) - Agent Pool Manager with auto-scaling (8 agent types) - Delegation Engine with 4 strategies (full, parallel, hierarchical, hybrid) - Progress Streamer for real-time updates - Context Handoff Protocol for inter-agent communication - Quality Gate with confidence thresholds and auto-escalation NEW: 3rd Party Integration Adapters - OpenClaw adapter with parallel execution support - Claude Code CLI adapter with tool registration - Generic adapter for custom integrations - Standardized IntegrationAdapter interface Agent Types Added: - fast-responder (quick answers < 2s) - explorer (code navigation) - researcher (deep analysis) - coder (implementation) - reviewer (quality checks) - planner (architecture) - executor (commands) - analyzer (debugging) Tests: All 6 tests passing This project was 100% autonomously built by Z.AI GLM-5
68 lines
1.8 KiB
JSON
Executable File
68 lines
1.8 KiB
JSON
Executable File
{
|
|
"name": "agentic-compaction-pipeline",
|
|
"version": "1.1.0",
|
|
"description": "Comprehensive context compaction and deterministic multi-agent pipeline orchestration system with Claude Code and OpenClaw integration",
|
|
"main": "agent-system/index.ts",
|
|
"types": "agent-system/index.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "jest",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"agents",
|
|
"context-compaction",
|
|
"claude-code",
|
|
"openclaw",
|
|
"multi-agent",
|
|
"pipeline",
|
|
"orchestration",
|
|
"token-management",
|
|
"llm"
|
|
],
|
|
"author": "Z.AI GLM-5",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.rommark.dev/admin/Agentic-Compaction-and-Pipleline-by-GLM-5.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.rommark.dev/admin/Agentic-Compaction-and-Pipleline-by-GLM-5/issues"
|
|
},
|
|
"homepage": "https://github.rommark.dev/admin/Agentic-Compaction-and-Pipleline-by-GLM-5",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": ">=5.0.0"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./agent-system/index.ts",
|
|
"default": "./agent-system/index.ts"
|
|
},
|
|
"./agent-system": {
|
|
"types": "./agent-system/index.ts",
|
|
"default": "./agent-system/index.ts"
|
|
},
|
|
"./pipeline-system": {
|
|
"types": "./pipeline-system/index.ts",
|
|
"default": "./pipeline-system/index.ts"
|
|
},
|
|
"./integrations/claude-code": {
|
|
"types": "./agent-system/integrations/claude-code.ts",
|
|
"default": "./agent-system/integrations/claude-code.ts"
|
|
},
|
|
"./integrations/openclaw": {
|
|
"types": "./agent-system/integrations/openclaw.ts",
|
|
"default": "./agent-system/integrations/openclaw.ts"
|
|
}
|
|
}
|
|
}
|