-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "agentic-workflows",
"version": "0.2.0",
"description": "Repo-native operating files, workflow schemas, and validation tools for controlled AI work.",
"private": false,
"license": "CC-BY-4.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ftchvs/agentic-workflows.git"
},
"homepage": "https://github.com/ftchvs/agentic-workflows#readme",
"bugs": {
"url": "https://github.com/ftchvs/agentic-workflows/issues"
},
"keywords": [
"agentic-workflows",
"ai-agents",
"workflow-automation",
"human-in-the-loop",
"prompt-engineering",
"ai-governance",
"bun"
],
"engines": {
"bun": ">=1.2.0"
},
"bin": {
"aw": "./cli/aw.ts"
},
"scripts": {
"aw": "bun cli/aw.ts",
"test": "bun test",
"validate": "bun test && bun cli/aw.ts check && bun cli/aw.ts check-skills && bun cli/aw.ts catalog-check && bun cli/aw.ts eval-check && bun cli/aw.ts publication-scan",
"runbook": "bun cli/aw.ts runbook workflows/repo-triage.workflow.yml",
"audit": "bun cli/aw.ts audit workflows/repo-triage.workflow.yml"
},
"devDependencies": {}
}