Add project files, examples, and documentation
- Added package.json for npm/bun compatibility - Added tsconfig.json for TypeScript configuration - Added MIT LICENSE - Added CHANGELOG.md for version tracking - Added 4 example files demonstrating usage: - 01-basic-compaction.ts - Context compaction basics - 02-claude-code-integration.ts - Claude Code integration - 03-openclaw-integration.ts - OpenClaw integration - 04-state-machine-pipeline.ts - Deterministic pipeline All extracted source files are included in the repository.
This commit is contained in:
67
package.json
Normal file
67
package.json
Normal file
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user