diff --git a/context-graph/agent-context-graph/pyproject.toml b/context-graph/agent-context-graph/pyproject.toml index 80e4677..df96425 100644 --- a/context-graph/agent-context-graph/pyproject.toml +++ b/context-graph/agent-context-graph/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agent-context-graph" -version = "0.1.2" +version = "0.1.3" description = "Connect agent SDKs to context-graph components (actions-graph, skills-graph, etc.)" readme = "README.md" license = { text = "MIT" } diff --git a/context-graph/agent-context-graph/src/agent_context_graph/cli.py b/context-graph/agent-context-graph/src/agent_context_graph/cli.py index 53195b4..52aaf28 100644 --- a/context-graph/agent-context-graph/src/agent_context_graph/cli.py +++ b/context-graph/agent-context-graph/src/agent_context_graph/cli.py @@ -286,7 +286,7 @@ def _connector_requirement(connector: str) -> str | None: if normalized == "skills-graph": return "skills-graph[agent-context-graph]" if normalized == "actions-graph": - return "actions-graph" + return "actions-graph[agent-context-graph]" return None diff --git a/context-graph/agent-context-graph/tests/test_hook_cli.py b/context-graph/agent-context-graph/tests/test_hook_cli.py index 0b2dc00..3f36a86 100644 --- a/context-graph/agent-context-graph/tests/test_hook_cli.py +++ b/context-graph/agent-context-graph/tests/test_hook_cli.py @@ -139,7 +139,7 @@ def fake_run(command, *, check): assert top_level_main(["bootstrap", "--runtime", "codex", "--connector", "actions-graph"]) == 0 assert "--with" in commands[0] - assert "actions-graph" in commands[0] + assert "actions-graph[agent-context-graph]" in commands[0] def test_top_level_cli_bootstrap_no_reinstall_omits_reinstall(monkeypatch): diff --git a/context-graph/plugins/agent-context-graph-claude/.claude-plugin/plugin.json b/context-graph/plugins/agent-context-graph-claude/.claude-plugin/plugin.json index d78aae6..6566acb 100644 --- a/context-graph/plugins/agent-context-graph-claude/.claude-plugin/plugin.json +++ b/context-graph/plugins/agent-context-graph-claude/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "context-graph", "description": "Capture Claude Code runtime activity through Agent Context Graph hooks.", - "version": "0.1.4", + "version": "0.1.7", "author": { "name": "Memgraph" }, diff --git a/context-graph/plugins/agent-context-graph-claude/README.md b/context-graph/plugins/agent-context-graph-claude/README.md index 3a1031b..8372f51 100644 --- a/context-graph/plugins/agent-context-graph-claude/README.md +++ b/context-graph/plugins/agent-context-graph-claude/README.md @@ -5,7 +5,7 @@ Claude Code runtime plugin for Agent Context Graph. The plugin installs Claude Code lifecycle hooks that call: ```bash -agent-context-graph hook run claude-code --connector skills-graph +agent-context-graph hook run claude-code --connector skills-graph --connector actions-graph ``` Flow: @@ -35,7 +35,7 @@ docker run --rm -p 7687:7687 memgraph/memgraph Bootstrap installs and verifies: ```bash -agent-context-graph bootstrap --runtime claude-code --connector skills-graph +agent-context-graph bootstrap --runtime claude-code --connector skills-graph --connector actions-graph ``` ## Prerequisites diff --git a/context-graph/plugins/agent-context-graph-claude/scripts/bootstrap.sh b/context-graph/plugins/agent-context-graph-claude/scripts/bootstrap.sh index 4a8220c..eda73b1 100755 --- a/context-graph/plugins/agent-context-graph-claude/scripts/bootstrap.sh +++ b/context-graph/plugins/agent-context-graph-claude/scripts/bootstrap.sh @@ -15,7 +15,7 @@ EOF exit 1 fi -uv tool install "agent-context-graph>=0.1.2" \ +uv tool install "agent-context-graph>=0.1.3" \ --with "skills-graph[agent-context-graph]>=0.1.3" \ --with "actions-graph[agent-context-graph]>=0.1.1" \ --upgrade \ diff --git a/context-graph/plugins/agent-context-graph-codex/.codex-plugin/plugin.json b/context-graph/plugins/agent-context-graph-codex/.codex-plugin/plugin.json index c3bfe4b..adc8165 100644 --- a/context-graph/plugins/agent-context-graph-codex/.codex-plugin/plugin.json +++ b/context-graph/plugins/agent-context-graph-codex/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "context-graph", - "version": "0.1.3", + "version": "0.1.6", "description": "Capture Codex runtime activity through Agent Context Graph hooks.", "author": { "name": "Memgraph" diff --git a/context-graph/plugins/agent-context-graph-codex/README.md b/context-graph/plugins/agent-context-graph-codex/README.md index dc51dfd..0c8a33b 100644 --- a/context-graph/plugins/agent-context-graph-codex/README.md +++ b/context-graph/plugins/agent-context-graph-codex/README.md @@ -5,7 +5,7 @@ Codex runtime plugin for Agent Context Graph. The plugin installs Codex lifecycle hooks that call: ```bash -agent-context-graph hook run codex --connector skills-graph +agent-context-graph hook run codex --connector skills-graph --connector actions-graph ``` Flow: @@ -35,7 +35,7 @@ docker run --rm -p 7687:7687 memgraph/memgraph Bootstrap installs and verifies: ```bash -agent-context-graph bootstrap --runtime codex --connector skills-graph +agent-context-graph bootstrap --runtime codex --connector skills-graph --connector actions-graph ``` ## Prerequisites diff --git a/context-graph/plugins/agent-context-graph-codex/scripts/bootstrap.sh b/context-graph/plugins/agent-context-graph-codex/scripts/bootstrap.sh index 9b99f86..2ef3e89 100755 --- a/context-graph/plugins/agent-context-graph-codex/scripts/bootstrap.sh +++ b/context-graph/plugins/agent-context-graph-codex/scripts/bootstrap.sh @@ -15,7 +15,7 @@ EOF exit 1 fi -uv tool install "agent-context-graph>=0.1.2" \ +uv tool install "agent-context-graph>=0.1.3" \ --with "skills-graph[agent-context-graph]>=0.1.3" \ --with "actions-graph[agent-context-graph]>=0.1.1" \ --upgrade \