Skip to content

Commit b72625b

Browse files
authored
Merge branch 'main' into codex/shorten-playbook-sample-prompts
2 parents fa8560d + 41ac9fa commit b72625b

53 files changed

Lines changed: 1963 additions & 87 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
outputs:
3434
channel: ${{ steps.release.outputs.channel }}
3535
version: ${{ steps.release.outputs.version }}
36+
dist-tag: ${{ steps.release.outputs.dist-tag }}
3637
permissions:
3738
contents: read
3839
steps:
@@ -113,7 +114,8 @@ jobs:
113114
- name: Publish packages with npm Trusted Publishing
114115
env:
115116
NPM_CONFIG_PROVENANCE: "true"
116-
run: bun run release:publish
117+
NPM_DIST_TAG: ${{ needs.preflight.outputs.dist-tag }}
118+
run: bun run release:publish -- --tag "$NPM_DIST_TAG"
117119

118120
- name: Create immutable Git tag
119121
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Beta testers can install `@openagentpack/cli@beta`; see the [release guide](./do
145145
| Skill | native | native | native | native |
146146
| Agent | native | native | native | native |
147147
| MCP Server | native | native | native | native |
148-
| Memory Store | unsupported | native | unsupported | native |
148+
| Memory Store | unsupported | native | native | native |
149149
| Multi-Agent | unsupported | unsupported | native | native |
150150
| Deployment | emulated | native | native | emulated |
151151
| Session | native | native | native | native |

README.zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Beta 用户可以安装 `@openagentpack/cli@beta`;固定版本及切回稳定
145145
| Skill | native | native | native | native |
146146
| Agent | native | native | native | native |
147147
| MCP Server | native | native | native | native |
148-
| Memory Store | unsupported | native | unsupported | native |
148+
| Memory Store | unsupported | native | native | native |
149149
| Multi-Agent | unsupported | unsupported | native | native |
150150
| Deployment | emulated | native | native | emulated |
151151
| Session | native | native | native | native |

apps/server/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @openagentpack/server
22

3+
## 0.0.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [24e5370]
8+
- @openagentpack/sdk@0.3.0
9+
310
## 0.0.5
411

512
### Patch Changes

apps/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openagentpack/server",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"private": true,
55
"license": "Apache-2.0",
66
"exports": {

bun.lock

Lines changed: 4 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The [`examples/`](../examples) directory has runnable configs for every provider
1313
| Use an official MCP server | [`examples/bailian/with-mcp/`](../examples/bailian/with-mcp/) |
1414
| Use a vault | [`examples/bailian/with-vault/`](../examples/bailian/with-vault/) · [`examples/qoder/with-vault/`](../examples/qoder/with-vault/) |
1515
| Connect a credential-based IM Channel | [`examples/qoder/with-channel/`](../examples/qoder/with-channel/) |
16-
| Use memory stores | [`examples/qoder/with-memory/`](../examples/qoder/with-memory/) · [`examples/ark/full/`](../examples/ark/full/) |
16+
| Use memory stores | [`examples/qoder/with-memory/`](../examples/qoder/with-memory/) · [`examples/claude/with-memory/`](../examples/claude/with-memory/) · [`examples/ark/full/`](../examples/ark/full/) · [runtime lifecycle](../examples/memory/README.md) |
1717
| Upload local files (Files API) | [`examples/bailian/with-files/`](../examples/bailian/with-files/) · [`examples/ark/with-files/`](../examples/ark/with-files/) |
1818
| Coordinate multiple agents | [`examples/claude/multiagent/`](../examples/claude/multiagent/) · [`examples/ark/multiagent/`](../examples/ark/multiagent/) |
1919
| Deploy to multiple providers | [`examples/claude/multi-provider/`](../examples/claude/multi-provider/) · [`examples/qoder/multi-provider/`](../examples/qoder/multi-provider/) |
@@ -51,7 +51,7 @@ agents destroy
5151
| Skill | native | native | native | native |
5252
| Agent | native | native | native | native |
5353
| MCP Server | native | native | native | native |
54-
| Memory Store | unsupported | native | unsupported | native |
54+
| Memory Store | unsupported | native | native | native |
5555
| Multi-Agent | unsupported | unsupported | native | native |
5656
| Deployment | emulated | native | native | emulated |
5757
| Session | native | native | native | native |

docs/guides/configure-an-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ agents:
128128

129129
See [Use MCP and vaults](./use-mcp-and-vaults.md).
130130

131-
## Memory stores (Qoder, Ark)
131+
## Memory stores (Qoder, Claude beta, Ark)
132132

133133
```yaml
134134
memory_stores:

docs/guides/configure-an-agent.zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ agents:
307307

308308
Memory Store 为 Agent 提供持久化上下文,适合存储项目知识、约定规范等长期信息。
309309

310-
> 注意:Memory Store 目前由 Qoder 和 火山方舟 Provider 原生支持。
310+
> 注意:Memory Store 目前由 Qoder、Claude(beta)和火山方舟 Provider 原生支持。
311311

312312
```yaml
313313
memory_stores:

docs/guides/deploy-to-claude.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ providers:
2121
| Feature | Tier |
2222
|---------|:----:|
2323
| Environment, Vault, Skill, Agent, MCP Server, Multi-Agent, Deployment, Session | native |
24-
| Memory Store | unsupported |
24+
| Memory Store | native (beta) |
2525

26-
Use a **skill** or **MCP** for context persistence where Claude has no memory store.
26+
Memory stores require the Claude `agent-memory-2026-07-22` beta, enabled by the adapter by default.
2727

2828
## Minimal agent
2929

0 commit comments

Comments
 (0)