+
PowerContext is the upgraded version of [PowerMem](https://www.powermem.ai/) and a context runtime for human-agent
collaboration. It turns shared work into project context that can be understood, handed off, and continued.
@@ -19,24 +28,25 @@ host.
### 1. Install PowerContext and integrations
```bash
-uv tool install "powercontext[cli,server]==0.0.2"
+uv tool install --force "powercontext[cli,server] @ git+https://github.com/oceanbase/powercontext.git@master"
-# Choose one or more integrations.
-powercontext setup codex --source oceanbase/powercontext --ref v0.0.2
-powercontext setup claude-code --source oceanbase/powercontext --ref v0.0.2
-powercontext setup dsh --source oceanbase/powercontext --ref v0.0.2
+# Choose one or more integrations. Every setup command installs from the master branch.
+powercontext setup codex --source oceanbase/powercontext --ref master
+powercontext setup claude-code --source oceanbase/powercontext --ref master
+powercontext setup dsh --source oceanbase/powercontext --ref master
powercontext setup hermes --source oceanbase/powercontext --ref master
-
-# OpenClaw and OpenCode currently require the matching CLI and integrations from master.
-uv tool install --force "powercontext[cli,server] @ git+https://github.com/oceanbase/powercontext.git@master"
powercontext setup openclaw --source oceanbase/powercontext --ref master
powercontext setup opencode --source oceanbase/powercontext --ref master
+powercontext setup pi --source oceanbase/powercontext --ref master
+powercontext setup workbuddy --source oceanbase/powercontext --ref master
+
+# Or install several hosts in one pass.
+powercontext setup select --host codex --host claude-code --host opencode
```
-The first command installs the latest released CLI and local Server in an isolated environment. The release setup
-commands install their integrations from the matching repository tag. Until OpenClaw and OpenCode are included in a
-release, the extra `uv tool install` command keeps the CLI, Server, and integrations on the same `master` revision.
-Run setup again to refresh an existing integration.
+The first command installs the CLI and local Server from the latest `master` revision in an isolated environment.
+Every setup command installs its integration from the same `master` revision. Run setup again to refresh an existing
+integration.
### 2. Start and verify the local Server
@@ -50,7 +60,7 @@ In another terminal, verify the service and plugin:
```bash
powercontext doctor
-powercontext doctor codex # or: claude-code / dsh / hermes / openclaw
+powercontext doctor codex # or: claude-code / dsh / hermes / openclaw / opencode / pi / workbuddy
```
By default, the Server listens on `127.0.0.1:8000`, exposes Streamable HTTP MCP at `/mcp`, and persists data in a
@@ -85,9 +95,9 @@ model.
## Integrations
PowerContext provides official integrations and installation guides for Codex, Claude Code, DeepSeek Harness, Hermes
-Agent, LangChain, LangGraph, Pi Coding Agent, OpenClaw, OpenCode, and WorkBuddy. These integrations use the same scoped
-data and history-preserving contracts through PowerContext Server; the host integrations do not start or embed the
-Server.
+Agent, Pi Coding Agent, OpenClaw, OpenCode, WorkBuddy, Bub, Pydantic AI, LangChain, and LangGraph. These integrations
+use the same scoped data and history-preserving contracts through PowerContext Server; the host integrations do not
+start or embed the Server.
### Official integrations
@@ -99,13 +109,21 @@ Server.
-Python agent applications can use the [LangChain middleware](docs/en/docs/how-to/configure-langchain.md) or the
-[LangGraph node and tools adapter](docs/en/docs/how-to/configure-langgraph.md).
+Python agent applications can use the [LangChain middleware](docs/en/docs/how-to/configure-langchain.md), the
+[LangGraph node and tools adapter](docs/en/docs/how-to/configure-langgraph.md), the
+[Pydantic AI middleware](docs/en/docs/how-to/configure-pydantic-ai.md), or the
+[Bub plugin](integrations/bub/README.md).
## Development
diff --git a/README_CN.md b/README_CN.md
index 26b4b5796..7d4f15791 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -1,5 +1,12 @@
# PowerContext
+