ha-opencode 0.2.0 → 0.2.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/README.md +18 -1
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
# OpenCode Home Assistant Plugin
|
|
2
2
|
|
|
3
|
+
[](https://stephengolub.github.io/opencode-homeassistant)
|
|
4
|
+
[](https://github.com/stephengolub/opencode-homeassistant/releases)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
3
7
|
OpenCode plugin that enables real-time integration with Home Assistant via native WebSocket connection.
|
|
4
8
|
|
|
5
9
|
Monitor and control your OpenCode sessions directly from Home Assistant - get notified when tasks complete, approve permissions from your phone, and even send prompts remotely.
|
|
6
10
|
|
|
11
|
+
**[Full Documentation](https://stephengolub.github.io/opencode-homeassistant)** | **[Home Assistant Integration](https://github.com/stephengolub/ha-opencode)**
|
|
12
|
+
|
|
7
13
|
## Features
|
|
8
14
|
|
|
9
15
|
- **Native WebSocket**: Direct connection to Home Assistant - no MQTT broker required
|
|
@@ -188,9 +194,20 @@ This plugin uses Kitty terminal notifications (OSC 99). Supported terminals:
|
|
|
188
194
|
|
|
189
195
|
If your terminal doesn't support OSC 99, notifications will be silent.
|
|
190
196
|
|
|
197
|
+
## Documentation
|
|
198
|
+
|
|
199
|
+
Full documentation is available at **[stephengolub.github.io/opencode-homeassistant](https://stephengolub.github.io/opencode-homeassistant)**
|
|
200
|
+
|
|
201
|
+
- [Installation Guide](https://stephengolub.github.io/opencode-homeassistant/getting-started/installation/)
|
|
202
|
+
- [Configuration](https://stephengolub.github.io/opencode-homeassistant/getting-started/configuration/)
|
|
203
|
+
- [Pairing with Home Assistant](https://stephengolub.github.io/opencode-homeassistant/getting-started/pairing/)
|
|
204
|
+
- [Session Tracking](https://stephengolub.github.io/opencode-homeassistant/features/session-tracking/)
|
|
205
|
+
- [Commands](https://stephengolub.github.io/opencode-homeassistant/features/commands/)
|
|
206
|
+
- [Permissions](https://stephengolub.github.io/opencode-homeassistant/features/permissions/)
|
|
207
|
+
|
|
191
208
|
## Related Projects
|
|
192
209
|
|
|
193
|
-
- **[ha-opencode](https://github.com/stephengolub/ha-opencode)** - Home Assistant integration with Lovelace card and blueprints
|
|
210
|
+
- **[ha-opencode](https://github.com/stephengolub/ha-opencode)** - Home Assistant integration with Lovelace card and blueprints ([docs](https://stephengolub.github.io/ha-opencode))
|
|
194
211
|
- **[OpenCode](https://opencode.ai)** - AI coding assistant
|
|
195
212
|
|
|
196
213
|
## License
|
package/package.json
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ha-opencode",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "OpenCode plugin for Home Assistant integration via native WebSocket API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
|
10
|
-
"blueprints",
|
|
11
10
|
"README.md",
|
|
12
11
|
"LICENSE"
|
|
13
12
|
],
|
|
14
13
|
"repository": {
|
|
15
14
|
"type": "git",
|
|
16
|
-
"url": "git+https://
|
|
15
|
+
"url": "git+https://github.com/stephengolub/opencode-homeassistant.git"
|
|
17
16
|
},
|
|
18
|
-
"homepage": "https://
|
|
17
|
+
"homepage": "https://stephengolub.github.io/opencode-homeassistant",
|
|
19
18
|
"bugs": {
|
|
20
|
-
"url": "https://
|
|
19
|
+
"url": "https://github.com/stephengolub/opencode-homeassistant/issues"
|
|
21
20
|
},
|
|
22
21
|
"scripts": {
|
|
23
22
|
"build": "tsc",
|