@fenglimg/fabric-cli 1.3.0 → 1.4.0
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/README.md +24 -22
- package/dist/{bootstrap-IUL4SAAK.js → bootstrap-B6RCVJZJ.js} +4 -2
- package/dist/{chunk-N4DCTOXW.js → chunk-AZRKMFRY.js} +6 -6
- package/dist/{chunk-VMYPJPKV.js → chunk-BEKSXO5N.js} +161 -21
- package/dist/{chunk-TO5RUB4R.js → chunk-BVTMVW5M.js} +1 -1
- package/dist/{chunk-F2BXHPM5.js → chunk-N7EZORJZ.js} +9 -1
- package/dist/{chunk-6UUPKSDE.js → chunk-Q4LOVXML.js} +13 -8
- package/dist/{chunk-RUQCZA2Q.js → chunk-XQYY2U2C.js} +92 -115
- package/dist/{config-MKWKDE32.js → config-EC5L2QNI.js} +2 -2
- package/dist/index.js +11 -11
- package/dist/{init-BZ73IUHH.js → init-QC2MLFHR.js} +894 -261
- package/dist/{ledger-append-XZ5SX4O5.js → ledger-append-DULKJ6Q2.js} +1 -1
- package/dist/{pre-commit-AK55G73F.js → pre-commit-IK6SJOPT.js} +5 -5
- package/dist/{scan-WKDSKEBB.js → scan-43R3IBLR.js} +2 -2
- package/dist/{sync-meta-THZSEM7Y.js → sync-meta-LKVSO6TS.js} +1 -1
- package/dist/{update-JZPUJ36D.js → update-FY2WKWPB.js} +5 -5
- package/package.json +4 -3
- package/templates/agents-md/AGENTS.md.template +14 -13
- package/templates/agents-md/variants/cocos.md +20 -20
- package/templates/agents-md/variants/next.md +20 -20
- package/templates/agents-md/variants/vite.md +20 -20
- package/templates/bootstrap/CLAUDE.md +3 -5
- package/templates/bootstrap/GEMINI.md +3 -5
- package/templates/bootstrap/codex-AGENTS-header.md +3 -5
- package/templates/bootstrap/cursor-fabric-bootstrap.mdc +11 -11
- package/templates/bootstrap/roo-fabric.md +6 -6
- package/templates/bootstrap/windsurf-fabric.md +6 -6
- package/templates/claude-hooks/agents-md-init-reminder.cjs +18 -18
- package/templates/claude-skills/agents-md-init/SKILL.md +86 -86
- package/templates/codex-hooks/fabric-session-start.cjs +19 -0
- package/templates/codex-hooks/fabric-stop-reminder.cjs +18 -0
- package/templates/codex-skills/fabric-init/SKILL.md +27 -0
- package/templates/fabric/human-lock.json +12 -12
- package/templates/husky/pre-commit +24 -24
- package/dist/{doctor-5KJGOV2P.js → doctor-QTSG2RWF.js} +3 -3
- package/dist/{serve-MMN4GYLM.js → serve-4J2CQY25.js} +4 -4
package/dist/index.js
CHANGED
|
@@ -8,17 +8,17 @@ import { defineCommand, runMain } from "citty";
|
|
|
8
8
|
|
|
9
9
|
// src/commands/index.ts
|
|
10
10
|
var allCommands = {
|
|
11
|
-
init: () => import("./init-
|
|
12
|
-
update: () => import("./update-
|
|
13
|
-
scan: () => import("./scan-
|
|
14
|
-
serve: () => import("./serve-
|
|
15
|
-
doctor: () => import("./doctor-
|
|
16
|
-
"sync-meta": () => import("./sync-meta-
|
|
11
|
+
init: () => import("./init-QC2MLFHR.js").then((module) => module.default),
|
|
12
|
+
update: () => import("./update-FY2WKWPB.js").then((module) => module.default),
|
|
13
|
+
scan: () => import("./scan-43R3IBLR.js").then((module) => module.default),
|
|
14
|
+
serve: () => import("./serve-4J2CQY25.js").then((module) => module.default),
|
|
15
|
+
doctor: () => import("./doctor-QTSG2RWF.js").then((module) => module.default),
|
|
16
|
+
"sync-meta": () => import("./sync-meta-LKVSO6TS.js").then((module) => module.default),
|
|
17
17
|
"human-lint": () => import("./human-lint-YSFOZHZ7.js").then((module) => module.default),
|
|
18
|
-
"ledger-append": () => import("./ledger-append-
|
|
19
|
-
"pre-commit": () => import("./pre-commit-
|
|
20
|
-
bootstrap: () => import("./bootstrap-
|
|
21
|
-
config: () => import("./config-
|
|
18
|
+
"ledger-append": () => import("./ledger-append-DULKJ6Q2.js").then((module) => module.default),
|
|
19
|
+
"pre-commit": () => import("./pre-commit-IK6SJOPT.js").then((module) => module.default),
|
|
20
|
+
bootstrap: () => import("./bootstrap-B6RCVJZJ.js").then((module) => module.default),
|
|
21
|
+
config: () => import("./config-EC5L2QNI.js").then((module) => module.configCmd),
|
|
22
22
|
hooks: () => import("./hooks-ZSWVH2JD.js").then((module) => ({
|
|
23
23
|
...module.default,
|
|
24
24
|
meta: {
|
|
@@ -32,7 +32,7 @@ var allCommands = {
|
|
|
32
32
|
var main = defineCommand({
|
|
33
33
|
meta: {
|
|
34
34
|
name: "fabric",
|
|
35
|
-
version: "1.
|
|
35
|
+
version: "1.4.0",
|
|
36
36
|
description: 'Initialize and manage Fabric projects. Use "fabric init" for one-shot setup.'
|
|
37
37
|
},
|
|
38
38
|
subCommands: allCommands
|