@a5c-ai/hooks-mux-adapter-gemini 5.0.1-staging.ff2c19f9 → 5.0.1-staging.ff407b73

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.
Files changed (2) hide show
  1. package/README.md +29 -0
  2. package/package.json +10 -5
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # @a5c-ai/hooks-mux-adapter-gemini
2
+
3
+ Gemini CLI harness adapter for hooks-mux.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @a5c-ai/hooks-mux-adapter-gemini @a5c-ai/hooks-mux-core
9
+ ```
10
+
11
+ This package ships the built adapter runtime in `dist/` and this package README for npm publish-surface auditing.
12
+
13
+ ## Usage
14
+
15
+ ```ts
16
+ import {
17
+ createAdapter,
18
+ normalizeGemini,
19
+ renderGeminiOutput,
20
+ } from "@a5c-ai/hooks-mux-adapter-gemini";
21
+ ```
22
+
23
+ The package exposes Gemini-specific normalization, phase mappings, rendering helpers, and session-resolution utilities for the hooks-mux execution pipeline.
24
+
25
+ See [`packages/hooks-mux/README.md`](../README.md) for the workspace overview and `packages/hooks-mux/docs/adapter-integration-guide.md` for end-to-end integration guidance.
26
+
27
+ ## License
28
+
29
+ MIT © a5c-ai
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@a5c-ai/hooks-mux-adapter-gemini",
3
- "version": "5.0.1-staging.ff2c19f9",
3
+ "version": "5.0.1-staging.ff407b73",
4
4
  "description": "Gemini CLI harness adapter for the hooks-mux system",
5
- "license": "UNLICENSED",
5
+ "license": "MIT",
6
6
  "type": "commonjs",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
@@ -11,11 +11,16 @@
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
14
- "url": "https://github.com/a5c-ai/babysitter.git",
14
+ "url": "git+https://github.com/a5c-ai/babysitter.git",
15
15
  "directory": "packages/hooks-mux/adapter-gemini"
16
16
  },
17
+ "homepage": "https://github.com/a5c-ai/babysitter/tree/main/packages/hooks-mux/adapter-gemini#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/a5c-ai/babysitter/issues"
20
+ },
17
21
  "files": [
18
- "dist"
22
+ "dist",
23
+ "README.md"
19
24
  ],
20
25
  "scripts": {
21
26
  "build": "tsc -p tsconfig.json",
@@ -25,7 +30,7 @@
25
30
  "test:watch": "vitest"
26
31
  },
27
32
  "dependencies": {
28
- "@a5c-ai/hooks-mux-core": "5.0.1-staging.ff2c19f9"
33
+ "@a5c-ai/hooks-mux-core": "5.0.1-staging.ff407b73"
29
34
  },
30
35
  "devDependencies": {
31
36
  "typescript": "^5.7.0",