-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
181 lines (181 loc) · 11.9 KB
/
Copy pathpackage.json
File metadata and controls
181 lines (181 loc) · 11.9 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "agents-governance",
"version": "0.1.3",
"private": false,
"license": "MPL-2.0",
"description": "Governanca operacional portavel para agentes IA.",
"main": "AGENTS.md",
"files": [
"AGENTS.md",
"INIT-REPO.md",
"README.md",
"LICENSE",
"package.json",
".ia.rules/config/",
".ia.rules/core/",
".ia.rules/meta/",
".ia.rules/scenarios/"
],
"agentsUpstream": {
"schema": 1,
"upstreamRepository": "jcempro/agents.md",
"predecessorRepositories": [
"JeanCarloEM/agents.md"
]
},
"agentsGovernance": {
"schema": 1,
"managedScriptPrefixes": [
"agent:",
"agents:",
"shared:"
],
"managedScripts": [
"update:agents"
],
"installableScripts": [
"build",
"check",
"clean",
"dev-live",
"lint",
"prepare",
"publish",
"release",
"release:publish",
"release:trigger",
"test"
],
"dependencies": [],
"optionalDependencies": [],
"installedScripts": {},
"repositoryProfile": "consumer"
},
"scripts": {
"build": "npm run agent:build",
"clean": "npm run agent:clean",
"check": "npm run agent:verify",
"lint": "npm run agent:lint",
"prepare": "npm run agent:setup",
"release": "npm run shared:lifecycle:release --",
"publish": "npm run shared:lifecycle:publish --",
"update:agents": "npm run shared:update:agents --",
"dev-live": "npm run shared:dev-live --",
"release:trigger": "npm run agent:release:trigger",
"release:publish": "npm run agent:release:publish --",
"test": "npm run agent:test",
"shared:update:agents": "node -e \"const c=require('child_process'),f=require('fs'),p=require('path'),a=process.argv.slice(1).map(v=>['check','dry-run','force','help'].includes(v)?'--'+v:v),m='.ia.rules/core/runtime/scripts/repo-tools.js',b='scripts/.agents/autoupdate.js',l='.agents/core/runtime/scripts/autoupdate.js',s=f.existsSync(m)?[m,'agent:autoupdate',...a]:f.existsSync(b)?[b,...a]:f.existsSync(l)?[l,...a]:null;if(!s)throw new Error('ATUALIZADOR_AGENTS_AUSENTE');const r=c.spawnSync(process.execPath,[p.resolve(s[0]),...s.slice(1)],{stdio:'inherit',windowsHide:true});if(r.error)throw r.error;process.exitCode=Number.isInteger(r.status)?r.status:1\" --",
"shared:lifecycle:release": "node .ia.rules/core/runtime/scripts/to-ia.js --command release --run node .ia.rules/scenarios/release/scripts/release-publish-resume.js",
"shared:lifecycle:publish": "node .ia.rules/core/runtime/scripts/to-ia.js --command publish --run node .ia.rules/core/runtime/scripts/shared-lifecycle.js publish",
"shared:dev-live": "node .ia.rules/core/runtime/scripts/to-ia.js --command dev-live --run node .ia.rules/core/runtime/scripts/shared-lifecycle.js dev-live",
"agents:autoupdate": "npm run update:agents --",
"agents:update": "npm run update:agents --",
"agent:autoupdate": "npm run update:agents --",
"agent:agents": "npm run update:agents --",
"agent:workflows": "node .ia.rules/core/runtime/scripts/workflow-manager.js",
"agent:upstream:check": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:upstream:check",
"agent:upstream:prepare": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:upstream:prepare",
"agent:upstream:publish": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:upstream:publish",
"agent:upstream:assess": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:upstream:assess",
"agent:upstream:apply-assessment": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:upstream:apply-assessment",
"agent:test:upstream": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:test:upstream",
"agent:inbox:event": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:event",
"agent:inbox:fetch": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:fetch",
"agent:inbox:evaluate": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:evaluate",
"agent:inbox:process": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:process",
"agent:inbox:apply": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:apply",
"agent:inbox:approve": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:approve",
"agent:inbox:sync-approved": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:sync-approved",
"agent:inbox:start": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:start",
"agent:inbox:bind-release": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:bind-release",
"agent:inbox:complete-release": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:inbox:complete-release",
"agent:test:inbox": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:test:inbox",
"agent:filter": "node .ia.rules/core/runtime/scripts/to-ia.js --command agent:filter",
"agent:build": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:build",
"agent:clean": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:clean",
"agent:verify": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:verify",
"agent:dist": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:dist",
"agent:index": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:index",
"agent:status": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:status",
"agent:handoff": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:handoff",
"agent:pwd": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:pwd",
"agent:ls": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:ls",
"agent:tree": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:tree",
"agent:find": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:find",
"agent:search": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:search",
"agent:grep": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:grep",
"agent:head": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:head",
"agent:tail": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:tail",
"agent:view": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:view",
"agent:stat": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:stat",
"agent:size": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:size",
"agent:hash": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:hash",
"agent:git-status": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-status",
"agent:git-log": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-log",
"agent:git-diff": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-diff",
"agent:setup": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:setup",
"agent:doctor": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:doctor",
"agent:repair": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:repair",
"agent:context": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:context",
"agent:workspace": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:workspace",
"agent:diff-file": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:diff-file",
"agent:logs": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:logs",
"agent:process": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:process",
"agent:kill": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:kill",
"agent:ports": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:ports",
"agent:compress": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:compress",
"agent:extract": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:extract",
"agent:git-fetch": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-fetch",
"agent:git-pull": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-pull",
"agent:git-push": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-push",
"agent:git-sync": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-sync",
"agent:git-add": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-add",
"agent:git-commit": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-commit",
"agent:git-branch": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-branch",
"agent:git-switch": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-switch",
"agent:git-tag": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-tag",
"agent:git-show": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-show",
"agent:git-history": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-history",
"agent:git-blame": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-blame",
"agent:git-reset": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-reset",
"agent:git-restore": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-restore",
"agent:git-clean": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-clean",
"agent:git-stash": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-stash",
"agent:git-prune": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-prune",
"agent:git-gc": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-gc",
"agent:git-last-release": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-last-release",
"agent:git-release-notes": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-release-notes",
"agent:git-changelog": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:git-changelog",
"agent:package": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:package",
"agent:release": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:release",
"agent:release:trigger": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:release:trigger",
"agent:release:publish": "npm run release --",
"agent:publish": "npm run publish --",
"agent:rollback": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:rollback",
"agent:test": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:test",
"agent:lint": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:lint",
"agent:format": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:format",
"agent:typecheck": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:typecheck",
"agent:benchmark": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:benchmark",
"agent:security": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:security",
"agent:analyze": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:analyze",
"agent:deps": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:deps",
"agent:update-deps": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:update-deps",
"agent:licenses": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:licenses",
"agent:map": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:map",
"agent:docs": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:docs",
"agent:rcf": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:rcf",
"agent:rcf:trace": "node .ia.rules/core/runtime/scripts/rcf-trace.js",
"agent:parse-data": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:parse-data",
"agent:summarize": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:summarize",
"agent:convert": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:convert",
"agent:validate-data": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:validate-data",
"agent:index-data": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:index-data",
"agent:query-data": "node .ia.rules/core/runtime/scripts/repo-tools.js agent:query-data"
},
"devDependencies": {
"@types/node": "26.1.1",
"esbuild": "0.28.1",
"typescript": "7.0.2"
}
}