@codedrifters/configulator 0.0.215 → 0.0.217
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 -4
- package/lib/index.d.ts +8 -4
- package/lib/index.js +320 -88
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +320 -88
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -1051,8 +1051,10 @@ declare const bcmWriterBundle: AgentRuleBundle;
|
|
|
1051
1051
|
*
|
|
1052
1052
|
* Consuming projects can disable it with
|
|
1053
1053
|
* `excludeBundles: ["company-profile"]`. `appliesWhen` always returns
|
|
1054
|
-
* `true` per
|
|
1055
|
-
* present
|
|
1054
|
+
* `true` per the operating-system directive that bundles assume peers
|
|
1055
|
+
* are present — in Phase 3 this bundle hands work off to
|
|
1056
|
+
* `people-profile` (via `people:research`) and `software-profile` (via
|
|
1057
|
+
* `software:research`).
|
|
1056
1058
|
*
|
|
1057
1059
|
* Ships a sub-agent (`company-profile-analyst`), a user-invocable skill
|
|
1058
1060
|
* (`/profile-company`), and `type:company-profile` plus `company:*`
|
|
@@ -1122,8 +1124,10 @@ declare const orchestratorBundle: AgentRuleBundle;
|
|
|
1122
1124
|
*
|
|
1123
1125
|
* Consuming projects can disable it with
|
|
1124
1126
|
* `excludeBundles: ["people-profile"]`. `appliesWhen` always returns
|
|
1125
|
-
* `true` per
|
|
1126
|
-
* present
|
|
1127
|
+
* `true` per the operating-system directive that bundles assume peers
|
|
1128
|
+
* are present — in Phase 3 this bundle hands work off to
|
|
1129
|
+
* `company-profile` (via `company:research`) and `software-profile`
|
|
1130
|
+
* (via `software:research`).
|
|
1127
1131
|
*
|
|
1128
1132
|
* Ships a sub-agent (`people-profile-analyst`), a user-invocable skill
|
|
1129
1133
|
* (`/profile-person`), and `type:people-profile` plus `people:*` phase
|
package/lib/index.d.ts
CHANGED
|
@@ -1100,8 +1100,10 @@ declare const bcmWriterBundle: AgentRuleBundle;
|
|
|
1100
1100
|
*
|
|
1101
1101
|
* Consuming projects can disable it with
|
|
1102
1102
|
* `excludeBundles: ["company-profile"]`. `appliesWhen` always returns
|
|
1103
|
-
* `true` per
|
|
1104
|
-
* present
|
|
1103
|
+
* `true` per the operating-system directive that bundles assume peers
|
|
1104
|
+
* are present — in Phase 3 this bundle hands work off to
|
|
1105
|
+
* `people-profile` (via `people:research`) and `software-profile` (via
|
|
1106
|
+
* `software:research`).
|
|
1105
1107
|
*
|
|
1106
1108
|
* Ships a sub-agent (`company-profile-analyst`), a user-invocable skill
|
|
1107
1109
|
* (`/profile-company`), and `type:company-profile` plus `company:*`
|
|
@@ -1171,8 +1173,10 @@ declare const orchestratorBundle: AgentRuleBundle;
|
|
|
1171
1173
|
*
|
|
1172
1174
|
* Consuming projects can disable it with
|
|
1173
1175
|
* `excludeBundles: ["people-profile"]`. `appliesWhen` always returns
|
|
1174
|
-
* `true` per
|
|
1175
|
-
* present
|
|
1176
|
+
* `true` per the operating-system directive that bundles assume peers
|
|
1177
|
+
* are present — in Phase 3 this bundle hands work off to
|
|
1178
|
+
* `company-profile` (via `company:research`) and `software-profile`
|
|
1179
|
+
* (via `software:research`).
|
|
1176
1180
|
*
|
|
1177
1181
|
* Ships a sub-agent (`people-profile-analyst`), a user-invocable skill
|
|
1178
1182
|
* (`/profile-person`), and `type:people-profile` plus `people:*` phase
|