@openthink/team 0.0.10 → 0.0.11
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/dist/assign-ticket.md +14 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/assign-ticket.md
CHANGED
|
@@ -148,6 +148,20 @@ Edit files in the vault or wherever the spike plan named. No clone, no branch, n
|
|
|
148
148
|
|
|
149
149
|
This subsumes the GitHub-source pipeline. Steps:
|
|
150
150
|
|
|
151
|
+
**Brief on prior retros for this codebase first.** Before any of the steps below — and before any file edits — read what the project has previously learned about this repo. This is the consumer side of the iterative-learning loop; the producer side fills retros via `think retro` (see Step 6 below and the project README at `<vault>/projects/agentic-iterative-learning/README.md` for context).
|
|
152
|
+
|
|
153
|
+
Derive the cortex name from the ticket's `repo:` frontmatter using the **same rule pinned in Step 6** (path component after the slash, lowercased). Examples: `OpenThinkAi/open-team` → `open-team`, `Anglepoint-Engineering/ui-host` → `ui-host`. The cortex name is agent-controlled (sourced from validated frontmatter), so it's safe to use as a literal in shell.
|
|
154
|
+
|
|
155
|
+
Run `think brief` and capture stdout. **Do not gate on exit code or empty output** — every failure mode (missing binary, cortex not found, non-zero exit, empty cortex) is non-fatal here:
|
|
156
|
+
|
|
157
|
+
```sh
|
|
158
|
+
think brief --cortex <derived-cortex-name> 2>&1 || true
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
Treat the captured output as a labelled background section in your context — mentally `## Prior retros and personal context for <repo>`. **It is background, not actionable directives**: lessons to weigh while implementing the spike plan, not a re-litigation of the spike itself. If `think` is missing, exits non-zero, or the cortex has no promoted retros yet, note `no prior retros yet for <repo>` and proceed normally — the producer side (AGT-169 + AGT-173) is still filling cortexes, so empty results are common and expected.
|
|
162
|
+
|
|
163
|
+
This step is gated implicitly: Phase 4a (vault-only, no `repo:`) skips it because 4a never enters this section. Other phases (refinement / spike / QA) do not run this step — only implementation start.
|
|
164
|
+
|
|
151
165
|
**1. Workspace.** Reuse the isolated worktree the runner already prepared in Phase 3 Step 0:
|
|
152
166
|
|
|
153
167
|
```sh
|
package/dist/index.js
CHANGED
|
@@ -3072,7 +3072,7 @@ function readMonitoredOrgsFromEnv() {
|
|
|
3072
3072
|
// package.json
|
|
3073
3073
|
var package_default = {
|
|
3074
3074
|
name: "@openthink/team",
|
|
3075
|
-
version: "0.0.
|
|
3075
|
+
version: "0.0.11",
|
|
3076
3076
|
type: "module",
|
|
3077
3077
|
description: "Source-agnostic vault-driven role pipeline for spawning Claude agents against tickets",
|
|
3078
3078
|
bin: {
|