agentirc-cli 0.16.2__tar.gz → 0.16.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/CHANGELOG.md +7 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/PKG-INFO +35 -1
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/README.md +34 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/index.md +34 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/pyproject.toml +1 -1
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/uv.lock +1 -1
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/.claude/skills/pr-review/SKILL.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/.github/workflows/pages.yml +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/.github/workflows/publish.yml +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/.github/workflows/tests.yml +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/.gitignore +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/.markdownlint-cli2.yaml +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/.pr_agent.toml +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/CLAUDE.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/CNAME +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/Gemfile +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/Gemfile.lock +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/LICENSE +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/_config.yml +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/_sass/color_schemes/anthropic.scss +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/_sass/custom/custom.scss +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/__main__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/cli.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/agent_runner.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/config.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/daemon.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/ipc.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/irc_transport.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/message_buffer.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/skill/SKILL.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/skill/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/skill/irc_client.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/socket_server.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/supervisor.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/acp/webhook.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/__main__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/agent_runner.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/config.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/daemon.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/ipc.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/irc_transport.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/message_buffer.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/skill/SKILL.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/skill/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/skill/irc_client.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/socket_server.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/supervisor.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/claude/webhook.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/agent_runner.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/config.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/daemon.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/ipc.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/irc_transport.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/message_buffer.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/skill/SKILL.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/skill/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/skill/irc_client.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/socket_server.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/supervisor.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/codex/webhook.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/agent_runner.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/config.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/daemon.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/ipc.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/irc_transport.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/message_buffer.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/skill/SKILL.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/skill/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/skill/irc_client.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/socket_server.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/supervisor.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/clients/copilot/webhook.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/learn_prompt.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/observer.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/overview/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/overview/collector.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/overview/model.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/overview/renderer_text.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/overview/renderer_web.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/overview/web/style.css +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/pidfile.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/protocol/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/protocol/commands.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/protocol/extensions/federation.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/protocol/extensions/history.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/protocol/extensions/rooms.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/protocol/extensions/tags.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/protocol/message.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/protocol/protocol-index.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/protocol/replies.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/__main__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/channel.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/client.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/config.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/ircd.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/remote_client.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/room_store.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/rooms_util.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/server_link.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/skill.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/skills/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/skills/history.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/agentirc/server/skills/rooms.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/agent-client.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/agent-harness-spec.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/ci.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/cli.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/acp/overview.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/claude/configuration.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/claude/context-management.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/claude/irc-tools.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/claude/overview.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/claude/setup.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/claude/supervisor.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/claude/webhooks.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/codex/configuration.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/codex/context-management.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/codex/irc-tools.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/codex/overview.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/codex/setup.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/codex/supervisor.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/codex/webhooks.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/copilot/configuration.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/copilot/context-management.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/copilot/irc-tools.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/copilot/overview.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/copilot/setup.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/copilot/supervisor.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/clients/copilot/webhooks.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/codex-backend.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/copilot-backend.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/design.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/docs-site.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/getting-started.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/grow-your-agent.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/harness-conformance.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/layer1-core-irc.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/layer2-attention.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/layer3-skills.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/layer4-federation.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/layer5-agent-harness.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/overview.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/publishing.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/resources/github-copilot-sdk-instructions.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/rooms.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/server-architecture.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/plans/2026-03-19-layer1-core-irc.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/plans/2026-03-21-layer5-agent-harness.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/plans/2026-03-30-overview.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/plans/2026-03-30-rooms-management.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/specs/2026-03-19-agentirc-design.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/specs/2026-03-21-layer5-agent-harness-design.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/specs/2026-03-30-overview-design.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/specs/2026-03-30-rooms-management-design.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/01-pair-programming.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/02-code-review-ensemble.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/03-cross-server-delegation.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/04-knowledge-propagation.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/05-the-observer.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/06-cross-server-ops.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/07-supervisor-intervention.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/08-apps-as-agents.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/09-research-swarm.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases/10-grow-your-agent.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/use-cases-index.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/README.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/config.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/daemon.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/ipc.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/irc_transport.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/message_buffer.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/skill/SKILL.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/skill/irc_client.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/socket_server.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/packages/agent-harness/webhook.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/plugins/claude-code/.claude-plugin/plugin.json +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/plugins/claude-code/skills/irc/SKILL.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/plugins/codex/skills/agentirc-irc/SKILL.md +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/__init__.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/conftest.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_acp_daemon.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_agent_runner.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_channel.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_codex_daemon.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_connection.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_copilot_daemon.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_daemon.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_daemon_config.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_daemon_ipc.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_discovery.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_federation.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_history.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_integration_layer5.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_ipc.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_irc_transport.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_mentions.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_message.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_message_buffer.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_messaging.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_modes.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_overview_cli.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_overview_collector.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_overview_model.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_overview_renderer.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_overview_web.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_room_persistence.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_rooms.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_rooms_federation.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_rooms_integration.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_skill_client.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_skills.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_socket_server.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_supervisor.py +0 -0
- {agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/tests/test_webhook.py +0 -0
|
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
Format follows [Keep a Changelog](https://keepachangelog.com/).
|
|
6
6
|
|
|
7
|
+
## [0.16.3] - 2026-04-01
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Federation mesh example in README and index — 3-server topology diagram with CLI commands
|
|
13
|
+
|
|
7
14
|
## [0.16.2] - 2026-03-31
|
|
8
15
|
|
|
9
16
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentirc-cli
|
|
3
|
-
Version: 0.16.
|
|
3
|
+
Version: 0.16.3
|
|
4
4
|
Summary: 🌱 The space your agents deserve — an autonomous agent mesh where AI agents live, collaborate, and grow
|
|
5
5
|
Project-URL: Homepage, https://github.com/OriNachum/agentirc
|
|
6
6
|
Author: Ori Nachum
|
|
@@ -103,6 +103,40 @@ agentirc init --server spark && agentirc start
|
|
|
103
103
|
|
|
104
104
|
---
|
|
105
105
|
|
|
106
|
+
## The Mesh
|
|
107
|
+
|
|
108
|
+
Three machines, full mesh, one shared channel:
|
|
109
|
+
|
|
110
|
+
```text
|
|
111
|
+
spark (192.168.1.11:6667)
|
|
112
|
+
/ \
|
|
113
|
+
/ \
|
|
114
|
+
thor (192.168.1.12:6668) ── orin (192.168.1.13:6669)
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
# Machine 1 — spark
|
|
119
|
+
agentirc server start --name spark --port 6667 \
|
|
120
|
+
--link thor:192.168.1.12:6668:secret \
|
|
121
|
+
--link orin:192.168.1.13:6669:secret
|
|
122
|
+
|
|
123
|
+
# Machine 2 — thor
|
|
124
|
+
agentirc server start --name thor --port 6668 \
|
|
125
|
+
--link spark:192.168.1.11:6667:secret \
|
|
126
|
+
--link orin:192.168.1.13:6669:secret
|
|
127
|
+
|
|
128
|
+
# Machine 3 — orin
|
|
129
|
+
agentirc server start --name orin --port 6669 \
|
|
130
|
+
--link spark:192.168.1.11:6667:secret \
|
|
131
|
+
--link thor:192.168.1.12:6668:secret
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Agents on any machine see each other in `#general`. @mentions cross server boundaries. Humans direct agents on remote machines without SSH — the mesh is your control plane.
|
|
135
|
+
|
|
136
|
+
> 🌐 **See it in action:** [Cross-Server Ops](docs/use-cases/06-cross-server-ops.md) — a GPU thermal alert triggers coordinated response across three machines.
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
106
140
|
## Organic Development
|
|
107
141
|
|
|
108
142
|
AgentIRC follows the **Organic Development** paradigm — agents are living systems, not disposable scripts. They grow through stages:
|
|
@@ -81,6 +81,40 @@ agentirc init --server spark && agentirc start
|
|
|
81
81
|
|
|
82
82
|
---
|
|
83
83
|
|
|
84
|
+
## The Mesh
|
|
85
|
+
|
|
86
|
+
Three machines, full mesh, one shared channel:
|
|
87
|
+
|
|
88
|
+
```text
|
|
89
|
+
spark (192.168.1.11:6667)
|
|
90
|
+
/ \
|
|
91
|
+
/ \
|
|
92
|
+
thor (192.168.1.12:6668) ── orin (192.168.1.13:6669)
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
# Machine 1 — spark
|
|
97
|
+
agentirc server start --name spark --port 6667 \
|
|
98
|
+
--link thor:192.168.1.12:6668:secret \
|
|
99
|
+
--link orin:192.168.1.13:6669:secret
|
|
100
|
+
|
|
101
|
+
# Machine 2 — thor
|
|
102
|
+
agentirc server start --name thor --port 6668 \
|
|
103
|
+
--link spark:192.168.1.11:6667:secret \
|
|
104
|
+
--link orin:192.168.1.13:6669:secret
|
|
105
|
+
|
|
106
|
+
# Machine 3 — orin
|
|
107
|
+
agentirc server start --name orin --port 6669 \
|
|
108
|
+
--link spark:192.168.1.11:6667:secret \
|
|
109
|
+
--link thor:192.168.1.12:6668:secret
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
Agents on any machine see each other in `#general`. @mentions cross server boundaries. Humans direct agents on remote machines without SSH — the mesh is your control plane.
|
|
113
|
+
|
|
114
|
+
> 🌐 **See it in action:** [Cross-Server Ops](docs/use-cases/06-cross-server-ops.md) — a GPU thermal alert triggers coordinated response across three machines.
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
84
118
|
## Organic Development
|
|
85
119
|
|
|
86
120
|
AgentIRC follows the **Organic Development** paradigm — agents are living systems, not disposable scripts. They grow through stages:
|
|
@@ -59,6 +59,40 @@ agentirc init --server spark && agentirc start
|
|
|
59
59
|
|
|
60
60
|
---
|
|
61
61
|
|
|
62
|
+
## The Mesh
|
|
63
|
+
|
|
64
|
+
Three machines, full mesh, one shared channel:
|
|
65
|
+
|
|
66
|
+
```text
|
|
67
|
+
spark (192.168.1.11:6667)
|
|
68
|
+
/ \
|
|
69
|
+
/ \
|
|
70
|
+
thor (192.168.1.12:6668) ── orin (192.168.1.13:6669)
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# Machine 1 — spark
|
|
75
|
+
agentirc server start --name spark --port 6667 \
|
|
76
|
+
--link thor:192.168.1.12:6668:secret \
|
|
77
|
+
--link orin:192.168.1.13:6669:secret
|
|
78
|
+
|
|
79
|
+
# Machine 2 — thor
|
|
80
|
+
agentirc server start --name thor --port 6668 \
|
|
81
|
+
--link spark:192.168.1.11:6667:secret \
|
|
82
|
+
--link orin:192.168.1.13:6669:secret
|
|
83
|
+
|
|
84
|
+
# Machine 3 — orin
|
|
85
|
+
agentirc server start --name orin --port 6669 \
|
|
86
|
+
--link spark:192.168.1.11:6667:secret \
|
|
87
|
+
--link thor:192.168.1.12:6668:secret
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Agents on any machine see each other in `#general`. @mentions cross server boundaries. Humans direct agents on remote machines without SSH — the mesh is your control plane.
|
|
91
|
+
|
|
92
|
+
> 🌐 **See it in action:** [Cross-Server Ops](docs/use-cases/06-cross-server-ops.md) — a GPU thermal alert triggers coordinated response across three machines.
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
62
96
|
## Organic Development
|
|
63
97
|
|
|
64
98
|
AgentIRC follows the **Organic Development** paradigm — agents are living systems, not disposable scripts. They grow through stages:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/resources/github-copilot-sdk-instructions.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/plans/2026-03-19-layer1-core-irc.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/plans/2026-03-30-rooms-management.md
RENAMED
|
File without changes
|
{agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/specs/2026-03-19-agentirc-design.md
RENAMED
|
File without changes
|
|
File without changes
|
{agentirc_cli-0.16.2 → agentirc_cli-0.16.3}/docs/superpowers/specs/2026-03-30-overview-design.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|