@codedrifters/configulator 0.0.259 → 0.0.261
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 +10 -9
- package/lib/index.d.ts +10 -9
- package/lib/index.js +531 -81
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +531 -81
- 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
|
|
|
@@ -1848,9 +1849,9 @@ declare function resolveAgentPaths(paths?: AgentPathsConfig): ResolvedAgentPaths
|
|
|
1848
1849
|
* `company-profile` (via `company:research`) and `software-profile`
|
|
1849
1850
|
* (via `software:research`).
|
|
1850
1851
|
*
|
|
1851
|
-
* Ships a sub-agent (`people-profile-analyst`),
|
|
1852
|
-
* (`/profile-person`), and `type:people-profile`
|
|
1853
|
-
* labels.
|
|
1852
|
+
* Ships a sub-agent (`people-profile-analyst`), two user-invocable
|
|
1853
|
+
* skills (`/profile-person`, `/refresh-person`), and `type:people-profile`
|
|
1854
|
+
* plus `people:*` phase labels for the four phases.
|
|
1854
1855
|
*/
|
|
1855
1856
|
declare const peopleProfileBundle: AgentRuleBundle;
|
|
1856
1857
|
|
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
|
|
|
@@ -1897,9 +1898,9 @@ declare function resolveAgentPaths(paths?: AgentPathsConfig): ResolvedAgentPaths
|
|
|
1897
1898
|
* `company-profile` (via `company:research`) and `software-profile`
|
|
1898
1899
|
* (via `software:research`).
|
|
1899
1900
|
*
|
|
1900
|
-
* Ships a sub-agent (`people-profile-analyst`),
|
|
1901
|
-
* (`/profile-person`), and `type:people-profile`
|
|
1902
|
-
* labels.
|
|
1901
|
+
* Ships a sub-agent (`people-profile-analyst`), two user-invocable
|
|
1902
|
+
* skills (`/profile-person`, `/refresh-person`), and `type:people-profile`
|
|
1903
|
+
* plus `people:*` phase labels for the four phases.
|
|
1903
1904
|
*/
|
|
1904
1905
|
declare const peopleProfileBundle: AgentRuleBundle;
|
|
1905
1906
|
|