claude-mem 13.4.2 → 13.5.0
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.
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +3 -3
- package/dist/npx-cli/index.js +359 -353
- package/dist/opencode-plugin/index.js +8 -8
- package/openclaw/dist/index.js +19 -14
- package/openclaw/openclaw.plugin.json +1 -1
- package/openclaw/src/index.test.ts +54 -0
- package/openclaw/src/index.ts +47 -3
- package/package.json +2 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/hooks/codex-hooks.json +7 -7
- package/plugin/hooks/hooks.json +7 -7
- package/plugin/package.json +1 -1
- package/plugin/scripts/context-generator.cjs +92 -79
- package/plugin/scripts/mcp-server.cjs +30 -30
- package/plugin/scripts/server-beta-service.cjs +125 -125
- package/plugin/scripts/transcript-watcher.cjs +11 -11
- package/plugin/scripts/worker-service.cjs +299 -273
- package/plugin/skills/standup/SKILL.md +1 -16
|
@@ -1,22 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: standup
|
|
3
3
|
version: 1.0.0
|
|
4
|
-
description:
|
|
5
|
-
Convene the recently-active git worktrees as named agents in a markdown group
|
|
6
|
-
chat, have them reconcile what each changed, and converge on ONE consolidated
|
|
7
|
-
worktree. Each branch is an agent that posts to a shared STANDUP.md (YAML front
|
|
8
|
-
matter holds the GOAL + PROMPT; the body is the chat log), then the room agrees
|
|
9
|
-
on a merge order and a single consolidation plan in the SUMMATION. The room is
|
|
10
|
-
filled either by time window (past 1h / 4h / 24h / 7d / all — only worktrees
|
|
11
|
-
active in it join, so a 40-worktree machine collapses to the handful you
|
|
12
|
-
actually touched) or by hand-picking specific worktrees and/or open GitHub PRs
|
|
13
|
-
from a checkbox-style list. Use this skill whenever the user says "standup",
|
|
14
|
-
"run the standup", "reconcile my worktrees", "consolidate worktrees", "merge
|
|
15
|
-
these branches together", "merge these PRs", "combine these worktrees and pull
|
|
16
|
-
requests", "what's everyone at", "have my worktrees check in", or wants several
|
|
17
|
-
branch-named agents to coordinate / resolve overlapping work into one
|
|
18
|
-
deliverable through a shared chat file — even if they don't say the word
|
|
19
|
-
"standup".
|
|
4
|
+
description: Facilitate a read-only standup across git worktrees, branches, or PRs to compare changes and produce one consolidation plan.
|
|
20
5
|
allowed-tools:
|
|
21
6
|
- Bash
|
|
22
7
|
- Read
|