@codedrifters/configulator 0.0.303 → 0.0.305
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.js +61 -5
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +61 -5
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -11466,11 +11466,31 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
11466
11466
|
"### Steps",
|
|
11467
11467
|
"",
|
|
11468
11468
|
"1. Identify the meeting's basename and `{internal,external}` partition",
|
|
11469
|
-
" from the issue body
|
|
11470
|
-
"
|
|
11469
|
+
" from the issue body using the **basename-pairing algorithm**, then",
|
|
11470
|
+
" read **every** sibling file that exists on disk:",
|
|
11471
11471
|
" - Notes: `<meetingsRoot>/notes/{type}/<basename>.md`",
|
|
11472
11472
|
" - Transcript: `<meetingsRoot>/transcripts/{type}/<basename>.md`",
|
|
11473
11473
|
"",
|
|
11474
|
+
" **Basename-pairing algorithm.** The issue body (or invoking",
|
|
11475
|
+
" skill) may name either tree's path; resolve the sibling",
|
|
11476
|
+
" implicitly:",
|
|
11477
|
+
"",
|
|
11478
|
+
" - Infer the basename (filename without `.md`) and the",
|
|
11479
|
+
" `{internal,external}` partition from the provided path \u2014",
|
|
11480
|
+
" `\u2026/notes/internal/2026-03-14-sprint-kickoff.md` yields",
|
|
11481
|
+
" basename `2026-03-14-sprint-kickoff` and type `internal`.",
|
|
11482
|
+
" - If the input path lives under `/notes/`, look for the",
|
|
11483
|
+
" sibling at `<meetingsRoot>/transcripts/<type>/<basename>.md`.",
|
|
11484
|
+
" If it lives under `/transcripts/`, look for the sibling at",
|
|
11485
|
+
" `<meetingsRoot>/notes/<type>/<basename>.md`. If the path",
|
|
11486
|
+
" matches neither (ad-hoc location), infer basename + type as",
|
|
11487
|
+
" best you can from the filename and surrounding folder",
|
|
11488
|
+
" segments, then proceed with whichever sibling-tree lookups",
|
|
11489
|
+
" succeed. Best-effort, never fail-loud.",
|
|
11490
|
+
" - A missing sibling is a normal outcome \u2014 the input-case matrix",
|
|
11491
|
+
" covers notes-only and transcript-only paths. Never prompt or",
|
|
11492
|
+
" warn the user about the absence.",
|
|
11493
|
+
"",
|
|
11474
11494
|
" Use the **input-case matrix** in **Meeting file layout** to decide",
|
|
11475
11495
|
" which case you are in (both / notes-only / transcript-only). Parse",
|
|
11476
11496
|
" the notes frontmatter first (if a notes file exists), capturing",
|
|
@@ -11732,11 +11752,42 @@ var processMeetingSkill = {
|
|
|
11732
11752
|
"",
|
|
11733
11753
|
"/process-meeting <path-to-notes-or-transcript>",
|
|
11734
11754
|
"",
|
|
11755
|
+
"## Basename-pairing algorithm",
|
|
11756
|
+
"",
|
|
11757
|
+
"The user may pass either a notes-tree path or a transcripts-tree",
|
|
11758
|
+
"path. Resolve the sibling implicitly via filesystem lookup \u2014",
|
|
11759
|
+
"do **not** prompt the user or fail-loud when the sibling is",
|
|
11760
|
+
"absent:",
|
|
11761
|
+
"",
|
|
11762
|
+
"1. Infer the **basename** (filename without the `.md` extension)",
|
|
11763
|
+
" and the `{internal,external}` partition from the provided path.",
|
|
11764
|
+
" Both segments are usually adjacent in the path \u2014",
|
|
11765
|
+
" `\u2026/notes/internal/2026-03-14-sprint-kickoff.md` yields basename",
|
|
11766
|
+
" `2026-03-14-sprint-kickoff` and type `internal`.",
|
|
11767
|
+
"2. Determine the **input tree** from the path:",
|
|
11768
|
+
" - If the path contains `/notes/`, treat it as the notes input",
|
|
11769
|
+
" and look for the sibling at",
|
|
11770
|
+
" `<meetingsRoot>/transcripts/<type>/<basename>.md`.",
|
|
11771
|
+
" - If the path contains `/transcripts/`, treat it as the",
|
|
11772
|
+
" transcript input and look for the sibling at",
|
|
11773
|
+
" `<meetingsRoot>/notes/<type>/<basename>.md`.",
|
|
11774
|
+
" - If the path matches neither (e.g. an ad-hoc location), infer",
|
|
11775
|
+
" basename + type as best you can from the filename and",
|
|
11776
|
+
" surrounding folder segments, then proceed with whichever",
|
|
11777
|
+
" sibling-tree lookups succeed. Best-effort, never fail-loud.",
|
|
11778
|
+
"3. Read **every** sibling that exists on disk. The combination",
|
|
11779
|
+
" (notes present, transcript present, both present) selects the",
|
|
11780
|
+
" Phase-1 input case from the **input-case matrix** in the",
|
|
11781
|
+
" `meeting-analyst` agent prompt.",
|
|
11782
|
+
"4. A missing sibling is a normal outcome \u2014 proceed with whatever",
|
|
11783
|
+
" was found. Notes-only and transcript-only are both valid",
|
|
11784
|
+
" Phase-1 input cases; the agent never warns or prompts the",
|
|
11785
|
+
" user about the absence.",
|
|
11786
|
+
"",
|
|
11735
11787
|
"## Steps",
|
|
11736
11788
|
"",
|
|
11737
|
-
"1.
|
|
11738
|
-
"
|
|
11739
|
-
" that exists (notes file and/or transcript file)",
|
|
11789
|
+
"1. Resolve the basename, partition, and any sibling files using",
|
|
11790
|
+
" the **Basename-pairing algorithm** above",
|
|
11740
11791
|
"2. Execute Phase 1 (Extract) \u2014 categorize the available content into",
|
|
11741
11792
|
" decisions, requirements, action items, open questions, and more",
|
|
11742
11793
|
"3. Write the extraction to",
|
|
@@ -11819,6 +11870,11 @@ function buildMeetingAnalysisBundle(tier = AGENT_MODEL.BALANCED) {
|
|
|
11819
11870
|
skills: [processMeetingSkill],
|
|
11820
11871
|
subAgents: [buildMeetingAnalystSubAgent(tier)],
|
|
11821
11872
|
labels: [
|
|
11873
|
+
{
|
|
11874
|
+
name: "type:meeting-processing",
|
|
11875
|
+
color: "5319E7",
|
|
11876
|
+
description: "Meeting transcript processing pipeline"
|
|
11877
|
+
},
|
|
11822
11878
|
{
|
|
11823
11879
|
name: "meeting:extract",
|
|
11824
11880
|
color: "C5DEF5",
|