Public agent integration packages for Aegis, the AI assistant and work operating companion.
This repository intentionally contains only distributable plugin and skill
materials. It does not publish the private Aegis application source code. The
plugins connect a host agent to an existing Aegis Server or local aegis-mcp
binary through explicit MCP tools.
| Path | Host | Purpose |
|---|---|---|
plugins/aegis/ |
Codex | Codex plugin with skills, MCP server config, icon, and prompt compatibility |
claude-code/aegis/ |
Claude Code | Claude Code plugin with subagent, skills, MCP config, hooks, and commands |
skills/aegis/ |
Any skill-aware agent | Portable Aegis operator skill and references |
codex plugin marketplace add HaloForgeAI/aegis-agent-plugins
codex plugin add aegis@aegis-agent-pluginsThe Codex plugin connects to an existing local Aegis Server through Streamable HTTP MCP:
export AEGIS_TOKEN="<your access token>"Default endpoint: http://localhost:8787/mcp.
For remote Aegis deployments, configure the same MCP shape with your hosted URL:
[mcp_servers.aegis]
url = "https://aegis.example.com/mcp"
bearer_token_env_var = "AEGIS_TOKEN"The packaged stdio wrapper remains available at
plugins/aegis/scripts/aegis-mcp-stdio.sh for offline/development fallback
workflows.
Release notes live in CHANGELOG.md.
From a local checkout of this repository:
/plugin marketplace add ./claude-code/aegis
/plugin install aegis@haloforge-aegis
/reload-plugins
Set runtime connection variables:
export AEGIS_URL="http://localhost:8787"
export AEGIS_MCP_URL="http://localhost:8787/mcp/sse"
export AEGIS_TOKEN="<your access token>"The agent should not route natural language with keyword tricks. Conversational
requests go through the host agent and Aegis planning/provider layer; workers
execute explicit tool_call, tool_calls, or worker_probe payloads and
record evidence.
Board items are for durable work that needs follow-up, assignment, lifecycle status, evidence, or review. Ordinary Q&A, completed weather/time/tool requests, casual chat, and simple personal reminders should stay out of the work board unless the user explicitly asks to track them.
Validate the Codex package:
python3 /Users/loyio/.codex/skills/.system/plugin-creator/scripts/validate_plugin.py plugins/aegis
bash -n plugins/aegis/scripts/aegis-mcp-stdio.shThe Aegis source repository can remain private; this repository is the public distribution surface for agent integrations.