Updates all classes to use the new modular namespace convention. Adds Service/ layer with Core\Service\Agentic for service definition. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
72 lines
1.3 KiB
Markdown
72 lines
1.3 KiB
Markdown
# Core-Agentic - January 2026
|
|
|
|
## Features Implemented
|
|
|
|
### Agent Plans Admin UI (TASK-006)
|
|
|
|
Complete admin interface for managing agent work plans.
|
|
|
|
**Components:**
|
|
- Plan list with status filters
|
|
- Plan editor with phases
|
|
- Phase management (add, edit, reorder)
|
|
- Progress tracking
|
|
- Session viewer
|
|
|
|
**Files:**
|
|
- `View/Modal/Admin/PlanManager.php`
|
|
- `View/Modal/Admin/PlanEditor.php`
|
|
- `View/Modal/Admin/PhaseEditor.php`
|
|
|
|
---
|
|
|
|
### Session Recovery/Replay
|
|
|
|
Resume and replay agent sessions across context windows.
|
|
|
|
**Methods:**
|
|
- `getReplayContext()` - reconstruct session state
|
|
- `createReplaySession()` - spawn continuation session
|
|
- Checkpoint and decision tracking
|
|
|
|
**MCP Tool:**
|
|
- `session_replay` - replay tool for agents
|
|
|
|
---
|
|
|
|
### Agent API Keys
|
|
|
|
Scoped API keys for agent authentication.
|
|
|
|
**Features:**
|
|
- Key generation with prefixes
|
|
- Scope restrictions
|
|
- Usage tracking
|
|
- IP restrictions
|
|
|
|
**Files:**
|
|
- `Models/AgentApiKey.php`
|
|
- `Services/AgentApiKeyService.php`
|
|
- `Services/IpRestrictionService.php`
|
|
|
|
---
|
|
|
|
### MCP Usage Quotas
|
|
|
|
Per-workspace usage limits for MCP operations.
|
|
|
|
**Files:**
|
|
- `Models/McpUsageQuota.php`
|
|
- `Services/McpQuotaService.php`
|
|
- Quota middleware
|
|
- Entitlement feature integration
|
|
|
|
---
|
|
|
|
### Plan Templates
|
|
|
|
Reusable plan templates for common workflows.
|
|
|
|
**Files:**
|
|
- `Services/PlanTemplateService.php`
|
|
- Template MCP tools
|