@codedrifters/configulator 0.0.262 → 0.0.263
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 +54 -11
- package/lib/index.d.ts +54 -11
- package/lib/index.js +164 -22
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +164 -22
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -1143,6 +1143,33 @@ interface FocusConfig {
|
|
|
1143
1143
|
* customer / prospect / partner buckets.
|
|
1144
1144
|
*/
|
|
1145
1145
|
type MeetingScope = "internal-recurring" | "internal-oneoff" | "external-customer" | "external-prospect" | "external-partner" | "external-other";
|
|
1146
|
+
/**
|
|
1147
|
+
* Generic meeting-kind taxonomy. Each recognized meeting type maps to
|
|
1148
|
+
* one of these kinds, which the `meeting-analysis` bundle uses to
|
|
1149
|
+
* apply type-specific extraction rules in phases 1–2.
|
|
1150
|
+
*
|
|
1151
|
+
* The kind captures the **family** of meeting (how it should be
|
|
1152
|
+
* extracted), independent of the concrete project-specific `id`. For
|
|
1153
|
+
* example a repo may declare `founders-weekly` and `sprint-planning`
|
|
1154
|
+
* as two distinct `id`s that both map to `kind: 'planning'`.
|
|
1155
|
+
*
|
|
1156
|
+
* - `planning` — sprint or project planning. Focus on tasks, goals,
|
|
1157
|
+
* and assignments. Produces direct sprint-plan edits and task
|
|
1158
|
+
* issues.
|
|
1159
|
+
* - `review` — sprint review, retrospective, or decision review.
|
|
1160
|
+
* Captures retro learnings, status updates, and follow-ups.
|
|
1161
|
+
* - `brainstorm` — open-ended ideation. Lower bar for Open Questions
|
|
1162
|
+
* and Future Features; higher bar for requirement/ADR creation
|
|
1163
|
+
* (only Firm items).
|
|
1164
|
+
* - `standup` — short status meeting. Action items, blockers, sprint
|
|
1165
|
+
* status. Phase 3 (Draft) is almost always skipped.
|
|
1166
|
+
* - `external` — customer, prospect, partner, or conference debrief.
|
|
1167
|
+
* Emphasizes people/company profiles, customer pain points (as BR
|
|
1168
|
+
* candidates, not FR), and competitive intel.
|
|
1169
|
+
* - `other` — general meeting with no type-specific handling; the
|
|
1170
|
+
* default workflow applies.
|
|
1171
|
+
*/
|
|
1172
|
+
type MeetingTypeKind = "planning" | "review" | "brainstorm" | "standup" | "external" | "other";
|
|
1146
1173
|
/**
|
|
1147
1174
|
* A single meeting-type taxonomy entry declared by the consuming repo.
|
|
1148
1175
|
* Each entry names a kind of meeting the project recognizes
|
|
@@ -1174,6 +1201,18 @@ interface MeetingType {
|
|
|
1174
1201
|
* or one-off) or external (customer / prospect / partner / other).
|
|
1175
1202
|
*/
|
|
1176
1203
|
readonly scope: MeetingScope;
|
|
1204
|
+
/**
|
|
1205
|
+
* Generic meeting kind this type maps to. Drives which type-specific
|
|
1206
|
+
* extraction rules (Meeting Type Handling table) the `meeting-analysis`
|
|
1207
|
+
* bundle applies in phases 1–2. Optional — when omitted, the bundle
|
|
1208
|
+
* falls back to `other` (no type-specific rules).
|
|
1209
|
+
*
|
|
1210
|
+
* Multiple concrete `id`s can share the same `kind` (e.g., both
|
|
1211
|
+
* `founders-weekly` and `sprint-planning` may map to `planning`).
|
|
1212
|
+
*
|
|
1213
|
+
* @example 'planning', 'standup', 'external'
|
|
1214
|
+
*/
|
|
1215
|
+
readonly kind?: MeetingTypeKind;
|
|
1177
1216
|
/**
|
|
1178
1217
|
* Default scheduled duration in minutes. Optional; agents may use
|
|
1179
1218
|
* this when proposing calendar holds or when validating a
|
|
@@ -1197,14 +1236,17 @@ interface MeetingType {
|
|
|
1197
1236
|
}
|
|
1198
1237
|
/**
|
|
1199
1238
|
* A single meeting-area entry. Meeting areas provide a coarse
|
|
1200
|
-
* routing map from an `
|
|
1201
|
-
* the sub-tree of the docs root where phase-4
|
|
1202
|
-
* land.
|
|
1239
|
+
* routing map from entries in an `areas:` frontmatter list on a
|
|
1240
|
+
* meeting note to the sub-tree of the docs root where phase-4
|
|
1241
|
+
* direct edits should land. A single meeting may declare multiple
|
|
1242
|
+
* areas; every matching entry's `docRoot` is in-scope for direct
|
|
1243
|
+
* edits on that meeting (see the `meeting-analyst` agent's
|
|
1244
|
+
* **Areas filtering** section for the full gating contract).
|
|
1203
1245
|
*
|
|
1204
1246
|
* Example: declaring `{ id: 'product-engineering', label: 'Product &
|
|
1205
1247
|
* Engineering', docRoot: 'product' }` tells the `meeting-analysis`
|
|
1206
1248
|
* bundle that a meeting whose frontmatter carries
|
|
1207
|
-
* `
|
|
1249
|
+
* `areas: [product-engineering]` should have its direct edits routed
|
|
1208
1250
|
* under `<docsRoot>/product/`.
|
|
1209
1251
|
*
|
|
1210
1252
|
* When `AgentConfigOptions.meetings.meetingAreas` is non-empty, the
|
|
@@ -1217,8 +1259,8 @@ interface MeetingType {
|
|
|
1217
1259
|
*/
|
|
1218
1260
|
interface MeetingArea {
|
|
1219
1261
|
/**
|
|
1220
|
-
* Stable machine identifier for the area. Matches the
|
|
1221
|
-
* frontmatter
|
|
1262
|
+
* Stable machine identifier for the area. Matches one of the
|
|
1263
|
+
* entries in the `areas:` frontmatter list on meeting notes.
|
|
1222
1264
|
* @example 'product-engineering', 'go-to-market', 'operations'
|
|
1223
1265
|
*/
|
|
1224
1266
|
readonly id: string;
|
|
@@ -1239,7 +1281,8 @@ interface MeetingArea {
|
|
|
1239
1281
|
* templating a meeting. Every field is optional.
|
|
1240
1282
|
*
|
|
1241
1283
|
* - `meetingTypes` — the set of meeting types the repo recognizes.
|
|
1242
|
-
* - `meetingAreas` — maps `
|
|
1284
|
+
* - `meetingAreas` — maps entries in the `areas:` frontmatter list
|
|
1285
|
+
* to doc-root sub-trees.
|
|
1243
1286
|
* - `agendaTemplateRoot` — where pre-meeting agenda skeletons live.
|
|
1244
1287
|
*
|
|
1245
1288
|
* When supplied, the `meeting-analysis` bundle conditionally renders
|
|
@@ -1947,9 +1990,9 @@ declare function renderFocusSection(focus: FocusConfig | undefined): string;
|
|
|
1947
1990
|
* Two subsections are rendered, each gated on its own input array:
|
|
1948
1991
|
*
|
|
1949
1992
|
* 1. **Recognized meeting types** — rendered when `meetingTypes` is
|
|
1950
|
-
* non-empty. Lists every declared type with its scope,
|
|
1951
|
-
* cadence, default duration, and agenda template path.
|
|
1952
|
-
* documents the resolved `agendaTemplateRoot`.
|
|
1993
|
+
* non-empty. Lists every declared type with its scope, kind,
|
|
1994
|
+
* optional cadence, default duration, and agenda template path.
|
|
1995
|
+
* Also documents the resolved `agendaTemplateRoot`.
|
|
1953
1996
|
* 2. **Area → doc-root mapping** — rendered when `meetingAreas` is
|
|
1954
1997
|
* non-empty. Lists every declared area with its `id`, label, and
|
|
1955
1998
|
* docs-root-relative destination folder.
|
|
@@ -4695,4 +4738,4 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
4695
4738
|
*/
|
|
4696
4739
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
4697
4740
|
|
|
4698
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AGENT_PATHS, DEFAULT_PRIORITY_LABELS, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TYPE_LABELS, type DeployWorkflowOptions, type DeploymentMetadata, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, type OrganizationMetadata, PROD_DEPLOY_NAME, PnpmWorkspace, type PnpmWorkspaceOptions, type PriorityRule, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedProjectMetadata, STARLIGHT_ROLE, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, type TemplateResolveResult, TestRunner, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, awsCdkBundle, baseBundle, bcmWriterBundle, companyProfileBundle, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, pnpmBundle, prReviewBundle, projenBundle, renderCustomDocSectionBlock, renderCustomDocSections, renderFocusSection, renderMeetingTypesSection, renderPriorityRulesSection, renderSourceTierExamples, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveModelAlias, resolveOutdirFromPackageName, resolveTemplateVariables, resolveTypeScriptProjectOutdir, slackBundle, softwareProfileBundle, turborepoBundle, typescriptBundle, validateMonorepoLayout, validateStarlightSingleton, vitestBundle };
|
|
4741
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, DEFAULT_AGENT_PATHS, DEFAULT_PRIORITY_LABELS, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TYPE_LABELS, type DeployWorkflowOptions, type DeploymentMetadata, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, type OrganizationMetadata, PROD_DEPLOY_NAME, PnpmWorkspace, type PnpmWorkspaceOptions, type PriorityRule, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedProjectMetadata, STARLIGHT_ROLE, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, type TemplateResolveResult, TestRunner, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, awsCdkBundle, baseBundle, bcmWriterBundle, companyProfileBundle, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, pnpmBundle, prReviewBundle, projenBundle, renderCustomDocSectionBlock, renderCustomDocSections, renderFocusSection, renderMeetingTypesSection, renderPriorityRulesSection, renderSourceTierExamples, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveModelAlias, resolveOutdirFromPackageName, resolveTemplateVariables, resolveTypeScriptProjectOutdir, slackBundle, softwareProfileBundle, turborepoBundle, typescriptBundle, validateMonorepoLayout, validateStarlightSingleton, vitestBundle };
|
package/lib/index.d.ts
CHANGED
|
@@ -1192,6 +1192,33 @@ interface FocusConfig {
|
|
|
1192
1192
|
* customer / prospect / partner buckets.
|
|
1193
1193
|
*/
|
|
1194
1194
|
type MeetingScope = "internal-recurring" | "internal-oneoff" | "external-customer" | "external-prospect" | "external-partner" | "external-other";
|
|
1195
|
+
/**
|
|
1196
|
+
* Generic meeting-kind taxonomy. Each recognized meeting type maps to
|
|
1197
|
+
* one of these kinds, which the `meeting-analysis` bundle uses to
|
|
1198
|
+
* apply type-specific extraction rules in phases 1–2.
|
|
1199
|
+
*
|
|
1200
|
+
* The kind captures the **family** of meeting (how it should be
|
|
1201
|
+
* extracted), independent of the concrete project-specific `id`. For
|
|
1202
|
+
* example a repo may declare `founders-weekly` and `sprint-planning`
|
|
1203
|
+
* as two distinct `id`s that both map to `kind: 'planning'`.
|
|
1204
|
+
*
|
|
1205
|
+
* - `planning` — sprint or project planning. Focus on tasks, goals,
|
|
1206
|
+
* and assignments. Produces direct sprint-plan edits and task
|
|
1207
|
+
* issues.
|
|
1208
|
+
* - `review` — sprint review, retrospective, or decision review.
|
|
1209
|
+
* Captures retro learnings, status updates, and follow-ups.
|
|
1210
|
+
* - `brainstorm` — open-ended ideation. Lower bar for Open Questions
|
|
1211
|
+
* and Future Features; higher bar for requirement/ADR creation
|
|
1212
|
+
* (only Firm items).
|
|
1213
|
+
* - `standup` — short status meeting. Action items, blockers, sprint
|
|
1214
|
+
* status. Phase 3 (Draft) is almost always skipped.
|
|
1215
|
+
* - `external` — customer, prospect, partner, or conference debrief.
|
|
1216
|
+
* Emphasizes people/company profiles, customer pain points (as BR
|
|
1217
|
+
* candidates, not FR), and competitive intel.
|
|
1218
|
+
* - `other` — general meeting with no type-specific handling; the
|
|
1219
|
+
* default workflow applies.
|
|
1220
|
+
*/
|
|
1221
|
+
type MeetingTypeKind = "planning" | "review" | "brainstorm" | "standup" | "external" | "other";
|
|
1195
1222
|
/**
|
|
1196
1223
|
* A single meeting-type taxonomy entry declared by the consuming repo.
|
|
1197
1224
|
* Each entry names a kind of meeting the project recognizes
|
|
@@ -1223,6 +1250,18 @@ interface MeetingType {
|
|
|
1223
1250
|
* or one-off) or external (customer / prospect / partner / other).
|
|
1224
1251
|
*/
|
|
1225
1252
|
readonly scope: MeetingScope;
|
|
1253
|
+
/**
|
|
1254
|
+
* Generic meeting kind this type maps to. Drives which type-specific
|
|
1255
|
+
* extraction rules (Meeting Type Handling table) the `meeting-analysis`
|
|
1256
|
+
* bundle applies in phases 1–2. Optional — when omitted, the bundle
|
|
1257
|
+
* falls back to `other` (no type-specific rules).
|
|
1258
|
+
*
|
|
1259
|
+
* Multiple concrete `id`s can share the same `kind` (e.g., both
|
|
1260
|
+
* `founders-weekly` and `sprint-planning` may map to `planning`).
|
|
1261
|
+
*
|
|
1262
|
+
* @example 'planning', 'standup', 'external'
|
|
1263
|
+
*/
|
|
1264
|
+
readonly kind?: MeetingTypeKind;
|
|
1226
1265
|
/**
|
|
1227
1266
|
* Default scheduled duration in minutes. Optional; agents may use
|
|
1228
1267
|
* this when proposing calendar holds or when validating a
|
|
@@ -1246,14 +1285,17 @@ interface MeetingType {
|
|
|
1246
1285
|
}
|
|
1247
1286
|
/**
|
|
1248
1287
|
* A single meeting-area entry. Meeting areas provide a coarse
|
|
1249
|
-
* routing map from an `
|
|
1250
|
-
* the sub-tree of the docs root where phase-4
|
|
1251
|
-
* land.
|
|
1288
|
+
* routing map from entries in an `areas:` frontmatter list on a
|
|
1289
|
+
* meeting note to the sub-tree of the docs root where phase-4
|
|
1290
|
+
* direct edits should land. A single meeting may declare multiple
|
|
1291
|
+
* areas; every matching entry's `docRoot` is in-scope for direct
|
|
1292
|
+
* edits on that meeting (see the `meeting-analyst` agent's
|
|
1293
|
+
* **Areas filtering** section for the full gating contract).
|
|
1252
1294
|
*
|
|
1253
1295
|
* Example: declaring `{ id: 'product-engineering', label: 'Product &
|
|
1254
1296
|
* Engineering', docRoot: 'product' }` tells the `meeting-analysis`
|
|
1255
1297
|
* bundle that a meeting whose frontmatter carries
|
|
1256
|
-
* `
|
|
1298
|
+
* `areas: [product-engineering]` should have its direct edits routed
|
|
1257
1299
|
* under `<docsRoot>/product/`.
|
|
1258
1300
|
*
|
|
1259
1301
|
* When `AgentConfigOptions.meetings.meetingAreas` is non-empty, the
|
|
@@ -1266,8 +1308,8 @@ interface MeetingType {
|
|
|
1266
1308
|
*/
|
|
1267
1309
|
interface MeetingArea {
|
|
1268
1310
|
/**
|
|
1269
|
-
* Stable machine identifier for the area. Matches the
|
|
1270
|
-
* frontmatter
|
|
1311
|
+
* Stable machine identifier for the area. Matches one of the
|
|
1312
|
+
* entries in the `areas:` frontmatter list on meeting notes.
|
|
1271
1313
|
* @example 'product-engineering', 'go-to-market', 'operations'
|
|
1272
1314
|
*/
|
|
1273
1315
|
readonly id: string;
|
|
@@ -1288,7 +1330,8 @@ interface MeetingArea {
|
|
|
1288
1330
|
* templating a meeting. Every field is optional.
|
|
1289
1331
|
*
|
|
1290
1332
|
* - `meetingTypes` — the set of meeting types the repo recognizes.
|
|
1291
|
-
* - `meetingAreas` — maps `
|
|
1333
|
+
* - `meetingAreas` — maps entries in the `areas:` frontmatter list
|
|
1334
|
+
* to doc-root sub-trees.
|
|
1292
1335
|
* - `agendaTemplateRoot` — where pre-meeting agenda skeletons live.
|
|
1293
1336
|
*
|
|
1294
1337
|
* When supplied, the `meeting-analysis` bundle conditionally renders
|
|
@@ -1996,9 +2039,9 @@ declare function renderFocusSection(focus: FocusConfig | undefined): string;
|
|
|
1996
2039
|
* Two subsections are rendered, each gated on its own input array:
|
|
1997
2040
|
*
|
|
1998
2041
|
* 1. **Recognized meeting types** — rendered when `meetingTypes` is
|
|
1999
|
-
* non-empty. Lists every declared type with its scope,
|
|
2000
|
-
* cadence, default duration, and agenda template path.
|
|
2001
|
-
* documents the resolved `agendaTemplateRoot`.
|
|
2042
|
+
* non-empty. Lists every declared type with its scope, kind,
|
|
2043
|
+
* optional cadence, default duration, and agenda template path.
|
|
2044
|
+
* Also documents the resolved `agendaTemplateRoot`.
|
|
2002
2045
|
* 2. **Area → doc-root mapping** — rendered when `meetingAreas` is
|
|
2003
2046
|
* non-empty. Lists every declared area with its `id`, label, and
|
|
2004
2047
|
* docs-root-relative destination folder.
|
|
@@ -4745,4 +4788,4 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
4745
4788
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
4746
4789
|
|
|
4747
4790
|
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AgentConfig, AstroConfig, AstroOutput, AstroProject, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILT_IN_BUNDLES, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, DEFAULT_AGENT_PATHS, DEFAULT_PRIORITY_LABELS, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TYPE_LABELS, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, PROD_DEPLOY_NAME, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ResetTask, STARLIGHT_ROLE, StarlightProject, TestRunner, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, awsCdkBundle, baseBundle, bcmWriterBundle, companyProfileBundle, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, pnpmBundle, prReviewBundle, projenBundle, renderCustomDocSectionBlock, renderCustomDocSections, renderFocusSection, renderMeetingTypesSection, renderPriorityRulesSection, renderSourceTierExamples, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveModelAlias, resolveOutdirFromPackageName, resolveTemplateVariables, resolveTypeScriptProjectOutdir, slackBundle, softwareProfileBundle, turborepoBundle, typescriptBundle, validateMonorepoLayout, validateStarlightSingleton, vitestBundle };
|
|
4748
|
-
export type { AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, LabelDefinition, LayoutEnforcement, LayoutViolation, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PriorityRule, ProjectMetadataOptions, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedProjectMetadata, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, VersionKey, VitestConfigOptions, VitestOptions };
|
|
4791
|
+
export type { AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, LabelDefinition, LayoutEnforcement, LayoutViolation, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PriorityRule, ProjectMetadataOptions, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedProjectMetadata, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, VersionKey, VitestConfigOptions, VitestOptions };
|
package/lib/index.js
CHANGED
|
@@ -5285,6 +5285,86 @@ var meetingAnalystSubAgent = {
|
|
|
5285
5285
|
"5. **Bi-directional traceability.** Every document and issue created by",
|
|
5286
5286
|
" this pipeline must link back to the meeting source, and the meeting",
|
|
5287
5287
|
" source documents must link forward to everything created from them.",
|
|
5288
|
+
"6. **Respect meeting type and areas.** Read the `meeting_type` and",
|
|
5289
|
+
" `areas` values from the meeting frontmatter before starting Phase 1.",
|
|
5290
|
+
" Apply the type-specific rules from the **Meeting type handling**",
|
|
5291
|
+
" table (phases 1\u20132) and the area-filtered routing rules from the",
|
|
5292
|
+
" **Areas filtering** table (phase 4).",
|
|
5293
|
+
"",
|
|
5294
|
+
"---",
|
|
5295
|
+
"",
|
|
5296
|
+
"## Meeting type handling",
|
|
5297
|
+
"",
|
|
5298
|
+
"Meeting frontmatter is expected to carry a `meeting_type` field whose",
|
|
5299
|
+
"value is one of the project's concrete meeting-type `id`s (declared",
|
|
5300
|
+
"via `AgentConfigOptions.meetings.meetingTypes`). Each concrete `id`",
|
|
5301
|
+
"maps to one of six generic **meeting kinds** that drive type-specific",
|
|
5302
|
+
"extraction rules:",
|
|
5303
|
+
"",
|
|
5304
|
+
"| Kind | Primary outputs | Phase-1/2 rules |",
|
|
5305
|
+
"|------|-----------------|-----------------|",
|
|
5306
|
+
"| `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. |",
|
|
5307
|
+
"| `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. |",
|
|
5308
|
+
"| `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. |",
|
|
5309
|
+
"| `standup` | Action items, blockers, status updates | Do not produce requirement, ADR, or BDR drafts. Phase 3 (Draft) is almost always skipped. Focus on action-item issues and sprint-plan status updates. |",
|
|
5310
|
+
"| `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. |",
|
|
5311
|
+
"| `other` | General meeting extraction | Apply the default workflow with no type-specific overrides. |",
|
|
5312
|
+
"",
|
|
5313
|
+
"**How to resolve the kind:**",
|
|
5314
|
+
"",
|
|
5315
|
+
"1. Read `meeting_type` from the frontmatter.",
|
|
5316
|
+
"2. Look up the matching `id` in the project's **Recognized meeting",
|
|
5317
|
+
" types** table (rendered below when `meetingTypes` is declared).",
|
|
5318
|
+
"3. Use the `Kind` column value. If the table is absent, the `id` is",
|
|
5319
|
+
" unknown, or the `Kind` column is `\u2014`, fall back to `other`.",
|
|
5320
|
+
"4. Apply the rules in the row above **in addition to** the normal",
|
|
5321
|
+
" phase workflow \u2014 never as a replacement.",
|
|
5322
|
+
"",
|
|
5323
|
+
"If `meeting_type` is missing, invalid, or the declared `id` is not in",
|
|
5324
|
+
"the project's table, note it in the extraction's Open Questions and",
|
|
5325
|
+
"proceed with the default workflow (treat as `other`).",
|
|
5326
|
+
"",
|
|
5327
|
+
"## Areas filtering",
|
|
5328
|
+
"",
|
|
5329
|
+
"Meeting frontmatter may carry an `areas: [...]` list whose values",
|
|
5330
|
+
"match `id`s from the project's **Area \u2192 doc-root mapping** table",
|
|
5331
|
+
"(declared via `AgentConfigOptions.meetings.meetingAreas`). The list",
|
|
5332
|
+
"scopes phase-4 direct edits and cross-references to the doc-root",
|
|
5333
|
+
"sub-folders registered for those areas. A given area's effective",
|
|
5334
|
+
"path resolves as `<docsRoot>/<docRoot>` \u2014 `docsRoot` comes from",
|
|
5335
|
+
"`AgentPathsConfig.docsRoot`; `docRoot` is the sub-folder shown in",
|
|
5336
|
+
"the **Area \u2192 doc-root mapping** table.",
|
|
5337
|
+
"",
|
|
5338
|
+
"**Gating contract (phase 4 only):**",
|
|
5339
|
+
"",
|
|
5340
|
+
"- **Scoped in:** direct edits and cross-reference stubs under the",
|
|
5341
|
+
" `docRoot` of every `id` present in the meeting's `areas` list.",
|
|
5342
|
+
"- **Scoped out:** direct edits to any doc-root sub-folder that is",
|
|
5343
|
+
" declared in the project's area map but whose `id` is **not** in",
|
|
5344
|
+
" the meeting's `areas`. For those out-of-scope areas, create",
|
|
5345
|
+
" follow-up issues instead of editing the doc directly.",
|
|
5346
|
+
"- **Not gated:** issue creation (requirements, ADRs, profiles,",
|
|
5347
|
+
" research) is always in scope regardless of areas.",
|
|
5348
|
+
"",
|
|
5349
|
+
"**Resolution rules:**",
|
|
5350
|
+
"",
|
|
5351
|
+
"1. If the meeting's `areas` frontmatter is missing or empty **and**",
|
|
5352
|
+
" the project has declared a non-empty `meetingAreas` map, no",
|
|
5353
|
+
" doc-root sub-folder is gated in: direct edits to any declared",
|
|
5354
|
+
" `docRoot` sub-folder are out-of-scope and become follow-up issues",
|
|
5355
|
+
" per step 6. Only the default meetings root (`meetingsRoot`)",
|
|
5356
|
+
" remains editable.",
|
|
5357
|
+
"2. If `areas` lists an `id` that is not in the project's area map,",
|
|
5358
|
+
" note it in the extraction's Open Questions and treat the unknown",
|
|
5359
|
+
" `id` as absent. Do **not** invent a doc-root path for it.",
|
|
5360
|
+
"3. Out-of-scope direct edits become `type:docs` follow-up issues on",
|
|
5361
|
+
" phase 4 step 6, with the area noted in the issue body.",
|
|
5362
|
+
"",
|
|
5363
|
+
"When the project has **not** declared any `meetingAreas` at all,",
|
|
5364
|
+
"this section applies degenerately \u2014 no areas are gated, no",
|
|
5365
|
+
"follow-up issues are synthesized for missing areas, and phase-4",
|
|
5366
|
+
"direct edits follow the default workflow (step 6 edits any doc",
|
|
5367
|
+
"flagged as Firm, unrestricted by `docRoot`).",
|
|
5288
5368
|
"",
|
|
5289
5369
|
"---",
|
|
5290
5370
|
"",
|
|
@@ -5342,7 +5422,13 @@ var meetingAnalystSubAgent = {
|
|
|
5342
5422
|
"",
|
|
5343
5423
|
"### Steps",
|
|
5344
5424
|
"",
|
|
5345
|
-
"1. Read the transcript file specified in the issue body.",
|
|
5425
|
+
"1. Read the transcript file specified in the issue body. Parse the",
|
|
5426
|
+
" meeting-note frontmatter first, capturing `meeting_type` and",
|
|
5427
|
+
" `areas`. Resolve `meeting_type` to a kind using the **Meeting type",
|
|
5428
|
+
" handling** table; note the resolved kind in the extraction",
|
|
5429
|
+
" frontmatter. If `meeting_type` is missing or not in the project's",
|
|
5430
|
+
" Recognized meeting types table, treat it as `other` and flag it",
|
|
5431
|
+
" in Open Questions.",
|
|
5346
5432
|
"2. Identify and categorize content into these buckets:",
|
|
5347
5433
|
"",
|
|
5348
5434
|
" | Bucket | What to look for |",
|
|
@@ -5368,14 +5454,32 @@ var meetingAnalystSubAgent = {
|
|
|
5368
5454
|
" - Companies of Interest (with type and context)",
|
|
5369
5455
|
" - Strategic / Product Direction",
|
|
5370
5456
|
"",
|
|
5371
|
-
"
|
|
5457
|
+
" Carry `meeting_type`, the resolved `meeting_kind`, and `areas`",
|
|
5458
|
+
" into the extraction frontmatter so downstream phases can gate",
|
|
5459
|
+
" behaviour without re-parsing the meeting note.",
|
|
5460
|
+
"",
|
|
5461
|
+
"4. **Apply type-specific rules.** Consult the **Meeting type handling**",
|
|
5462
|
+
" table for the resolved kind and apply its phase-1 rules in",
|
|
5463
|
+
" addition to the default extraction above. Examples:",
|
|
5464
|
+
" - `standup`: skip requirement, ADR, and BDR extraction; focus on",
|
|
5465
|
+
" action items and status.",
|
|
5466
|
+
" - `brainstorm`: emphasize Open Questions and Future Features.",
|
|
5467
|
+
" Only mark decisions as Firm when the transcript is unambiguous.",
|
|
5468
|
+
" - `external`: default attendees outside the team into People of",
|
|
5469
|
+
" Interest; default organizations mentioned into Companies of",
|
|
5470
|
+
" Interest (signal threshold still applies); capture customer",
|
|
5471
|
+
" pain points as candidate BR (not FR).",
|
|
5472
|
+
"",
|
|
5473
|
+
"5. **Create downstream phase issues** using `gh issue create`:",
|
|
5372
5474
|
" - Always create a `meeting:notes` issue (blocked on this extract issue)",
|
|
5373
5475
|
" - If requirements OR decisions/ADRs identified, create a `meeting:draft` issue",
|
|
5374
|
-
" (blocked on the notes issue)",
|
|
5476
|
+
" (blocked on the notes issue). For kind `standup`, skip the",
|
|
5477
|
+
" `meeting:draft` issue \u2014 standup meetings almost never produce",
|
|
5478
|
+
" formal drafts.",
|
|
5375
5479
|
" - Always create a `meeting:link` issue \u2014 blocked on the draft issue if one",
|
|
5376
5480
|
" was created, otherwise blocked on the notes issue",
|
|
5377
5481
|
"",
|
|
5378
|
-
"
|
|
5482
|
+
"6. Commit, push, and close the extract issue.",
|
|
5379
5483
|
"",
|
|
5380
5484
|
"---",
|
|
5381
5485
|
"",
|
|
@@ -5432,18 +5536,38 @@ var meetingAnalystSubAgent = {
|
|
|
5432
5536
|
"### Steps",
|
|
5433
5537
|
"",
|
|
5434
5538
|
"1. Read the drafts from Phase 3 (if they exist) and the extraction from Phase 1.",
|
|
5539
|
+
" Re-read the extraction frontmatter for `meeting_kind` and `areas`,",
|
|
5540
|
+
" then build the area-gate: the set of `docRoot` sub-folders that",
|
|
5541
|
+
" are in scope for direct edits on this meeting. Apply the rules in",
|
|
5542
|
+
" the **Areas filtering** section above.",
|
|
5435
5543
|
"2. Create requirement issues using `gh issue create` with appropriate labels.",
|
|
5436
5544
|
" Include a `## Traceability` section in each issue body linking back to",
|
|
5437
|
-
" the source meeting and extraction file.",
|
|
5545
|
+
" the source meeting and extraction file. Issue creation is **not**",
|
|
5546
|
+
" gated by areas.",
|
|
5438
5547
|
"3. Create ADR issues if technology decisions need formal records.",
|
|
5439
|
-
" Include a `## Traceability` section in each.",
|
|
5548
|
+
" Include a `## Traceability` section in each. Not gated by areas.",
|
|
5440
5549
|
"4. Create action item issues for tasks that are not document-related.",
|
|
5441
|
-
" Include a `## Traceability` section in each.",
|
|
5442
|
-
"5. Cross-reference the meeting in any existing documents that were
|
|
5443
|
-
"
|
|
5444
|
-
"
|
|
5550
|
+
" Include a `## Traceability` section in each. Not gated by areas.",
|
|
5551
|
+
"5. Cross-reference the meeting in any existing documents that were",
|
|
5552
|
+
" discussed **and that live under an in-scope `docRoot`**. For",
|
|
5553
|
+
" discussed documents under an out-of-scope `docRoot`, open a",
|
|
5554
|
+
" follow-up `type:docs` issue instead of editing the doc directly.",
|
|
5555
|
+
"6. Apply direct product/strategy doc updates for items flagged as",
|
|
5556
|
+
" **Firm** confidence. When the project declares `meetingAreas`,",
|
|
5557
|
+
" gate these edits: only apply them when the target path lies",
|
|
5558
|
+
" under an in-scope `docRoot`, and for Firm items targeting an",
|
|
5559
|
+
" out-of-scope `docRoot` open a follow-up `type:docs` issue",
|
|
5560
|
+
" noting the area and the target path. When the project has not",
|
|
5561
|
+
" declared any `meetingAreas`, apply Firm updates unrestricted",
|
|
5562
|
+
" (the degenerate case above). For the kind `planning`, also",
|
|
5563
|
+
" update the active sprint-plan doc directly (when the",
|
|
5564
|
+
" sprint-plan doc's area is in-scope, or always when no",
|
|
5565
|
+
" `meetingAreas` are declared); for the kind `review`, mark",
|
|
5566
|
+
" completed tasks in that same doc.",
|
|
5445
5567
|
"7. **Update the extraction file** with a `## Downstream Artifacts` section",
|
|
5446
|
-
" listing every issue and document created from this meeting.",
|
|
5568
|
+
" listing every issue and document created from this meeting. Note",
|
|
5569
|
+
" any items that were deferred to follow-up issues because of the",
|
|
5570
|
+
" area gate.",
|
|
5447
5571
|
"8. **Update the meeting notes** with a `## Related Issues` section listing",
|
|
5448
5572
|
" all issues created from this meeting.",
|
|
5449
5573
|
"9. Comment on the parent extract issue with a summary linking to all",
|
|
@@ -5527,7 +5651,17 @@ var meetingAnalysisBundle = {
|
|
|
5527
5651
|
"Use `/process-meeting <path>` to process a meeting transcript through a",
|
|
5528
5652
|
"4-phase pipeline (extract \u2192 notes \u2192 draft \u2192 link). Each phase runs as a",
|
|
5529
5653
|
"separate agent session tracked by a GitHub issue with a `meeting:*` label.",
|
|
5530
|
-
"See the `meeting-analyst` agent definition for full workflow details."
|
|
5654
|
+
"See the `meeting-analyst` agent definition for full workflow details.",
|
|
5655
|
+
"",
|
|
5656
|
+
"Meeting notes may declare a `meeting_type` (one of the project's",
|
|
5657
|
+
"recognized types) and an `areas: [...]` list. The `meeting_type`",
|
|
5658
|
+
"resolves to a generic kind \u2014 `planning` / `review` / `brainstorm` /",
|
|
5659
|
+
"`standup` / `external` / `other` \u2014 that drives type-specific",
|
|
5660
|
+
"extraction rules in phases 1\u20132. The `areas` list scopes phase-4",
|
|
5661
|
+
"direct edits to the doc-root sub-folders declared in the project's",
|
|
5662
|
+
"**Area \u2192 doc-root mapping** table. When both fields are absent",
|
|
5663
|
+
"the pipeline falls back to the default workflow (kind `other`,",
|
|
5664
|
+
"no area gating)."
|
|
5531
5665
|
].join("\n"),
|
|
5532
5666
|
platforms: {
|
|
5533
5667
|
cursor: { exclude: true }
|
|
@@ -16358,18 +16492,24 @@ function renderMeetingTypes(types, agendaTemplateRoot) {
|
|
|
16358
16492
|
"This project declares a meeting-type taxonomy through",
|
|
16359
16493
|
"`AgentConfigOptions.meetings.meetingTypes`. When classifying a",
|
|
16360
16494
|
"meeting transcript, pick the `id` from this list that best fits the",
|
|
16361
|
-
"meeting; do **not** invent new type identifiers.
|
|
16362
|
-
`
|
|
16363
|
-
"",
|
|
16364
|
-
"
|
|
16365
|
-
"
|
|
16495
|
+
"meeting; do **not** invent new type identifiers. The `Kind` column",
|
|
16496
|
+
"maps each concrete `id` onto the generic meeting-kind taxonomy",
|
|
16497
|
+
"(`planning` / `review` / `brainstorm` / `standup` / `external` /",
|
|
16498
|
+
"`other`) documented in the **Meeting type handling** section \u2014",
|
|
16499
|
+
"apply the type-specific rules listed there based on this kind.",
|
|
16500
|
+
"Agenda-template paths below are resolved relative to",
|
|
16501
|
+
`\`${resolvedRoot}\`.`,
|
|
16502
|
+
"",
|
|
16503
|
+
"| ID | Label | Kind | Scope | Cadence | Default duration | Agenda template |",
|
|
16504
|
+
"|----|-------|------|-------|---------|------------------|-----------------|"
|
|
16366
16505
|
];
|
|
16367
16506
|
for (const type of types) {
|
|
16507
|
+
const kind = type.kind ? `\`${type.kind}\`` : "\u2014";
|
|
16368
16508
|
const cadence = type.cadence ? `\`${type.cadence}\`` : "\u2014";
|
|
16369
16509
|
const duration = type.defaultDurationMinutes !== void 0 ? `${type.defaultDurationMinutes} min` : "\u2014";
|
|
16370
16510
|
const template = type.agendaTemplatePath ? `\`${type.agendaTemplatePath}\`` : "\u2014";
|
|
16371
16511
|
lines.push(
|
|
16372
|
-
`| \`${type.id}\` | ${type.label} | \`${type.scope}\` | ${cadence} | ${duration} | ${template} |`
|
|
16512
|
+
`| \`${type.id}\` | ${type.label} | ${kind} | \`${type.scope}\` | ${cadence} | ${duration} | ${template} |`
|
|
16373
16513
|
);
|
|
16374
16514
|
}
|
|
16375
16515
|
return lines.join("\n");
|
|
@@ -16380,10 +16520,12 @@ function renderMeetingAreas(areas) {
|
|
|
16380
16520
|
"",
|
|
16381
16521
|
"This project declares a meeting-area routing map through",
|
|
16382
16522
|
"`AgentConfigOptions.meetings.meetingAreas`. When a meeting note's",
|
|
16383
|
-
"frontmatter carries an `
|
|
16384
|
-
"
|
|
16385
|
-
"
|
|
16386
|
-
"
|
|
16523
|
+
"frontmatter carries an `areas:` list, route phase-4 direct edits",
|
|
16524
|
+
"into the corresponding sub-trees of the docs root",
|
|
16525
|
+
"(`AgentPathsConfig.docsRoot`). See the **Areas filtering** section",
|
|
16526
|
+
"of the `meeting-analyst` agent for the full gating contract.",
|
|
16527
|
+
"Meetings whose `areas` list is empty or does not match any",
|
|
16528
|
+
"declared entry fall back to the default meetings root.",
|
|
16387
16529
|
"",
|
|
16388
16530
|
"| Area ID | Label | Doc-root sub-folder |",
|
|
16389
16531
|
"|---------|-------|---------------------|"
|