ocwatch 0.1.1 → 0.2.0

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 +8 -4
  2. package/package.json +5 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # OCWatch
2
2
 
3
- Real-time web dashboard for monitoring [OpenCode](https://github.com/opencode-ai/opencode) / Claude Code agent activity.
3
+ Real-time web dashboard for monitoring [OpenCode](https://github.com/anomalyco/opencode) agent activity built for use with [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode).
4
4
 
5
5
  ## Install
6
6
 
@@ -29,8 +29,8 @@ Opens a dashboard at `http://localhost:50234` showing live agent sessions, tool
29
29
  ## What it monitors
30
30
 
31
31
  - **Sessions** — active and recent agent sessions
32
- - **Agent hierarchy** — parent/child agent tree
33
- - **Tool calls** — live tool invocations with metadata
32
+ - **Agent hierarchy** — parent/child agent tree (background agents, specialized agents)
33
+ - **Tool calls** — live tool invocations with metadata (LSP, AST, MCPs)
34
34
  - **Plan progress** — task completion from `.sisyphus/boulder.json`
35
35
  - **Activity stream** — real-time feed of agent actions
36
36
 
@@ -38,7 +38,11 @@ Opens a dashboard at `http://localhost:50234` showing live agent sessions, tool
38
38
 
39
39
  - [Bun](https://bun.sh) v1.0+
40
40
  - macOS
41
- - OpenCode or Claude Code running (reads from `~/.local/share/opencode/storage/`)
41
+ - [OpenCode](https://github.com/anomalyco/opencode) running (reads from `~/.local/share/opencode/storage/`)
42
+
43
+ ## Disclaimer
44
+
45
+ This project is not built by the OpenCode team and is not affiliated with or endorsed by [OpenCode](https://opencode.ai) or [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode).
42
46
 
43
47
  ## License
44
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ocwatch",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "Real-time web dashboard for monitoring OpenCode agent activity",
5
5
  "type": "module",
6
6
  "main": "src/server/index.ts",
@@ -38,10 +38,12 @@
38
38
  },
39
39
  "keywords": [
40
40
  "opencode",
41
- "claude-code",
41
+ "oh-my-opencode",
42
42
  "monitor",
43
43
  "dashboard",
44
- "agent",
44
+ "ai-coding-agent",
45
+ "developer-tools",
46
+ "realtime",
45
47
  "bun"
46
48
  ],
47
49
  "author": "Postmodum37",