@codedrifters/configulator 0.0.261 → 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 +8 -7
- package/lib/index.d.ts +8 -7
- package/lib/index.js +350 -80
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +350 -80
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -2084,13 +2084,14 @@ declare const slackBundle: AgentRuleBundle;
|
|
|
2084
2084
|
* Consuming projects can disable it with
|
|
2085
2085
|
* `excludeBundles: ["software-profile"]`. `appliesWhen` always returns
|
|
2086
2086
|
* `true` per the operating-system directive that bundles assume peers
|
|
2087
|
-
* are present — in Phase 4 this bundle hands work off to
|
|
2088
|
-
*
|
|
2089
|
-
* `
|
|
2090
|
-
*
|
|
2091
|
-
*
|
|
2092
|
-
* (
|
|
2093
|
-
*
|
|
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.
|
|
2094
2095
|
*/
|
|
2095
2096
|
declare const softwareProfileBundle: AgentRuleBundle;
|
|
2096
2097
|
|
package/lib/index.d.ts
CHANGED
|
@@ -2133,13 +2133,14 @@ declare const slackBundle: AgentRuleBundle;
|
|
|
2133
2133
|
* Consuming projects can disable it with
|
|
2134
2134
|
* `excludeBundles: ["software-profile"]`. `appliesWhen` always returns
|
|
2135
2135
|
* `true` per the operating-system directive that bundles assume peers
|
|
2136
|
-
* are present — in Phase 4 this bundle hands work off to
|
|
2137
|
-
*
|
|
2138
|
-
* `
|
|
2139
|
-
*
|
|
2140
|
-
*
|
|
2141
|
-
* (
|
|
2142
|
-
*
|
|
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.
|
|
2143
2144
|
*/
|
|
2144
2145
|
declare const softwareProfileBundle: AgentRuleBundle;
|
|
2145
2146
|
|