@codewithdan/zingit 0.17.5 → 0.17.7

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/AGENTS.md CHANGED
@@ -82,7 +82,8 @@ zingit/
82
82
  │ │ ├── base.ts # Abstract base agent class
83
83
  │ │ ├── claude.ts # Claude Code CLI integration
84
84
  │ │ ├── copilot.ts # GitHub Copilot SDK integration
85
- │ │ └── codex.ts # OpenAI Codex integration
85
+ │ │ ├── codex.ts # OpenAI Codex integration
86
+ │ │ └── opencode.ts # OpenCode integration
86
87
  │ ├── handlers/
87
88
  │ │ └── messageHandlers.ts # WebSocket message handlers
88
89
  │ ├── types.ts # Server-side TypeScript interfaces
@@ -106,6 +107,7 @@ zingit/
106
107
  - **@anthropic-ai/claude-agent-sdk** - Claude Code integration
107
108
  - **@github/copilot-sdk** - GitHub Copilot integration
108
109
  - **@openai/codex-sdk** - OpenAI Codex integration
110
+ - **@codewithdan/agent-sdk-core** - Unified agent provider (Copilot, Claude, Codex, OpenCode)
109
111
 
110
112
  ## Key Concepts
111
113
 
@@ -132,7 +134,7 @@ The history component tracks all changes made by the AI agent:
132
134
 
133
135
  ### Agent System
134
136
  The server uses a pluggable agent architecture:
135
- - Set `AGENT=claude`, `AGENT=copilot`, or `AGENT=codex` environment variable
137
+ - Set `AGENT=claude`, `AGENT=copilot`, `AGENT=codex`, or `AGENT=opencode` environment variable
136
138
  - Agents implement `Agent` interface with `createSession()` and `formatPrompt()`
137
139
  - Claude agent spawns `claude --print` CLI process
138
140
  - Copilot agent uses the GitHub Copilot SDK
@@ -163,7 +165,8 @@ npm run typecheck -w client # Type check without emitting
163
165
  ```bash
164
166
  npx cross-env AGENT=claude npm run dev -w server # Start with Claude Code agent
165
167
  npx cross-env AGENT=copilot npm run dev -w server # Start with GitHub Copilot agent
166
- npx cross-env AGENT=codex npm run dev -w server # Start with OpenAI Codex agent
168
+ npx cross-env AGENT=codex npm run dev -w server # Start with OpenAI Codex agent
169
+ npx cross-env AGENT=opencode npm run dev -w server # Start with OpenCode agent
167
170
  npm run typecheck -w server # Type check
168
171
  ```
169
172
 
@@ -298,9 +301,16 @@ Users activate ZingIt by adding `?zingit` to any URL: `http://localhost:5200/?zi
298
301
 
299
302
  ## GitHub Actions Workflow
300
303
 
301
- Automated release and deployment on commits starting with "release:":
302
- 1. Runs `npm run release` - versions, builds, and publishes to npm
303
- 2. Runs `npm run deploy` - deploys demo site to GitHub Pages
304
+ Automated release and deployment triggered by pushing a version tag (`v*`):
305
+
306
+ **Local release steps:**
307
+ 1. Run `npm run release` — bumps version, updates CHANGELOG.md, commits, and creates a `v*` tag
308
+ 2. Run `git push --follow-tags origin main` — pushes the commit and tag
309
+
310
+ **What the GitHub Actions workflow does:**
311
+ 1. Installs dependencies and builds both client and server
312
+ 2. Publishes to npm (`npm publish`)
313
+ 3. Deploys demo site to GitHub Pages
304
314
 
305
315
  **Setup Requirements:**
306
316
  - `NPM_TOKEN` secret in repository settings (for npm publishing)
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [0.17.6](https://github.com/danwahlin/zingit/compare/v0.17.5...v0.17.6) (2026-02-22)
6
+
5
7
  ## 0.17.5 (2026-02-22)
6
8
 
7
9