@codedrifters/configulator 0.0.218 → 0.0.219
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 +4 -2
- package/lib/index.d.ts +4 -2
- package/lib/index.js +167 -27
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +167 -27
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -1216,8 +1216,10 @@ declare const slackBundle: AgentRuleBundle;
|
|
|
1216
1216
|
*
|
|
1217
1217
|
* Consuming projects can disable it with
|
|
1218
1218
|
* `excludeBundles: ["software-profile"]`. `appliesWhen` always returns
|
|
1219
|
-
* `true` per
|
|
1220
|
-
* present
|
|
1219
|
+
* `true` per the operating-system directive that bundles assume peers
|
|
1220
|
+
* are present — in Phase 4 this bundle hands work off to
|
|
1221
|
+
* `company-profile` (via `company:research`) and `people-profile` (via
|
|
1222
|
+
* `people:research`).
|
|
1221
1223
|
*
|
|
1222
1224
|
* Ships a sub-agent (`software-profile-analyst`), a user-invocable skill
|
|
1223
1225
|
* (`/profile-software`), and `type:software-profile` plus `software:*`
|
package/lib/index.d.ts
CHANGED
|
@@ -1265,8 +1265,10 @@ declare const slackBundle: AgentRuleBundle;
|
|
|
1265
1265
|
*
|
|
1266
1266
|
* Consuming projects can disable it with
|
|
1267
1267
|
* `excludeBundles: ["software-profile"]`. `appliesWhen` always returns
|
|
1268
|
-
* `true` per
|
|
1269
|
-
* present
|
|
1268
|
+
* `true` per the operating-system directive that bundles assume peers
|
|
1269
|
+
* are present — in Phase 4 this bundle hands work off to
|
|
1270
|
+
* `company-profile` (via `company:research`) and `people-profile` (via
|
|
1271
|
+
* `people:research`).
|
|
1270
1272
|
*
|
|
1271
1273
|
* Ships a sub-agent (`software-profile-analyst`), a user-invocable skill
|
|
1272
1274
|
* (`/profile-software`), and `type:software-profile` plus `software:*`
|
package/lib/index.js
CHANGED
|
@@ -9735,7 +9735,7 @@ var slackBundle = {
|
|
|
9735
9735
|
// src/agent/bundles/software-profile.ts
|
|
9736
9736
|
var softwareProfileAnalystSubAgent = {
|
|
9737
9737
|
name: "software-profile-analyst",
|
|
9738
|
-
description: "Researches a software product (competitor, adjacent, incumbent, enabler, infrastructure, or ecosystem-tool) from public sources, produces a structured markdown profile, and contributes rows to a shared feature matrix ranked against configurable segment-importance weights. One product per session, tracked by software:* GitHub issue labels.",
|
|
9738
|
+
description: "Researches a software product (competitor, adjacent, incumbent, enabler, infrastructure, or ecosystem-tool) from public sources, produces a structured markdown profile, and contributes rows to a shared feature matrix ranked against configurable segment-importance weights, then enqueues downstream `company:research` and `people:research` issues for the vendor company and primary-attribution founders/leaders surfaced during profiling. One product per session, tracked by software:* GitHub issue labels.",
|
|
9739
9739
|
model: AGENT_MODEL.POWERFUL,
|
|
9740
9740
|
maxTurns: 80,
|
|
9741
9741
|
platforms: { cursor: { exclude: true } },
|
|
@@ -9781,7 +9781,12 @@ var softwareProfileAnalystSubAgent = {
|
|
|
9781
9781
|
" profile must carry a source citation (URL plus access date).",
|
|
9782
9782
|
"6. **Follow-up, don't widen scope.** If the session turns up adjacent",
|
|
9783
9783
|
" products worth evaluating, emit a follow-up issue rather than",
|
|
9784
|
-
" expanding the profile beyond its scope.",
|
|
9784
|
+
" expanding the profile beyond its scope. The vendor company and",
|
|
9785
|
+
" primary-attribution founders/product leaders are handed off to",
|
|
9786
|
+
" the `company-profile` bundle via `company:research` issues and",
|
|
9787
|
+
" the `people-profile` bundle via `people:research` issues; adjacent",
|
|
9788
|
+
" products stay inside this pipeline via `software:research`",
|
|
9789
|
+
" issues.",
|
|
9785
9790
|
"7. **Segment weights live in project context.** Segment-importance",
|
|
9786
9791
|
" weights belong in `docs/project-context.md` (or an override",
|
|
9787
9792
|
" passed in the issue body). This agent reads them; it never",
|
|
@@ -9897,6 +9902,8 @@ var softwareProfileAnalystSubAgent = {
|
|
|
9897
9902
|
"| `<NOTES_DIR>` | Research-notes files from Phase 1 | `<SOFTWARE_ROOT>/notes/` |",
|
|
9898
9903
|
"| `<MATRIX_FILE>` | Shared feature-matrix file | `<SOFTWARE_ROOT>/feature-matrix.md` |",
|
|
9899
9904
|
"| `<PRODUCT_SLUG>` | Short kebab-case slug identifying the product | derived from the product name |",
|
|
9905
|
+
"| `<COMPANY_PROFILES_DIR>` | Where existing company profiles live (for duplicate detection during followup) | `docs/companies/profiles/` |",
|
|
9906
|
+
"| `<PEOPLE_PROFILES_DIR>` | Where existing people profiles live (for duplicate detection during followup) | `docs/people/profiles/` |",
|
|
9900
9907
|
"",
|
|
9901
9908
|
"If `docs/project-context.md` specifies a different software-research",
|
|
9902
9909
|
"tree (for example by reusing the research-pipeline deliverables",
|
|
@@ -10060,6 +10067,14 @@ var softwareProfileAnalystSubAgent = {
|
|
|
10060
10067
|
" follow-up phase should escalate>",
|
|
10061
10068
|
"",
|
|
10062
10069
|
" ## Follow-up Candidates",
|
|
10070
|
+
" - **Vendor company:** <company name and primary domain \u2014 always",
|
|
10071
|
+
" one entry; this is the company that builds or maintains the",
|
|
10072
|
+
" product>",
|
|
10073
|
+
" - **Primary-attribution people:** <list of founders, CEOs, or",
|
|
10074
|
+
" principal creators with clear primary attribution to the",
|
|
10075
|
+
" product \u2014 full name + role + employing company. Leave blank if",
|
|
10076
|
+
" no person has primary attribution per the restraint guidance",
|
|
10077
|
+
" in Phase 4.>",
|
|
10063
10078
|
" - **Adjacent products to evaluate:** <list of candidate product",
|
|
10064
10079
|
" names>",
|
|
10065
10080
|
"",
|
|
@@ -10156,11 +10171,17 @@ var softwareProfileAnalystSubAgent = {
|
|
|
10156
10171
|
"",
|
|
10157
10172
|
"## Phase 4: Followup (`software:followup`)",
|
|
10158
10173
|
"",
|
|
10159
|
-
"**Goal:** Create downstream research issues for the adjacent products",
|
|
10160
|
-
"surfaced in the
|
|
10174
|
+
"**Goal:** Create downstream research issues for the adjacent products,",
|
|
10175
|
+
"vendor company, and primary-attribution people surfaced in the",
|
|
10176
|
+
"profile. Adjacent products stay inside this pipeline; the vendor",
|
|
10177
|
+
"company is handed off to the `company-profile` bundle, and founders /",
|
|
10178
|
+
"product leaders / principal creators are handed off to the",
|
|
10179
|
+
"`people-profile` bundle.",
|
|
10161
10180
|
"",
|
|
10162
10181
|
"**Budget:** No new research. Read the profile, enqueue issues, close",
|
|
10163
|
-
"the phase.",
|
|
10182
|
+
"the phase. Markdown cross-references in the profile are preserved \u2014",
|
|
10183
|
+
"issue creation is **additive** on top of the existing cross-reference",
|
|
10184
|
+
"behavior.",
|
|
10164
10185
|
"",
|
|
10165
10186
|
"### Steps",
|
|
10166
10187
|
"",
|
|
@@ -10172,10 +10193,92 @@ var softwareProfileAnalystSubAgent = {
|
|
|
10172
10193
|
" `software:research` phase with `type:software-profile`,",
|
|
10173
10194
|
" `priority:medium`, and `status:ready`.",
|
|
10174
10195
|
"",
|
|
10175
|
-
"3. **
|
|
10176
|
-
"
|
|
10196
|
+
"3. **Enqueue a `company:research` issue for the vendor company** if",
|
|
10197
|
+
" no matching profile already exists under `<COMPANY_PROFILES_DIR>/`.",
|
|
10198
|
+
" The vendor (the company that builds or maintains the product)",
|
|
10199
|
+
" **always qualifies** for a downstream company profile \u2014 there is",
|
|
10200
|
+
" no restraint filter here, only the duplicate check. The issue",
|
|
10201
|
+
" must carry:",
|
|
10177
10202
|
"",
|
|
10178
|
-
"
|
|
10203
|
+
" - `type:company-profile`",
|
|
10204
|
+
" - `company:research`",
|
|
10205
|
+
" - `priority:medium`",
|
|
10206
|
+
" - `status:ready`",
|
|
10207
|
+
"",
|
|
10208
|
+
" The issue body must include:",
|
|
10209
|
+
" - A **discovery source** line naming this software profile",
|
|
10210
|
+
" (`Discovered while profiling: <product name>`)",
|
|
10211
|
+
" - A link to the software profile path (`Software profile: <PROFILES_DIR>/<PRODUCT_SLUG>.md`)",
|
|
10212
|
+
" - Enough identifying metadata \u2014 vendor company name and primary",
|
|
10213
|
+
" domain/website \u2014 that the `company-profile-analyst` agent can",
|
|
10214
|
+
" begin research without revisiting this software profile",
|
|
10215
|
+
"",
|
|
10216
|
+
"4. **Enqueue a `people:research` issue per primary-attribution",
|
|
10217
|
+
" person** surfaced in the profile. Only enqueue people who have",
|
|
10218
|
+
" **primary attribution** for the product (see restraint guidance",
|
|
10219
|
+
" below) and whose name does not already match a profile under",
|
|
10220
|
+
" `<PEOPLE_PROFILES_DIR>/`. The issue must carry:",
|
|
10221
|
+
"",
|
|
10222
|
+
" - `type:people-profile`",
|
|
10223
|
+
" - `people:research`",
|
|
10224
|
+
" - `priority:medium`",
|
|
10225
|
+
" - `status:ready`",
|
|
10226
|
+
"",
|
|
10227
|
+
" The issue body must include:",
|
|
10228
|
+
" - A **discovery source** line naming this software profile",
|
|
10229
|
+
" (`Discovered while profiling: <product name>`)",
|
|
10230
|
+
" - A link to the software profile path (`Software profile: <PROFILES_DIR>/<PRODUCT_SLUG>.md`)",
|
|
10231
|
+
" - Enough identifying metadata \u2014 full name, role/title, and the",
|
|
10232
|
+
" employing company (usually the vendor) \u2014 that the",
|
|
10233
|
+
" `people-profile-analyst` agent can begin research without",
|
|
10234
|
+
" revisiting this software profile",
|
|
10235
|
+
"",
|
|
10236
|
+
"5. **Avoid duplicates.** Before opening a `company:research` or",
|
|
10237
|
+
" `people:research` issue, verify no existing profile or open",
|
|
10238
|
+
" research issue already covers the candidate:",
|
|
10239
|
+
"",
|
|
10240
|
+
" - Vendor: check `<COMPANY_PROFILES_DIR>/` for a matching profile",
|
|
10241
|
+
" file (by derived slug or by searching the directory for the",
|
|
10242
|
+
" company's name). If a profile exists, reuse it as a cross-",
|
|
10243
|
+
" reference only \u2014 **do not** open a new `company:research` issue.",
|
|
10244
|
+
" - People: check `<PEOPLE_PROFILES_DIR>/` the same way. If a profile",
|
|
10245
|
+
" exists, reuse it as a cross-reference only \u2014 **do not** open a",
|
|
10246
|
+
" new `people:research` issue.",
|
|
10247
|
+
" - Also scan open issues carrying the matching `company:research`",
|
|
10248
|
+
" or `people:research` label so this phase never re-opens research",
|
|
10249
|
+
" that is already queued.",
|
|
10250
|
+
"",
|
|
10251
|
+
"6. **Exercise restraint \u2014 people only.** The vendor company always",
|
|
10252
|
+
" qualifies (duplicate check aside). For people, only enqueue",
|
|
10253
|
+
" downstream research when the person has **primary attribution**",
|
|
10254
|
+
" for the product:",
|
|
10255
|
+
"",
|
|
10256
|
+
" - Founders, co-founders, and the current CEO of the vendor",
|
|
10257
|
+
" - Principal creators, lead maintainers, or the original author",
|
|
10258
|
+
" of the product (for open-source or single-creator software)",
|
|
10259
|
+
" - The head of product or the lead PM when the profile clearly",
|
|
10260
|
+
" identifies them as driving the product's direction",
|
|
10261
|
+
"",
|
|
10262
|
+
" Do **not** open a `people:research` issue for every name on the",
|
|
10263
|
+
" vendor's about page, every engineer quoted in a blog post, every",
|
|
10264
|
+
" investor, or every advisor. When in doubt, leave the candidate",
|
|
10265
|
+
" as a markdown cross-reference in the profile and skip the",
|
|
10266
|
+
" downstream issue.",
|
|
10267
|
+
"",
|
|
10268
|
+
"7. **Assume the peers are present.** This pipeline assumes the",
|
|
10269
|
+
" `company-profile` and `people-profile` bundles are enabled in the",
|
|
10270
|
+
" consuming project. If a consuming project has disabled one of",
|
|
10271
|
+
" them, flag the followup issue with `status:needs-attention` and",
|
|
10272
|
+
" list the candidates that could not be routed \u2014 never invent an",
|
|
10273
|
+
" alternative label taxonomy.",
|
|
10274
|
+
"",
|
|
10275
|
+
"8. **Cross-link** \u2014 update the profile's `## Follow-up Candidates`",
|
|
10276
|
+
" section so each entry (adjacent product, vendor, or person)",
|
|
10277
|
+
" references either the linked profile path (for existing profiles)",
|
|
10278
|
+
" or the newly-created downstream issue number (for candidates that",
|
|
10279
|
+
" were enqueued for research).",
|
|
10280
|
+
"",
|
|
10281
|
+
"9. **Commit and push** (if the profile was updated). Close the",
|
|
10179
10282
|
" followup issue.",
|
|
10180
10283
|
"",
|
|
10181
10284
|
"---",
|
|
@@ -10189,12 +10292,24 @@ var softwareProfileAnalystSubAgent = {
|
|
|
10189
10292
|
" phases)",
|
|
10190
10293
|
"- `<MATRIX_FILE>` \u2014 shared feature matrix (Phase 3)",
|
|
10191
10294
|
"",
|
|
10192
|
-
"
|
|
10193
|
-
"
|
|
10194
|
-
"
|
|
10195
|
-
"
|
|
10196
|
-
"
|
|
10197
|
-
"the
|
|
10295
|
+
"In Phase 4, this agent also **creates `company:research` and",
|
|
10296
|
+
"`people:research` issues** for the vendor company and primary-",
|
|
10297
|
+
"attribution people surfaced in the profile that are not already",
|
|
10298
|
+
"tracked under `<COMPANY_PROFILES_DIR>/` or `<PEOPLE_PROFILES_DIR>/`.",
|
|
10299
|
+
"It never writes the downstream profiles themselves \u2014 those are the",
|
|
10300
|
+
"responsibility of the `company-profile-analyst` and",
|
|
10301
|
+
"`people-profile-analyst` agents, which pick up the issues this",
|
|
10302
|
+
"pipeline creates.",
|
|
10303
|
+
"",
|
|
10304
|
+
"The pipeline produces **software profiles, notes, and matrix rows",
|
|
10305
|
+
"only**. Deeper research on adjacent products is delegated to new",
|
|
10306
|
+
"cycles of this same pipeline via `software:research` issues. Deeper",
|
|
10307
|
+
"research on the vendor company and primary-attribution people is",
|
|
10308
|
+
"delegated to the `company-profile` and `people-profile` bundles via",
|
|
10309
|
+
"`company:research` and `people:research` issues. This agent never",
|
|
10310
|
+
"writes company profiles, person profiles, formal requirement",
|
|
10311
|
+
"documents, or comparative long-form analyses itself. Keep this",
|
|
10312
|
+
"boundary clean so the software-profile pipeline stays generic.",
|
|
10198
10313
|
"",
|
|
10199
10314
|
"---",
|
|
10200
10315
|
"",
|
|
@@ -10209,15 +10324,31 @@ var softwareProfileAnalystSubAgent = {
|
|
|
10209
10324
|
" `docs/project-context.md` or an explicit issue-body override. If",
|
|
10210
10325
|
" neither is available, fall back to the single-segment default and",
|
|
10211
10326
|
" flag the gap \u2014 never guess.",
|
|
10212
|
-
"- **
|
|
10213
|
-
"
|
|
10214
|
-
"
|
|
10215
|
-
"
|
|
10327
|
+
"- **Delegate, don't duplicate.** The vendor company and primary-",
|
|
10328
|
+
" attribution people surfaced during profiling are handed off to the",
|
|
10329
|
+
" `company-profile` and `people-profile` bundles via",
|
|
10330
|
+
" `company:research` and `people:research` issues in Phase 4 \u2014 never",
|
|
10331
|
+
" inlined as company or person profiles in this pipeline.",
|
|
10332
|
+
"- **Check before enqueueing.** Before opening a `company:research`",
|
|
10333
|
+
" or `people:research` issue, verify no existing profile or open",
|
|
10334
|
+
" research issue already covers the candidate. Reuse existing",
|
|
10335
|
+
" profiles as cross-references rather than re-queuing research.",
|
|
10336
|
+
"- **Restrain the queue \u2014 people only.** The vendor company always",
|
|
10337
|
+
" qualifies (duplicate check aside). For people, only enqueue",
|
|
10338
|
+
" research for those with **primary attribution** \u2014 founders, the",
|
|
10339
|
+
" current CEO, principal creators, lead maintainers, or the head of",
|
|
10340
|
+
" product. Do not open issues for every name on the vendor's about",
|
|
10341
|
+
" page, every investor, or every advisor.",
|
|
10342
|
+
"- **Produce profiles and matrix rows, not requirement or evaluation",
|
|
10343
|
+
" documents.** Do not open `type:requirement` or formal evaluation",
|
|
10344
|
+
" issues from this pipeline. Follow-up research is scoped through",
|
|
10345
|
+
" `software:research`, `company:research`, and `people:research`",
|
|
10346
|
+
" only."
|
|
10216
10347
|
].join("\n")
|
|
10217
10348
|
};
|
|
10218
10349
|
var profileSoftwareSkill = {
|
|
10219
10350
|
name: "profile-software",
|
|
10220
|
-
description: "Kick off a software-profile pipeline. Creates a software:research issue for the given product and dispatches Phase 1 (Research) in the software-profile-analyst agent.",
|
|
10351
|
+
description: "Kick off a software-profile pipeline. Creates a software:research issue for the given product and dispatches Phase 1 (Research) in the software-profile-analyst agent. Phase 4 (Followup) enqueues downstream `company:research` and `people:research` issues for the vendor company and primary-attribution founders/leaders surfaced in the profile.",
|
|
10221
10352
|
disableModelInvocation: true,
|
|
10222
10353
|
userInvocable: true,
|
|
10223
10354
|
context: "fork",
|
|
@@ -10273,16 +10404,21 @@ var profileSoftwareSkill = {
|
|
|
10273
10404
|
"- A single software profile under the profiles directory",
|
|
10274
10405
|
"- One or more rows appended to the shared feature-matrix file,",
|
|
10275
10406
|
" scored against the configured segment weights",
|
|
10276
|
-
"- Optional follow-up research issues for adjacent
|
|
10277
|
-
" surfaced in the profile",
|
|
10278
|
-
"-
|
|
10279
|
-
"
|
|
10280
|
-
"
|
|
10407
|
+
"- Optional follow-up `software:research` issues for adjacent",
|
|
10408
|
+
" products surfaced in the profile",
|
|
10409
|
+
"- `company:research` issue for the vendor company (handed off to",
|
|
10410
|
+
" the `company-profile` bundle)",
|
|
10411
|
+
"- `people:research` issues for primary-attribution founders, CEOs,",
|
|
10412
|
+
" or principal creators (handed off to the `people-profile`",
|
|
10413
|
+
" bundle)",
|
|
10414
|
+
"- This pipeline produces **software profiles, notes, and matrix",
|
|
10415
|
+
" rows only** \u2014 it does not write company profiles, person",
|
|
10416
|
+
" profiles, or formal requirement documents itself."
|
|
10281
10417
|
].join("\n")
|
|
10282
10418
|
};
|
|
10283
10419
|
var softwareProfileBundle = {
|
|
10284
10420
|
name: "software-profile",
|
|
10285
|
-
description: "Software research, profiling, and feature-matrix pipeline: research, profile, matrix, followup. Enabled by default; domain-neutral; filesystem-durable between phases; ranks features against configurable segment-importance weights.",
|
|
10421
|
+
description: "Software research, profiling, and feature-matrix pipeline: research, profile, matrix, followup. Enabled by default; domain-neutral; filesystem-durable between phases; ranks features against configurable segment-importance weights. Phase 4 (Followup) hands the vendor company and primary-attribution founders/leaders off to the `company-profile` and `people-profile` bundles via `company:research` and `people:research` issues.",
|
|
10286
10422
|
appliesWhen: () => true,
|
|
10287
10423
|
rules: [
|
|
10288
10424
|
{
|
|
@@ -10305,7 +10441,11 @@ var softwareProfileBundle = {
|
|
|
10305
10441
|
"`docs/project-context.md` under a `## Segment Weights` section.",
|
|
10306
10442
|
"Deeper research on adjacent products surfaced in a profile is",
|
|
10307
10443
|
"delegated to new cycles of this same pipeline via",
|
|
10308
|
-
"`software:followup` issues.",
|
|
10444
|
+
"`software:followup` issues. Deeper research on the vendor",
|
|
10445
|
+
"company and primary-attribution founders/product leaders is",
|
|
10446
|
+
"delegated to the `company-profile` and `people-profile`",
|
|
10447
|
+
"bundles via `company:research` and `people:research` issues",
|
|
10448
|
+
"opened during Phase 4 (Followup).",
|
|
10309
10449
|
"",
|
|
10310
10450
|
"See the `software-profile-analyst` agent definition for full",
|
|
10311
10451
|
"workflow details, default paths, the software-type taxonomy,",
|
|
@@ -10344,7 +10484,7 @@ var softwareProfileBundle = {
|
|
|
10344
10484
|
{
|
|
10345
10485
|
name: "software:followup",
|
|
10346
10486
|
color: "FBCA04",
|
|
10347
|
-
description: "Phase 4: enqueue follow-up research issues for adjacent products surfaced in the profile"
|
|
10487
|
+
description: "Phase 4: enqueue follow-up research issues for adjacent products, the vendor company, and primary-attribution people surfaced in the profile"
|
|
10348
10488
|
}
|
|
10349
10489
|
]
|
|
10350
10490
|
};
|