@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.js
CHANGED
|
@@ -11754,11 +11754,31 @@ function buildMeetingAnalystSubAgent(tier) {
|
|
|
11754
11754
|
"### Steps",
|
|
11755
11755
|
"",
|
|
11756
11756
|
"1. Identify the meeting's basename and `{internal,external}` partition",
|
|
11757
|
-
" from the issue body
|
|
11758
|
-
"
|
|
11757
|
+
" from the issue body using the **basename-pairing algorithm**, then",
|
|
11758
|
+
" read **every** sibling file that exists on disk:",
|
|
11759
11759
|
" - Notes: `<meetingsRoot>/notes/{type}/<basename>.md`",
|
|
11760
11760
|
" - Transcript: `<meetingsRoot>/transcripts/{type}/<basename>.md`",
|
|
11761
11761
|
"",
|
|
11762
|
+
" **Basename-pairing algorithm.** The issue body (or invoking",
|
|
11763
|
+
" skill) may name either tree's path; resolve the sibling",
|
|
11764
|
+
" implicitly:",
|
|
11765
|
+
"",
|
|
11766
|
+
" - Infer the basename (filename without `.md`) and the",
|
|
11767
|
+
" `{internal,external}` partition from the provided path \u2014",
|
|
11768
|
+
" `\u2026/notes/internal/2026-03-14-sprint-kickoff.md` yields",
|
|
11769
|
+
" basename `2026-03-14-sprint-kickoff` and type `internal`.",
|
|
11770
|
+
" - If the input path lives under `/notes/`, look for the",
|
|
11771
|
+
" sibling at `<meetingsRoot>/transcripts/<type>/<basename>.md`.",
|
|
11772
|
+
" If it lives under `/transcripts/`, look for the sibling at",
|
|
11773
|
+
" `<meetingsRoot>/notes/<type>/<basename>.md`. If the path",
|
|
11774
|
+
" matches neither (ad-hoc location), infer basename + type as",
|
|
11775
|
+
" best you can from the filename and surrounding folder",
|
|
11776
|
+
" segments, then proceed with whichever sibling-tree lookups",
|
|
11777
|
+
" succeed. Best-effort, never fail-loud.",
|
|
11778
|
+
" - A missing sibling is a normal outcome \u2014 the input-case matrix",
|
|
11779
|
+
" covers notes-only and transcript-only paths. Never prompt or",
|
|
11780
|
+
" warn the user about the absence.",
|
|
11781
|
+
"",
|
|
11762
11782
|
" Use the **input-case matrix** in **Meeting file layout** to decide",
|
|
11763
11783
|
" which case you are in (both / notes-only / transcript-only). Parse",
|
|
11764
11784
|
" the notes frontmatter first (if a notes file exists), capturing",
|
|
@@ -12020,11 +12040,42 @@ var processMeetingSkill = {
|
|
|
12020
12040
|
"",
|
|
12021
12041
|
"/process-meeting <path-to-notes-or-transcript>",
|
|
12022
12042
|
"",
|
|
12043
|
+
"## Basename-pairing algorithm",
|
|
12044
|
+
"",
|
|
12045
|
+
"The user may pass either a notes-tree path or a transcripts-tree",
|
|
12046
|
+
"path. Resolve the sibling implicitly via filesystem lookup \u2014",
|
|
12047
|
+
"do **not** prompt the user or fail-loud when the sibling is",
|
|
12048
|
+
"absent:",
|
|
12049
|
+
"",
|
|
12050
|
+
"1. Infer the **basename** (filename without the `.md` extension)",
|
|
12051
|
+
" and the `{internal,external}` partition from the provided path.",
|
|
12052
|
+
" Both segments are usually adjacent in the path \u2014",
|
|
12053
|
+
" `\u2026/notes/internal/2026-03-14-sprint-kickoff.md` yields basename",
|
|
12054
|
+
" `2026-03-14-sprint-kickoff` and type `internal`.",
|
|
12055
|
+
"2. Determine the **input tree** from the path:",
|
|
12056
|
+
" - If the path contains `/notes/`, treat it as the notes input",
|
|
12057
|
+
" and look for the sibling at",
|
|
12058
|
+
" `<meetingsRoot>/transcripts/<type>/<basename>.md`.",
|
|
12059
|
+
" - If the path contains `/transcripts/`, treat it as the",
|
|
12060
|
+
" transcript input and look for the sibling at",
|
|
12061
|
+
" `<meetingsRoot>/notes/<type>/<basename>.md`.",
|
|
12062
|
+
" - If the path matches neither (e.g. an ad-hoc location), infer",
|
|
12063
|
+
" basename + type as best you can from the filename and",
|
|
12064
|
+
" surrounding folder segments, then proceed with whichever",
|
|
12065
|
+
" sibling-tree lookups succeed. Best-effort, never fail-loud.",
|
|
12066
|
+
"3. Read **every** sibling that exists on disk. The combination",
|
|
12067
|
+
" (notes present, transcript present, both present) selects the",
|
|
12068
|
+
" Phase-1 input case from the **input-case matrix** in the",
|
|
12069
|
+
" `meeting-analyst` agent prompt.",
|
|
12070
|
+
"4. A missing sibling is a normal outcome \u2014 proceed with whatever",
|
|
12071
|
+
" was found. Notes-only and transcript-only are both valid",
|
|
12072
|
+
" Phase-1 input cases; the agent never warns or prompts the",
|
|
12073
|
+
" user about the absence.",
|
|
12074
|
+
"",
|
|
12023
12075
|
"## Steps",
|
|
12024
12076
|
"",
|
|
12025
|
-
"1.
|
|
12026
|
-
"
|
|
12027
|
-
" that exists (notes file and/or transcript file)",
|
|
12077
|
+
"1. Resolve the basename, partition, and any sibling files using",
|
|
12078
|
+
" the **Basename-pairing algorithm** above",
|
|
12028
12079
|
"2. Execute Phase 1 (Extract) \u2014 categorize the available content into",
|
|
12029
12080
|
" decisions, requirements, action items, open questions, and more",
|
|
12030
12081
|
"3. Write the extraction to",
|
|
@@ -12107,6 +12158,11 @@ function buildMeetingAnalysisBundle(tier = AGENT_MODEL.BALANCED) {
|
|
|
12107
12158
|
skills: [processMeetingSkill],
|
|
12108
12159
|
subAgents: [buildMeetingAnalystSubAgent(tier)],
|
|
12109
12160
|
labels: [
|
|
12161
|
+
{
|
|
12162
|
+
name: "type:meeting-processing",
|
|
12163
|
+
color: "5319E7",
|
|
12164
|
+
description: "Meeting transcript processing pipeline"
|
|
12165
|
+
},
|
|
12110
12166
|
{
|
|
12111
12167
|
name: "meeting:extract",
|
|
12112
12168
|
color: "C5DEF5",
|