workflow-agent-cli 2.9.0 → 2.9.1
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/LICENSE +21 -0
- package/dist/{chunk-Y5N3JJTU.js → chunk-YEOQZ7XC.js} +3 -3
- package/dist/cli/index.js +631 -270
- package/dist/cli/index.js.map +1 -1
- package/dist/config/index.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/scripts/postinstall.js +1 -1
- package/dist/validators/index.d.ts +1 -1
- package/package.json +30 -30
- package/dist/{chunk-Y5N3JJTU.js.map → chunk-YEOQZ7XC.js.map} +0 -0
- package/dist/{schema-BUu8Cefw.d.ts → schema-D0zTM83x.d.ts} +4 -4
package/dist/config/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { W as WorkflowConfig } from '../schema-
|
|
2
|
-
export { B as BranchType, C as ConventionalType, S as Scope, a as WorkflowConfigSchema } from '../schema-
|
|
1
|
+
import { W as WorkflowConfig } from '../schema-D0zTM83x.js';
|
|
2
|
+
export { B as BranchType, C as ConventionalType, S as Scope, a as WorkflowConfigSchema } from '../schema-D0zTM83x.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
declare function loadConfig(cwd?: string): Promise<WorkflowConfig | null>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { hasConfig, loadConfig } from './config/index.js';
|
|
2
2
|
export { BrokenReference, DocumentReference, DocumentValidationResult, ValidationResult, applyReferenceFix, discoverCustomScopes, findSimilarFiles, getAllScopes, invalidateCustomScopesCache, scanDocumentReferences, validateBranchName, validateCommitMessage, validateDocumentReferences, validatePRTitle } from './validators/index.js';
|
|
3
|
-
export { B as BranchType, C as ConventionalType, S as Scope, W as WorkflowConfig, a as WorkflowConfigSchema } from './schema-
|
|
3
|
+
export { B as BranchType, C as ConventionalType, S as Scope, W as WorkflowConfig, a as WorkflowConfigSchema } from './schema-D0zTM83x.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
interface CheckDefinition {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "workflow-agent-cli",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.1",
|
|
4
4
|
"description": "A self-evolving workflow management system for AI agent development",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"workflow",
|
|
@@ -41,6 +41,34 @@
|
|
|
41
41
|
"templates",
|
|
42
42
|
"README.md"
|
|
43
43
|
],
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@clack/prompts": "^0.7.0",
|
|
46
|
+
"@hawkinside_out/workflow-improvement-tracker": "^1.1.1",
|
|
47
|
+
"chalk": "^5.3.0",
|
|
48
|
+
"commander": "^11.1.0",
|
|
49
|
+
"cosmiconfig": "^9.0.0",
|
|
50
|
+
"didyoumean2": "^6.0.0",
|
|
51
|
+
"execa": "^8.0.1",
|
|
52
|
+
"fast-glob": "^3.3.2",
|
|
53
|
+
"mustache": "^4.2.0",
|
|
54
|
+
"picocolors": "^1.0.0",
|
|
55
|
+
"zod": "^3.22.4"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/mustache": "^4.2.5",
|
|
59
|
+
"@types/node": "^20.11.5",
|
|
60
|
+
"eslint": "^8.56.0",
|
|
61
|
+
"memfs": "^4.56.2",
|
|
62
|
+
"tsup": "^8.0.1",
|
|
63
|
+
"typescript": "^5.3.3",
|
|
64
|
+
"vitest": "^1.6.1"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=18.0.0"
|
|
68
|
+
},
|
|
69
|
+
"publishConfig": {
|
|
70
|
+
"access": "public"
|
|
71
|
+
},
|
|
44
72
|
"scripts": {
|
|
45
73
|
"build": "tsup",
|
|
46
74
|
"dev": "tsup --watch",
|
|
@@ -51,7 +79,6 @@
|
|
|
51
79
|
"typecheck": "tsc --noEmit",
|
|
52
80
|
"clean": "rm -rf dist",
|
|
53
81
|
"postinstall": "node dist/scripts/postinstall.js || true",
|
|
54
|
-
"prepublishOnly": "pnpm build && pnpm test",
|
|
55
82
|
"workflow": "node dist/cli/index.js",
|
|
56
83
|
"workflow:init": "node dist/cli/index.js init",
|
|
57
84
|
"workflow:validate": "node dist/cli/index.js validate",
|
|
@@ -84,32 +111,5 @@
|
|
|
84
111
|
"solution:stats": "node dist/cli/index.js solution:stats",
|
|
85
112
|
"scope:create": "node dist/cli/index.js scope:create",
|
|
86
113
|
"scope:migrate": "node dist/cli/index.js scope:migrate"
|
|
87
|
-
},
|
|
88
|
-
"dependencies": {
|
|
89
|
-
"@clack/prompts": "^0.7.0",
|
|
90
|
-
"@hawkinside_out/workflow-improvement-tracker": "^1.1.1",
|
|
91
|
-
"chalk": "^5.3.0",
|
|
92
|
-
"commander": "^11.1.0",
|
|
93
|
-
"cosmiconfig": "^9.0.0",
|
|
94
|
-
"didyoumean2": "^6.0.0",
|
|
95
|
-
"execa": "^8.0.1",
|
|
96
|
-
"fast-glob": "^3.3.2",
|
|
97
|
-
"mustache": "^4.2.0",
|
|
98
|
-
"picocolors": "^1.0.0",
|
|
99
|
-
"zod": "^3.22.4"
|
|
100
|
-
},
|
|
101
|
-
"devDependencies": {
|
|
102
|
-
"@types/mustache": "^4.2.5",
|
|
103
|
-
"@types/node": "^20.11.5",
|
|
104
|
-
"eslint": "^8.56.0",
|
|
105
|
-
"tsup": "^8.0.1",
|
|
106
|
-
"typescript": "^5.3.3",
|
|
107
|
-
"vitest": "^1.6.1"
|
|
108
|
-
},
|
|
109
|
-
"engines": {
|
|
110
|
-
"node": ">=18.0.0"
|
|
111
|
-
},
|
|
112
|
-
"publishConfig": {
|
|
113
|
-
"access": "public"
|
|
114
114
|
}
|
|
115
|
-
}
|
|
115
|
+
}
|
|
File without changes
|
|
@@ -189,8 +189,6 @@ declare const WorkflowConfigSchema: z.ZodObject<{
|
|
|
189
189
|
nodeVersions?: string[] | undefined;
|
|
190
190
|
checks?: ("build" | "test" | "lint" | "typecheck" | "format")[] | undefined;
|
|
191
191
|
} | undefined;
|
|
192
|
-
branchTypes?: ("test" | "docs" | "feature" | "bugfix" | "hotfix" | "chore" | "refactor" | "release")[] | undefined;
|
|
193
|
-
conventionalTypes?: ("build" | "test" | "docs" | "ci" | "chore" | "refactor" | "feat" | "fix" | "perf" | "style" | "revert")[] | undefined;
|
|
194
192
|
advisory?: {
|
|
195
193
|
enabled: boolean;
|
|
196
194
|
defaultDepth: "executive" | "quick" | "standard" | "comprehensive";
|
|
@@ -210,6 +208,8 @@ declare const WorkflowConfigSchema: z.ZodObject<{
|
|
|
210
208
|
} | undefined;
|
|
211
209
|
excludePatterns?: string[] | undefined;
|
|
212
210
|
} | undefined;
|
|
211
|
+
branchTypes?: ("test" | "docs" | "feature" | "bugfix" | "hotfix" | "chore" | "refactor" | "release")[] | undefined;
|
|
212
|
+
conventionalTypes?: ("build" | "test" | "docs" | "ci" | "chore" | "refactor" | "feat" | "fix" | "perf" | "style" | "revert")[] | undefined;
|
|
213
213
|
analytics?: {
|
|
214
214
|
enabled: boolean;
|
|
215
215
|
shareAnonymous: boolean;
|
|
@@ -242,8 +242,6 @@ declare const WorkflowConfigSchema: z.ZodObject<{
|
|
|
242
242
|
defaultBranch?: string | undefined;
|
|
243
243
|
checks?: ("build" | "test" | "lint" | "typecheck" | "format")[] | undefined;
|
|
244
244
|
} | undefined;
|
|
245
|
-
branchTypes?: ("test" | "docs" | "feature" | "bugfix" | "hotfix" | "chore" | "refactor" | "release")[] | undefined;
|
|
246
|
-
conventionalTypes?: ("build" | "test" | "docs" | "ci" | "chore" | "refactor" | "feat" | "fix" | "perf" | "style" | "revert")[] | undefined;
|
|
247
245
|
advisory?: {
|
|
248
246
|
enabled?: boolean | undefined;
|
|
249
247
|
defaultDepth?: "executive" | "quick" | "standard" | "comprehensive" | undefined;
|
|
@@ -263,6 +261,8 @@ declare const WorkflowConfigSchema: z.ZodObject<{
|
|
|
263
261
|
excludePatterns?: string[] | undefined;
|
|
264
262
|
includeHealthMetrics?: boolean | undefined;
|
|
265
263
|
} | undefined;
|
|
264
|
+
branchTypes?: ("test" | "docs" | "feature" | "bugfix" | "hotfix" | "chore" | "refactor" | "release")[] | undefined;
|
|
265
|
+
conventionalTypes?: ("build" | "test" | "docs" | "ci" | "chore" | "refactor" | "feat" | "fix" | "perf" | "style" | "revert")[] | undefined;
|
|
266
266
|
enforcement?: "strict" | "advisory" | "learning" | undefined;
|
|
267
267
|
language?: string | undefined;
|
|
268
268
|
analytics?: {
|