Conversation
Entire-Checkpoint: 0a2fbbf5705f
PR SummaryLow Risk Overview The guide also covers optional interfaces (hooks installation, transcript analysis, token usage, subagent extraction, file watching), recommended hook-install patterns, transcript chunking/reassembly guidance, common pitfalls, and example code + test templates for a minimal agent skeleton. Written by Cursor Bugbot for commit b872ee4. Configure here. |
There was a problem hiding this comment.
Pull request overview
Adds a new architecture guide documenting how to implement and integrate new AI agents into Entire CLI’s agent abstraction layer (hooks → normalized lifecycle events → framework orchestration), intended to be usable by both humans and agents.
Changes:
- Introduces a comprehensive “Agent Implementation Guide” covering required
agent.Agentmethods, optional interfaces, and event mapping. - Provides implementation templates for an example agent package (types, lifecycle parsing, hook installation patterns, and tests).
- Documents transcript formats (JSONL/JSON), chunking helpers, and common pitfalls (repo root handling, go-git caveats, nil-event behavior).
Entire-Checkpoint: 08469727aeed
Adds instruction how to implement new agents, should be usable for humans and agents.