@codedrifters/configulator 0.0.351 → 0.0.352
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/lib/index.d.mts +79 -5
- package/lib/index.d.ts +79 -5
- package/lib/index.js +200 -11
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +200 -11
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -11863,7 +11863,7 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
11863
11863
|
"| `planning` | Sprint/plan updates, task issues, requirement drafts | Extract every task assignment. Phase 4 updates the active sprint-plan doc directly and creates one issue per assigned task. |",
|
|
11864
11864
|
"| `review` | Retro notes, follow-up issues, status updates, requirement revisions | Mark completed tasks in the active sprint-plan doc. Capture retrospective learnings inside the meeting notes \u2014 do not spawn a separate retro document. |",
|
|
11865
11865
|
"| `brainstorm` | Future-feature candidates, research topics, very few Firm decisions | Lower the bar for Open Questions. Do **not** create requirement or ADR issues from brainstorm output unless the item is explicitly marked **Firm**. Prefer research/discovery issues for promising ideas. |",
|
|
11866
|
-
"| `standup` | Action items, blockers, status updates | Do not produce requirement, ADR, or BDR drafts. Phase 3 (Draft) is almost always skipped.
|
|
11866
|
+
"| `standup` | Action items, blockers, status updates | Do not produce requirement, ADR, or BDR drafts. Phase 3 (Draft) is almost always skipped. Capture action items in the notes `## Action Items` table; file issues only for agent-workable doc deliverables (per the **Action-item filing policy**) and apply sprint-plan status updates. |",
|
|
11867
11867
|
"| `external` | Customer/competitive intel, people/company profiles, lead capture | Default every attendee outside the team into **People of Interest**. Default every organization mentioned into **Companies of Interest** (signal threshold still applies). Capture stated customer pain points as candidate **BR** (business requirements), not FR. |",
|
|
11868
11868
|
"| `other` | General meeting extraction | Apply the default workflow with no type-specific overrides. |",
|
|
11869
11869
|
"",
|
|
@@ -11925,6 +11925,61 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
11925
11925
|
"",
|
|
11926
11926
|
"---",
|
|
11927
11927
|
"",
|
|
11928
|
+
"## Action-item filing policy",
|
|
11929
|
+
"",
|
|
11930
|
+
"Not every action item should become a GitHub issue. The pipeline",
|
|
11931
|
+
"can only ever close issues whose deliverable an automated agent",
|
|
11932
|
+
"(or this repo's existing channels) can produce. Filing an issue",
|
|
11933
|
+
"for a task only a human can do \u2014 in the real world or in a system",
|
|
11934
|
+
"this pipeline cannot touch \u2014 creates queue noise that no worker or",
|
|
11935
|
+
"orchestrator can ever resolve. Apply the **agent-workability",
|
|
11936
|
+
"test** below in phases 1, 3, and 4.",
|
|
11937
|
+
"",
|
|
11938
|
+
"### Agent-workability test",
|
|
11939
|
+
"",
|
|
11940
|
+
"An action item is **agent-workable** only when completing it",
|
|
11941
|
+
"produces a documentation deliverable an automated agent can author",
|
|
11942
|
+
"in this repo's docs tree \u2014 a requirement document, an ADR, a docs",
|
|
11943
|
+
"page, a BCM capability model, a research note, or a roadmap /",
|
|
11944
|
+
"product-doc update. Route agent-workable items through their",
|
|
11945
|
+
"**dedicated downstream channel** (`req:write`, `docs:write`,",
|
|
11946
|
+
"`bcm:*`, `research:scope`, roadmap/product-doc follow-up). Never",
|
|
11947
|
+
"file them as a generic `action-item` / `type:chore` issue.",
|
|
11948
|
+
"",
|
|
11949
|
+
"An action item is **human-owned** when it requires a person to act",
|
|
11950
|
+
"in the real world or in a system this pipeline cannot reach.",
|
|
11951
|
+
"Typical cues:",
|
|
11952
|
+
"",
|
|
11953
|
+
'- **send / email / schedule / invite / call** \u2014 e.g. "send out',
|
|
11954
|
+
` company invoices", "invite X to next week's call".`,
|
|
11955
|
+
'- **install / configure / provision / set up** \u2014 e.g. "install and',
|
|
11956
|
+
' configure Claude", "get codebase read access".',
|
|
11957
|
+
"- **decide / approve / choose / prioritise** (a human judgement",
|
|
11958
|
+
" call, not a documented decision record).",
|
|
11959
|
+
'- **communicate / notify / give a heads-up** \u2014 e.g. "give Dr. Y a',
|
|
11960
|
+
' heads-up".',
|
|
11961
|
+
"- **get / request access or credentials**, **pay / invoice**.",
|
|
11962
|
+
"- **build or change code in another repo**, **design in an",
|
|
11963
|
+
" external tool** (Figma, etc.).",
|
|
11964
|
+
"",
|
|
11965
|
+
"Record human-owned items **only** in the notes `## Action Items`",
|
|
11966
|
+
"table (who / what / when) \u2014 that table is the **system of record**",
|
|
11967
|
+
"for human follow-ups. Do **not** file a GitHub issue for them.",
|
|
11968
|
+
"",
|
|
11969
|
+
"When an item is ambiguous, default to **human-owned**",
|
|
11970
|
+
"(notes-only): a missed issue is cheaper than queue noise the",
|
|
11971
|
+
"pipeline can never close.",
|
|
11972
|
+
"",
|
|
11973
|
+
"**Consumer tuning.** When the project supplies",
|
|
11974
|
+
"`AgentConfigOptions.meetings.actionItemFiling`, an",
|
|
11975
|
+
"**Action-item filing policy** subsection is rendered into the",
|
|
11976
|
+
"meetings taxonomy with any extra human-owned / agent-workable cues",
|
|
11977
|
+
"and a note when the split is disabled. Apply those overrides on",
|
|
11978
|
+
"top of the built-in cues above; if the split is disabled, fall",
|
|
11979
|
+
"back to filing a follow-up issue for every non-draft action item.",
|
|
11980
|
+
"",
|
|
11981
|
+
"---",
|
|
11982
|
+
"",
|
|
11928
11983
|
...PROJECT_CONTEXT_MAINTAINER_SECTION,
|
|
11929
11984
|
"## Traceability",
|
|
11930
11985
|
"",
|
|
@@ -11956,7 +12011,7 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
11956
12011
|
"",
|
|
11957
12012
|
" | Artifact | Type | Issue/Path |",
|
|
11958
12013
|
" |----------|------|------------|",
|
|
11959
|
-
" | <title> | requirement / ADR /
|
|
12014
|
+
" | <title> | requirement / ADR / docs / profile / research | #<N> or <path> |",
|
|
11960
12015
|
" ```",
|
|
11961
12016
|
"",
|
|
11962
12017
|
"2. **Update the meeting notes** with a similar `## Related Issues` section",
|
|
@@ -12021,7 +12076,7 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
12021
12076
|
` | **Decisions** | "We decided...", "Let's go with...", explicit choices |`,
|
|
12022
12077
|
' | **Requirements** | Feature descriptions, acceptance criteria, "it should..." |',
|
|
12023
12078
|
" | **Technology discussions** | Platform comparisons, architecture options, tool evaluations |",
|
|
12024
|
-
' | **Action items** | "[Person] will...", "Next step is...", assigned tasks |',
|
|
12079
|
+
' | **Action items** | "[Person] will...", "Next step is...", assigned tasks. Tag each with its **disposition** (`agent-workable` vs `human-owned`) per the **Action-item filing policy**. |',
|
|
12025
12080
|
' | **Open questions** | "We need to figure out...", unresolved debates |',
|
|
12026
12081
|
" | **People of interest** | Industry contacts, domain experts mentioned |",
|
|
12027
12082
|
" | **Companies of interest** | Competitors, vendors, partners discussed |",
|
|
@@ -12036,7 +12091,10 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
12036
12091
|
" - Decisions Made (with category and confidence: Firm / Tentative / Needs confirmation)",
|
|
12037
12092
|
" - Requirements Identified (with category and priority estimate)",
|
|
12038
12093
|
" - Technology Discussions (with status: Decided / Leaning toward / Open)",
|
|
12039
|
-
" - Action Items (with assignee and due date if stated
|
|
12094
|
+
" - Action Items (with assignee and due date if stated, and a",
|
|
12095
|
+
" **disposition** tag \u2014 `agent-workable` or `human-owned` \u2014 per",
|
|
12096
|
+
" the **Action-item filing policy** so Phase 4 can route each",
|
|
12097
|
+
" item without re-classifying it)",
|
|
12040
12098
|
" - Open Questions",
|
|
12041
12099
|
" - People of Interest (with context and whether a profile exists)",
|
|
12042
12100
|
" - Companies of Interest (with type and context)",
|
|
@@ -12166,7 +12224,11 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
12166
12224
|
" - Agenda / topics covered",
|
|
12167
12225
|
" - Key Discussion Points (organized by topic)",
|
|
12168
12226
|
" - Decisions (numbered, with rationale)",
|
|
12169
|
-
" - Action Items (table: who, what, when)",
|
|
12227
|
+
" - Action Items (table: who, what, when). This table is the",
|
|
12228
|
+
" **system of record for human follow-ups** \u2014 human-owned",
|
|
12229
|
+
" action items live here and are never filed as GitHub issues",
|
|
12230
|
+
" (see the **Action-item filing policy**). Capture every",
|
|
12231
|
+
" action item here regardless of disposition.",
|
|
12170
12232
|
" - Open Questions",
|
|
12171
12233
|
" - Follow-up items",
|
|
12172
12234
|
"4. **Plan the `notes/` tree index update \u2014 do not commit it",
|
|
@@ -12214,6 +12276,11 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
12214
12276
|
"This phase only exists if the extraction identified requirements, architectural",
|
|
12215
12277
|
"decisions, or strategy changes. If this issue exists, execute it.",
|
|
12216
12278
|
"",
|
|
12279
|
+
"Draft proposals only for **agent-workable** deliverables (per the",
|
|
12280
|
+
"**Action-item filing policy**). Action items tagged `human-owned`",
|
|
12281
|
+
"in the extraction are not drafted here \u2014 they stay in the notes",
|
|
12282
|
+
"`## Action Items` table and produce no follow-up issue.",
|
|
12283
|
+
"",
|
|
12217
12284
|
"### Steps",
|
|
12218
12285
|
"",
|
|
12219
12286
|
"1. Read the extraction file from Phase 1 at",
|
|
@@ -12253,8 +12320,27 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
12253
12320
|
" gated by areas.",
|
|
12254
12321
|
"3. Create ADR issues if technology decisions need formal records.",
|
|
12255
12322
|
" Include a `## Traceability` section in each. Not gated by areas.",
|
|
12256
|
-
"4.
|
|
12257
|
-
"
|
|
12323
|
+
"4. **Route action items per the Action-item filing policy \u2014 do",
|
|
12324
|
+
" not file a generic `action-item` issue per task.** Read each",
|
|
12325
|
+
" action item's `disposition` tag from the extraction (re-apply",
|
|
12326
|
+
" the **agent-workability test** if the tag is missing):",
|
|
12327
|
+
" - **Agent-workable** (yields a doc deliverable an agent can",
|
|
12328
|
+
" author): file it through its **dedicated downstream channel**",
|
|
12329
|
+
" \u2014 a `req:write` issue for a requirement, a `docs:write` issue",
|
|
12330
|
+
" for a docs page, `bcm:*` for a capability model, a",
|
|
12331
|
+
" `research:scope` issue for a research note, or a roadmap /",
|
|
12332
|
+
" product-doc follow-up. Use the matching template from the",
|
|
12333
|
+
" issue-templates page; include a `## Traceability` section.",
|
|
12334
|
+
" Issue creation is not gated by areas.",
|
|
12335
|
+
" - **Human-owned** (send/schedule/install/decide/communicate/",
|
|
12336
|
+
" get-access/build-elsewhere): record it **only** in the notes",
|
|
12337
|
+
" `## Action Items` table (step 8 already carries the table",
|
|
12338
|
+
" forward). **File no GitHub issue.** When ambiguous, treat the",
|
|
12339
|
+
" item as human-owned.",
|
|
12340
|
+
" If the project disabled the split via",
|
|
12341
|
+
" `meetings.actionItemFiling.enabled: false`, fall back to filing",
|
|
12342
|
+
" a follow-up issue for every action item not already covered by",
|
|
12343
|
+
" a Phase 3 draft.",
|
|
12258
12344
|
"5. Cross-reference the meeting in any existing documents that were",
|
|
12259
12345
|
" discussed **and that live under an in-scope `docRoot`**. For",
|
|
12260
12346
|
" discussed documents under an out-of-scope `docRoot`, open a",
|
|
@@ -12291,7 +12377,10 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
12291
12377
|
"- Use `gh` CLI for all GitHub operations",
|
|
12292
12378
|
"- Apply the appropriate `meeting:*` phase label to each phase issue",
|
|
12293
12379
|
"- Use `type:docs` for documentation-producing issues, `type:chore` for",
|
|
12294
|
-
" maintenance/organizational tasks",
|
|
12380
|
+
" maintenance/organizational tasks the pipeline can action",
|
|
12381
|
+
"- Do **not** file issues for human-owned action items \u2014 per the",
|
|
12382
|
+
" **Action-item filing policy** they live only in the notes",
|
|
12383
|
+
" `## Action Items` table",
|
|
12295
12384
|
"- Use `status:` labels to track progress (`status:ready`, `status:in-progress`, `status:done`)",
|
|
12296
12385
|
"- Reference the source meeting transcript in all created issues",
|
|
12297
12386
|
"- Link phase issues with `Depends on: #N` to enforce ordering",
|
|
@@ -12362,7 +12451,10 @@ var processMeetingSkill = {
|
|
|
12362
12451
|
"1. Resolve the basename, partition, and any sibling files using",
|
|
12363
12452
|
" the **Basename-pairing algorithm** above",
|
|
12364
12453
|
"2. Execute Phase 1 (Extract) \u2014 categorize the available content into",
|
|
12365
|
-
" decisions, requirements, action items, open questions, and more",
|
|
12454
|
+
" decisions, requirements, action items, open questions, and more.",
|
|
12455
|
+
" Tag each action item's disposition (`agent-workable` vs",
|
|
12456
|
+
" `human-owned`) per the agent's **Action-item filing policy** so",
|
|
12457
|
+
" Phase 4 keeps human-owned tasks out of the issue queue",
|
|
12366
12458
|
"3. Write the extraction to",
|
|
12367
12459
|
" `<meetingsRoot>/insights/{type}/<basename>.md`",
|
|
12368
12460
|
"4. Create downstream phase issues using `gh issue create`:",
|
|
@@ -12432,7 +12524,18 @@ function buildMeetingAnalysisBundle(tier = AGENT_MODEL.BALANCED) {
|
|
|
12432
12524
|
"direct edits to the doc-root sub-folders declared in the project's",
|
|
12433
12525
|
"**Area \u2192 doc-root mapping** table. When both fields are absent",
|
|
12434
12526
|
"the pipeline falls back to the default workflow (kind `other`,",
|
|
12435
|
-
"no area gating)."
|
|
12527
|
+
"no area gating).",
|
|
12528
|
+
"",
|
|
12529
|
+
"Phase 4 applies an **agent-workability split** to action items:",
|
|
12530
|
+
"items that yield a documentation deliverable an agent can author",
|
|
12531
|
+
"are filed through their dedicated downstream channel",
|
|
12532
|
+
"(`req:write`, `docs:write`, `bcm:*`, `research:scope`, roadmap",
|
|
12533
|
+
"follow-up); human-owned tasks (send / schedule / install /",
|
|
12534
|
+
"decide / communicate / get-access / build-elsewhere) are",
|
|
12535
|
+
"recorded **only** in the notes `## Action Items` table, which is",
|
|
12536
|
+
"the **system of record for human follow-ups** \u2014 no GitHub issue",
|
|
12537
|
+
"is filed for them. Consumers tune or disable the split via",
|
|
12538
|
+
"`AgentConfigOptions.meetings.actionItemFiling`."
|
|
12436
12539
|
].join("\n"),
|
|
12437
12540
|
platforms: {
|
|
12438
12541
|
cursor: { exclude: true }
|
|
@@ -13577,6 +13680,9 @@ var DEFAULT_BUNDLE_OVERRIDES = {
|
|
|
13577
13680
|
"regulatory:research": {
|
|
13578
13681
|
acceptanceCriteria: { smallMax: 3, mediumMax: 10 }
|
|
13579
13682
|
},
|
|
13683
|
+
"standards:research": {
|
|
13684
|
+
acceptanceCriteria: { smallMax: 3, mediumMax: 10 }
|
|
13685
|
+
},
|
|
13580
13686
|
"software:map": {
|
|
13581
13687
|
acceptanceCriteria: { smallMax: 3, mediumMax: 12 },
|
|
13582
13688
|
sources: { smallMax: 2, mediumMax: 15 }
|
|
@@ -13790,6 +13896,31 @@ function renderScopeGateSection(gate, excludeBundles = []) {
|
|
|
13790
13896
|
"alphabetical order on the label name** \u2014 first-wins, deterministic."
|
|
13791
13897
|
);
|
|
13792
13898
|
}
|
|
13899
|
+
lines.push(
|
|
13900
|
+
"",
|
|
13901
|
+
"### Reconfiguring the thresholds",
|
|
13902
|
+
"",
|
|
13903
|
+
"Every threshold above is configurable per repo \u2014 the global",
|
|
13904
|
+
"`acceptance-criteria` / `sources` classification bands and each",
|
|
13905
|
+
"per-phase-label override. Retune them in the project's",
|
|
13906
|
+
"configulator config so the gate fits this repo's issue shapes:",
|
|
13907
|
+
"",
|
|
13908
|
+
"- `AgentConfigOptions.scopeGate.acceptanceCriteria` /",
|
|
13909
|
+
" `AgentConfigOptions.scopeGate.sources` \u2014 the global",
|
|
13910
|
+
" `smallMax` / `mediumMax` bands applied to every issue.",
|
|
13911
|
+
"- `AgentConfigOptions.scopeGate.bundleOverrides.<phase-label>` \u2014",
|
|
13912
|
+
" a per-phase-label override for **any** phase label, not just",
|
|
13913
|
+
" the ones shipped above. The map deep-merges with the shipped",
|
|
13914
|
+
" defaults (consumer-wins-per-key): add a key to raise a new",
|
|
13915
|
+
" label's AC / sources ceiling, set an existing key to replace a",
|
|
13916
|
+
" shipped default, or set a key to `undefined` to drop a shipped",
|
|
13917
|
+
" default and classify that label against the global bands.",
|
|
13918
|
+
"",
|
|
13919
|
+
"Each override entry's `acceptanceCriteria` and `sources` axes are",
|
|
13920
|
+
"independent \u2014 override one and the other falls through to the",
|
|
13921
|
+
"global band. Malformed thresholds (negative, non-integer, or",
|
|
13922
|
+
"`mediumMax <= smallMax`) fail the build at synth time."
|
|
13923
|
+
);
|
|
13793
13924
|
lines.push(
|
|
13794
13925
|
"",
|
|
13795
13926
|
"### Decomposition-proposal template",
|
|
@@ -29975,13 +30106,20 @@ function renderFocusSection(focus) {
|
|
|
29975
30106
|
|
|
29976
30107
|
// src/agent/bundles/meeting-types.ts
|
|
29977
30108
|
var DEFAULT_AGENDA_TEMPLATE_ROOT = "<meetingsRoot>/_agenda-templates";
|
|
30109
|
+
function actionItemFilingHasOverride(filing) {
|
|
30110
|
+
if (!filing) {
|
|
30111
|
+
return false;
|
|
30112
|
+
}
|
|
30113
|
+
return filing.enabled === false || (filing.humanOwnedCues ?? []).length > 0 || (filing.agentWorkableCues ?? []).length > 0;
|
|
30114
|
+
}
|
|
29978
30115
|
function renderMeetingTypesSection(meetings) {
|
|
29979
30116
|
if (!meetings) {
|
|
29980
30117
|
return "";
|
|
29981
30118
|
}
|
|
29982
30119
|
const types = meetings.meetingTypes ?? [];
|
|
29983
30120
|
const areas = meetings.meetingAreas ?? [];
|
|
29984
|
-
|
|
30121
|
+
const filingOverride = actionItemFilingHasOverride(meetings.actionItemFiling) ? meetings.actionItemFiling : void 0;
|
|
30122
|
+
if (types.length === 0 && areas.length === 0 && !filingOverride) {
|
|
29985
30123
|
return "";
|
|
29986
30124
|
}
|
|
29987
30125
|
const sections = [];
|
|
@@ -29991,6 +30129,9 @@ function renderMeetingTypesSection(meetings) {
|
|
|
29991
30129
|
if (areas.length > 0) {
|
|
29992
30130
|
sections.push(renderMeetingAreas(areas));
|
|
29993
30131
|
}
|
|
30132
|
+
if (filingOverride) {
|
|
30133
|
+
sections.push(renderActionItemFiling(filingOverride));
|
|
30134
|
+
}
|
|
29994
30135
|
return sections.join("\n\n");
|
|
29995
30136
|
}
|
|
29996
30137
|
function renderMeetingTypes(types, agendaTemplateRoot) {
|
|
@@ -30044,6 +30185,54 @@ function renderMeetingAreas(areas) {
|
|
|
30044
30185
|
}
|
|
30045
30186
|
return lines.join("\n");
|
|
30046
30187
|
}
|
|
30188
|
+
function renderActionItemFiling(filing) {
|
|
30189
|
+
const lines = [
|
|
30190
|
+
"## Action-item filing policy",
|
|
30191
|
+
"",
|
|
30192
|
+
"This project tunes the Phase 4 (Link) agent-workability split",
|
|
30193
|
+
"through `AgentConfigOptions.meetings.actionItemFiling`. See the",
|
|
30194
|
+
"**Action-item filing policy** section of the `meeting-analyst`",
|
|
30195
|
+
"agent for the full baked-in test.",
|
|
30196
|
+
""
|
|
30197
|
+
];
|
|
30198
|
+
if (filing.enabled === false) {
|
|
30199
|
+
lines.push(
|
|
30200
|
+
"- **Split disabled.** Phase 4 falls back to the legacy behaviour:",
|
|
30201
|
+
" file a follow-up issue for every action item that is not",
|
|
30202
|
+
" already covered by a requirement or ADR draft, including",
|
|
30203
|
+
" human-owned tasks. The notes `## Action Items` table is still",
|
|
30204
|
+
" written, but it is no longer the sole record for human",
|
|
30205
|
+
" follow-ups."
|
|
30206
|
+
);
|
|
30207
|
+
} else {
|
|
30208
|
+
lines.push(
|
|
30209
|
+
"- **Split enabled** (default). Agent-workable doc deliverables are",
|
|
30210
|
+
" filed through their dedicated downstream channel; human-owned",
|
|
30211
|
+
" tasks are recorded only in the notes `## Action Items` table."
|
|
30212
|
+
);
|
|
30213
|
+
}
|
|
30214
|
+
const humanCues = filing.humanOwnedCues ?? [];
|
|
30215
|
+
if (humanCues.length > 0) {
|
|
30216
|
+
lines.push(
|
|
30217
|
+
"",
|
|
30218
|
+
"**Additional human-owned cues** (recorded notes-only, never",
|
|
30219
|
+
"filed), in addition to the bundle's built-in list:",
|
|
30220
|
+
"",
|
|
30221
|
+
...humanCues.map((cue) => `- ${cue}`)
|
|
30222
|
+
);
|
|
30223
|
+
}
|
|
30224
|
+
const agentCues = filing.agentWorkableCues ?? [];
|
|
30225
|
+
if (agentCues.length > 0) {
|
|
30226
|
+
lines.push(
|
|
30227
|
+
"",
|
|
30228
|
+
"**Additional agent-workable cues** (filed through the matching",
|
|
30229
|
+
"downstream channel), in addition to the bundle's built-in list:",
|
|
30230
|
+
"",
|
|
30231
|
+
...agentCues.map((cue) => `- ${cue}`)
|
|
30232
|
+
);
|
|
30233
|
+
}
|
|
30234
|
+
return lines.join("\n");
|
|
30235
|
+
}
|
|
30047
30236
|
|
|
30048
30237
|
// src/agent/bundles/priority-rules.ts
|
|
30049
30238
|
function renderPriorityRulesSection(rules) {
|