@codedrifters/configulator 0.0.260 → 0.0.262
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 +15 -13
- package/lib/index.d.ts +15 -13
- package/lib/index.js +634 -132
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +634 -132
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -1766,12 +1766,13 @@ declare const jestBundle: AgentRuleBundle;
|
|
|
1766
1766
|
* `true` per this batch's directive that bundles assume peers are
|
|
1767
1767
|
* present.
|
|
1768
1768
|
*
|
|
1769
|
-
* Provides a
|
|
1770
|
-
* designed for any project with structured doc
|
|
1771
|
-
* cross-references. Ships a sub-agent,
|
|
1772
|
-
*
|
|
1773
|
-
*
|
|
1774
|
-
* through the sync-labels
|
|
1769
|
+
* Provides a 3-phase documentation-maintenance pipeline
|
|
1770
|
+
* (scan → fix → verify) designed for any project with structured doc
|
|
1771
|
+
* registries and cross-references. Ships a sub-agent, two user-
|
|
1772
|
+
* invocable skills (`/audit-docs`, `/verify-audit`), and `maint:*`
|
|
1773
|
+
* phase labels via the bundle `labels` mechanism so consuming projects
|
|
1774
|
+
* automatically pick up the label taxonomy through the sync-labels
|
|
1775
|
+
* workflow.
|
|
1775
1776
|
*/
|
|
1776
1777
|
declare const maintenanceAuditBundle: AgentRuleBundle;
|
|
1777
1778
|
|
|
@@ -2083,13 +2084,14 @@ declare const slackBundle: AgentRuleBundle;
|
|
|
2083
2084
|
* Consuming projects can disable it with
|
|
2084
2085
|
* `excludeBundles: ["software-profile"]`. `appliesWhen` always returns
|
|
2085
2086
|
* `true` per the operating-system directive that bundles assume peers
|
|
2086
|
-
* are present — in Phase 4 this bundle hands work off to
|
|
2087
|
-
*
|
|
2088
|
-
* `
|
|
2089
|
-
*
|
|
2090
|
-
*
|
|
2091
|
-
* (
|
|
2092
|
-
*
|
|
2087
|
+
* are present — in Phase 4 this bundle hands work off to `bcm-writer`
|
|
2088
|
+
* (via `bcm:outline`) for unmapped features, and in Phase 5 it hands
|
|
2089
|
+
* off to `company-profile` (via `company:research`) and `people-profile`
|
|
2090
|
+
* (via `people:research`).
|
|
2091
|
+
*
|
|
2092
|
+
* Ships a sub-agent (`software-profile-analyst`), two user-invocable
|
|
2093
|
+
* skills (`/profile-software` and `/map-software`), and
|
|
2094
|
+
* `type:software-profile` plus `software:*` phase labels.
|
|
2093
2095
|
*/
|
|
2094
2096
|
declare const softwareProfileBundle: AgentRuleBundle;
|
|
2095
2097
|
|
package/lib/index.d.ts
CHANGED
|
@@ -1815,12 +1815,13 @@ declare const jestBundle: AgentRuleBundle;
|
|
|
1815
1815
|
* `true` per this batch's directive that bundles assume peers are
|
|
1816
1816
|
* present.
|
|
1817
1817
|
*
|
|
1818
|
-
* Provides a
|
|
1819
|
-
* designed for any project with structured doc
|
|
1820
|
-
* cross-references. Ships a sub-agent,
|
|
1821
|
-
*
|
|
1822
|
-
*
|
|
1823
|
-
* through the sync-labels
|
|
1818
|
+
* Provides a 3-phase documentation-maintenance pipeline
|
|
1819
|
+
* (scan → fix → verify) designed for any project with structured doc
|
|
1820
|
+
* registries and cross-references. Ships a sub-agent, two user-
|
|
1821
|
+
* invocable skills (`/audit-docs`, `/verify-audit`), and `maint:*`
|
|
1822
|
+
* phase labels via the bundle `labels` mechanism so consuming projects
|
|
1823
|
+
* automatically pick up the label taxonomy through the sync-labels
|
|
1824
|
+
* workflow.
|
|
1824
1825
|
*/
|
|
1825
1826
|
declare const maintenanceAuditBundle: AgentRuleBundle;
|
|
1826
1827
|
|
|
@@ -2132,13 +2133,14 @@ declare const slackBundle: AgentRuleBundle;
|
|
|
2132
2133
|
* Consuming projects can disable it with
|
|
2133
2134
|
* `excludeBundles: ["software-profile"]`. `appliesWhen` always returns
|
|
2134
2135
|
* `true` per the operating-system directive that bundles assume peers
|
|
2135
|
-
* are present — in Phase 4 this bundle hands work off to
|
|
2136
|
-
*
|
|
2137
|
-
* `
|
|
2138
|
-
*
|
|
2139
|
-
*
|
|
2140
|
-
* (
|
|
2141
|
-
*
|
|
2136
|
+
* are present — in Phase 4 this bundle hands work off to `bcm-writer`
|
|
2137
|
+
* (via `bcm:outline`) for unmapped features, and in Phase 5 it hands
|
|
2138
|
+
* off to `company-profile` (via `company:research`) and `people-profile`
|
|
2139
|
+
* (via `people:research`).
|
|
2140
|
+
*
|
|
2141
|
+
* Ships a sub-agent (`software-profile-analyst`), two user-invocable
|
|
2142
|
+
* skills (`/profile-software` and `/map-software`), and
|
|
2143
|
+
* `type:software-profile` plus `software:*` phase labels.
|
|
2142
2144
|
*/
|
|
2143
2145
|
declare const softwareProfileBundle: AgentRuleBundle;
|
|
2144
2146
|
|