Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion context-graph/agent-context-graph/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion context-graph/agent-context-graph/tests/test_hook_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Original file line number Diff line number Diff line change
@@ -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"
},
Expand Down
4 changes: 2 additions & 2 deletions context-graph/plugins/agent-context-graph-claude/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions context-graph/plugins/agent-context-graph-codex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
Loading