Snider
37f6d61368
feat: agent messaging — direct chronological messages between agents
...
New: agent_send, agent_inbox, agent_conversation MCP tools.
API: /v1/messages/send, /v1/messages/inbox, /v1/messages/conversation/{agent}
Model: AgentMessage with inbox, unread, conversation scopes.
Separate channel from semantic brain search. Messages are chronological,
not vector-searched. Agents can now have direct conversations.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-16 14:03:36 +00:00
Snider
85dd0555ac
fix(brain): shared brain — don't filter by agent_id on recall
...
Was forcing agent isolation. Now all agents see all memories by default.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-16 11:50:20 +00:00
Snider
5fbaf4f211
fix(brain): use hostname-based agent_id instead of hardcoded cladius
...
Charon gets agent_id 'charon', Cladius gets 'cladius'.
Override with AGENT_NAME env var.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-16 11:24:59 +00:00
Snider
2ea50959f2
refactor: move brain + agentic packages into core/agent, use core/cli
...
Brain and agentic subsystems now live in core/agent/pkg/ instead of
core/mcp/pkg/mcp/. core-agent binary uses core/cli for proper command
framework. Usage: core-agent mcp
One repo, one clone, everything works.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-16 11:10:33 +00:00
Snider
6442cb85ad
refactor: update import path from go-config to core/config
...
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-14 10:22:39 +00:00
Snider
e894cd3a7a
refactor: update MCP import to core/mcp
...
Change forge.lthn.ai/core/go-ai/mcp → forge.lthn.ai/core/mcp/pkg/mcp.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-09 18:40:52 +00:00
Snider
5e0a18a110
test: add Claude plugin contract verification suite
...
18 tests validate the full plugin contract before tagging:
- Marketplace: valid JSON, required fields, unique names, versions
- Plugins: directory exists, manifest present, version consistency
- Commands: .md format, YAML frontmatter with name:
- Hooks: valid events, scripts exist + executable
- Scripts: executable, shebangs present
- Skills: SKILL.md present, scripts executable
- Cross-refs: all claude/ dirs listed in marketplace
fix: chmod +x on 8 skill scripts caught by contract tests
Co-Authored-By: Virgil <virgil@lethean.io>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 16:06:05 +00:00
Snider
c7c181ccf8
test: add contract verification for php-devops wishlist
...
18 tests verify the full workspace contract is implemented:
- repos.yaml: loads, required fields, valid types, deps exist,
topological order, foundations, defaults, meta clone rules, domains
- workspace.yaml: loads, active package in registry
- .core/ folder: exists, has spec doc
- Scripts: setup.sh exists+executable, install scripts exist
- Plugins: marketplace.json exists, all plugins have manifests
Enables archival of core/php-devops and core/go-agent.
Co-Authored-By: Virgil <virgil@lethean.io>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 15:30:30 +00:00
Snider
e90a84eaa0
feat: merge go-agent + go-agentic + php-devops into unified agent repo
...
Combines three repositories into a single workspace:
- go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/
- go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch)
- php-devops → repos.yaml, setup.sh, scripts/, .core/
Module path: forge.lthn.ai/core/agent
All packages build, all tests pass.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 15:23:00 +00:00