@a5c-ai/git-a5c 1.0.13 → 1.1.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/dist/args.d.ts +20 -0
- package/dist/args.d.ts.map +1 -1
- package/dist/args.js +47 -0
- package/dist/args.js.map +1 -1
- package/dist/commands/agent.d.ts.map +1 -1
- package/dist/commands/agent.js +8 -0
- package/dist/commands/agent.js.map +1 -1
- package/dist/commands/agentGenerateContext.d.ts +16 -0
- package/dist/commands/agentGenerateContext.d.ts.map +1 -0
- package/dist/commands/agentGenerateContext.js +965 -0
- package/dist/commands/agentGenerateContext.js.map +1 -0
- package/dist/commands/agentRun.d.ts +3 -0
- package/dist/commands/agentRun.d.ts.map +1 -0
- package/dist/commands/agentRun.js +226 -0
- package/dist/commands/agentRun.js.map +1 -0
- package/dist/commands/help.d.ts.map +1 -1
- package/dist/commands/help.js +12 -0
- package/dist/commands/help.js.map +1 -1
- package/dist/commands/hookExec.d.ts +3 -0
- package/dist/commands/hookExec.d.ts.map +1 -0
- package/dist/commands/hookExec.js +56 -0
- package/dist/commands/hookExec.js.map +1 -0
- package/dist/commands/hooks.d.ts.map +1 -1
- package/dist/commands/hooks.js +3 -1
- package/dist/commands/hooks.js.map +1 -1
- package/dist/commands/o.d.ts +3 -0
- package/dist/commands/o.d.ts.map +1 -0
- package/dist/commands/o.js +256 -0
- package/dist/commands/o.js.map +1 -0
- package/dist/commands/parse.d.ts +31 -0
- package/dist/commands/parse.d.ts.map +1 -0
- package/dist/commands/parse.js +389 -0
- package/dist/commands/parse.js.map +1 -0
- package/dist/commands/runOrchestration.d.ts +3 -0
- package/dist/commands/runOrchestration.d.ts.map +1 -0
- package/dist/commands/runOrchestration.js +282 -0
- package/dist/commands/runOrchestration.js.map +1 -0
- package/dist/orchestration/hookExecCore.d.ts +22 -0
- package/dist/orchestration/hookExecCore.d.ts.map +1 -0
- package/dist/orchestration/hookExecCore.js +380 -0
- package/dist/orchestration/hookExecCore.js.map +1 -0
- package/dist/orchestration/reconcileCore.d.ts +28 -0
- package/dist/orchestration/reconcileCore.d.ts.map +1 -0
- package/dist/orchestration/reconcileCore.js +188 -0
- package/dist/orchestration/reconcileCore.js.map +1 -0
- package/dist/orchestration/runEventWriter.d.ts +11 -0
- package/dist/orchestration/runEventWriter.d.ts.map +1 -0
- package/dist/orchestration/runEventWriter.js +44 -0
- package/dist/orchestration/runEventWriter.js.map +1 -0
- package/dist/orchestration/sweepCore.d.ts +11 -0
- package/dist/orchestration/sweepCore.d.ts.map +1 -0
- package/dist/orchestration/sweepCore.js +96 -0
- package/dist/orchestration/sweepCore.js.map +1 -0
- package/dist/run.d.ts.map +1 -1
- package/dist/run.js +8 -0
- package/dist/run.js.map +1 -1
- package/dist/util/agentFooter.d.ts +34 -0
- package/dist/util/agentFooter.d.ts.map +1 -0
- package/dist/util/agentFooter.js +15 -0
- package/dist/util/agentFooter.js.map +1 -0
- package/dist/util/githubContents.d.ts +15 -0
- package/dist/util/githubContents.d.ts.map +1 -0
- package/dist/util/githubContents.js +77 -0
- package/dist/util/githubContents.js.map +1 -0
- package/dist/util/redact.d.ts +24 -0
- package/dist/util/redact.d.ts.map +1 -0
- package/dist/util/redact.js +109 -0
- package/dist/util/redact.js.map +1 -0
- package/dist/util/uri.d.ts +12 -0
- package/dist/util/uri.d.ts.map +1 -0
- package/dist/util/uri.js +61 -0
- package/dist/util/uri.js.map +1 -0
- package/package.json +10 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/git-a5c",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -9,12 +9,17 @@
|
|
|
9
9
|
"git-a5c": "./dist/bin/git-a5c.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
12
|
+
"ajv": "^8.17.1",
|
|
13
|
+
"ajv-formats": "^3.0.1",
|
|
14
|
+
"minimatch": "^10.0.1",
|
|
15
|
+
"yaml": "^2.6.1",
|
|
16
|
+
"@a5c-ai/sdk": "1.1.1",
|
|
17
|
+
"@a5c-ai/server": "1.1.1",
|
|
18
|
+
"@a5c-ai/ui": "1.1.1"
|
|
15
19
|
},
|
|
16
20
|
"devDependencies": {
|
|
17
21
|
"@vitest/coverage-v8": "^2.1.8",
|
|
22
|
+
"js-yaml": "^4.1.0",
|
|
18
23
|
"typescript": "^5.7.3",
|
|
19
24
|
"vitest": "^2.1.8"
|
|
20
25
|
},
|
|
@@ -23,7 +28,7 @@
|
|
|
23
28
|
},
|
|
24
29
|
"scripts": {
|
|
25
30
|
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.json",
|
|
26
|
-
"test": "vitest run",
|
|
31
|
+
"test": "pnpm -C ../sdk build && pnpm build && vitest run",
|
|
27
32
|
"test:coverage": "vitest run --coverage"
|
|
28
33
|
}
|
|
29
34
|
}
|