@gaia-ai/gaia 0.3.0 → 0.4.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/bin/gaia +1 -1
- package/dist/src/plugins-barrel.d.ts +1 -0
- package/dist/src/plugins-barrel.js +1 -0
- package/package.json +10 -16
- package/dist/src/cli/gaia.d.ts +0 -24
- package/dist/src/cli/gaia.js +0 -620
- package/dist/src/cli/init.d.ts +0 -82
- package/dist/src/cli/init.js +0 -231
- package/dist/src/cli/local-registry.d.ts +0 -14
- package/dist/src/cli/local-registry.js +0 -56
- package/dist/src/config.d.ts +0 -13
- package/dist/src/config.js +0 -186
- package/dist/src/core/conductor-id.d.ts +0 -1
- package/dist/src/core/conductor-id.js +0 -8
- package/dist/src/core/conductor.d.ts +0 -47
- package/dist/src/core/conductor.js +0 -287
- package/dist/src/core/exec.d.ts +0 -33
- package/dist/src/core/exec.js +0 -65
- package/dist/src/core/logger.d.ts +0 -31
- package/dist/src/core/logger.js +0 -36
- package/dist/src/core/slug.d.ts +0 -9
- package/dist/src/core/slug.js +0 -18
- package/dist/src/index.d.ts +0 -16
- package/dist/src/index.js +0 -9
- package/dist/src/plugin-api.d.ts +0 -7
- package/dist/src/plugin-api.js +0 -3
- package/dist/src/plugins/agent/agent.d.ts +0 -20
- package/dist/src/plugins/agent/agent.js +0 -1
- package/dist/src/plugins/auth/basic.d.ts +0 -11
- package/dist/src/plugins/auth/basic.js +0 -35
- package/dist/src/plugins/executor/executor.d.ts +0 -61
- package/dist/src/plugins/executor/executor.js +0 -1
- package/dist/src/plugins/plugins.d.ts +0 -38
- package/dist/src/plugins/plugins.js +0 -16
- package/dist/src/plugins/registry-exports.d.ts +0 -6
- package/dist/src/plugins/registry-exports.js +0 -6
- package/dist/src/plugins/remote/drupal.d.ts +0 -47
- package/dist/src/plugins/remote/drupal.js +0 -337
- package/dist/src/plugins/remote/fake.d.ts +0 -81
- package/dist/src/plugins/remote/fake.js +0 -203
- package/dist/src/plugins/remote/remote.d.ts +0 -143
- package/dist/src/plugins/remote/remote.js +0 -1
- package/dist/src/plugins/workspace/fake.d.ts +0 -9
- package/dist/src/plugins/workspace/fake.js +0 -19
- package/dist/src/plugins/workspace/git.d.ts +0 -53
- package/dist/src/plugins/workspace/git.js +0 -113
- package/dist/src/plugins/workspace/instructions.d.ts +0 -6
- package/dist/src/plugins/workspace/instructions.js +0 -16
- package/dist/src/plugins/workspace/workspace.d.ts +0 -33
- package/dist/src/plugins/workspace/workspace.js +0 -1
- package/dist/src/types.d.ts +0 -51
- package/dist/src/types.js +0 -1
package/bin/gaia
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import('
|
|
2
|
+
import('@gaia-ai/conductor').then((m) => m.main(process.argv));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@gaia-ai/core/plugins';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@gaia-ai/core/plugins';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gaia-ai/gaia",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "GAIA
|
|
3
|
+
"version": "0.4.1",
|
|
4
|
+
"description": "GAIA meta package: installs the conductor CLI + all runtime plugins. Global install target.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"engines": {
|
|
@@ -11,9 +11,7 @@
|
|
|
11
11
|
"gaia": "./bin/gaia"
|
|
12
12
|
},
|
|
13
13
|
"exports": {
|
|
14
|
-
"
|
|
15
|
-
"./plugin": "./dist/src/plugin-api.js",
|
|
16
|
-
"./plugins": "./dist/src/plugins/registry-exports.js",
|
|
14
|
+
"./plugins": "./dist/src/plugins-barrel.js",
|
|
17
15
|
"./package.json": "./package.json"
|
|
18
16
|
},
|
|
19
17
|
"files": [
|
|
@@ -28,7 +26,7 @@
|
|
|
28
26
|
"repository": {
|
|
29
27
|
"type": "git",
|
|
30
28
|
"url": "git+https://git.key-tec.de/keytec/gaia.git",
|
|
31
|
-
"directory": "conductor"
|
|
29
|
+
"directory": "conductor/packages/gaia"
|
|
32
30
|
},
|
|
33
31
|
"keywords": [
|
|
34
32
|
"gaia",
|
|
@@ -39,15 +37,11 @@
|
|
|
39
37
|
"jsonapi"
|
|
40
38
|
],
|
|
41
39
|
"dependencies": {
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
44
|
-
"@gaia-ai/plugin-claude": "^0.
|
|
45
|
-
"@gaia-ai/plugin-codex": "^0.
|
|
46
|
-
"@gaia-ai/plugin-herdr": "^0.
|
|
47
|
-
"@gaia-ai/plugin-herdr-workspace": "^0.
|
|
48
|
-
"commander": "^12.1.0",
|
|
49
|
-
"dropsh": "^0.4.1",
|
|
50
|
-
"pino": "^9.6.0",
|
|
51
|
-
"pino-pretty": "^13.0.0"
|
|
40
|
+
"@gaia-ai/conductor": "^0.4.1",
|
|
41
|
+
"@gaia-ai/core": "^0.4.1",
|
|
42
|
+
"@gaia-ai/plugin-claude": "^0.4.1",
|
|
43
|
+
"@gaia-ai/plugin-codex": "^0.4.1",
|
|
44
|
+
"@gaia-ai/plugin-herdr": "^0.4.1",
|
|
45
|
+
"@gaia-ai/plugin-herdr-workspace": "^0.4.1"
|
|
52
46
|
}
|
|
53
47
|
}
|
package/dist/src/cli/gaia.d.ts
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { type ConductorLogger } from '../core/logger.js';
|
|
2
|
-
import type { GaiaAgent } from '../plugins/agent/agent.js';
|
|
3
|
-
import type { GaiaExecutor } from '../plugins/executor/executor.js';
|
|
4
|
-
import type { GaiaRemote } from '../plugins/remote/remote.js';
|
|
5
|
-
import type { GaiaWorkspace } from '../plugins/workspace/workspace.js';
|
|
6
|
-
import type { ConductorFileConfig } from '../types.js';
|
|
7
|
-
/** Test seam: inject any subset of dependencies. */
|
|
8
|
-
export interface GaiaCliDeps {
|
|
9
|
-
remote?: GaiaRemote;
|
|
10
|
-
executor?: GaiaExecutor;
|
|
11
|
-
workspace?: GaiaWorkspace;
|
|
12
|
-
agent?: GaiaAgent;
|
|
13
|
-
config?: ConductorFileConfig;
|
|
14
|
-
}
|
|
15
|
-
export declare function parseHerdrJson(output: string, command: string): unknown;
|
|
16
|
-
/**
|
|
17
|
-
* Start-time auth gate. Returns true if authenticated (session or session-less
|
|
18
|
-
* provider); otherwise logs a single clear line and returns false. Must run
|
|
19
|
-
* before remote resolution (resolveRemote), which calls resolveAuth and throws
|
|
20
|
-
* when unauthenticated.
|
|
21
|
-
*/
|
|
22
|
-
export declare function ensureAuthenticated(config: ConductorFileConfig, logger: ConductorLogger): Promise<boolean>;
|
|
23
|
-
export declare function runGaiaCli(argv: string[], deps?: GaiaCliDeps): Promise<void>;
|
|
24
|
-
export declare function main(argv: string[]): Promise<void>;
|