omo-suites 1.9.2 → 1.11.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.
- package/CHANGELOG.md +105 -0
- package/README.md +6 -2
- package/dist/cli/omocs.js +2351 -57
- package/dist/plugin.js +180 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,111 @@ All notable changes to OMO Suites will be documented in this file.
|
|
|
5
5
|
Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.11.0] - 2026-03-25
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- `omocs memory list|add|search|remove` — Workspace Memory Notes
|
|
12
|
+
- Workspace-scoped persistent notes stored in `~/.omocs/memory/`
|
|
13
|
+
- Supports fuzzy search and global notes via `--global`
|
|
14
|
+
- `omocs completion <shell>` — Shell Completions
|
|
15
|
+
- Generates completion scripts for bash, zsh, and fish
|
|
16
|
+
- Includes subcommands and flags
|
|
17
|
+
- Enhanced `omocs doctor`
|
|
18
|
+
- Added checks for Provider endpoint ping, Config file validity, oh-my-opencode installation, Skills directory, and Disk space
|
|
19
|
+
- `omocs index build|show|clean` — Workspace Index
|
|
20
|
+
- Scans workspace to build a cacheable JSON index
|
|
21
|
+
- Detects tech stack, entry points, and key files
|
|
22
|
+
- Respects `.gitignore` and skips noisy directories
|
|
23
|
+
|
|
24
|
+
## [1.10.0] - 2026-03-25
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
- `omocs init-deep [path]` — Auto-generate hierarchical AGENTS.md files per significant folder
|
|
28
|
+
- Scans project structure recursively, infers folder purpose, tech stack, naming conventions
|
|
29
|
+
- Generates root AGENTS.md with project overview + per-folder AGENTS.md for significant dirs
|
|
30
|
+
- Supports `--depth <n>` (default: 3) and `--dry-run` to preview
|
|
31
|
+
- Skips node_modules, .git, dist, build, .next, __pycache__, etc.
|
|
32
|
+
- `omocs plan` — Prometheus-style interview planner for structured planning before coding
|
|
33
|
+
- Interactive mode asks 5 structured questions (goal, files, constraints, no-change, definition of done)
|
|
34
|
+
- Generates structured plan markdown: `.opencode/plans/plan-YYYY-MM-DD-HHmm.md`
|
|
35
|
+
- Supports `--output <path>` and `--non-interactive` for template generation
|
|
36
|
+
- `omocs cost [profile]` — Profile cost calculator with model pricing estimates
|
|
37
|
+
- Shows per-agent cost breakdown (per invocation, per hour, per day)
|
|
38
|
+
- Supports `--compare <profile>` for side-by-side profile cost comparison
|
|
39
|
+
- Supports `--hours <n>` for custom workday projection (default: 8)
|
|
40
|
+
- Includes pricing for Claude Opus 4.6, Sonnet 4.6, GPT-5.3/5.4, Gemini 3.1 Pro, Kimi K2.5, DeepSeek
|
|
41
|
+
- `omocs stats --dashboard` — Agent analytics dashboard with TUI bar charts
|
|
42
|
+
- Bar chart visualization for agent usage, token consumption, response times
|
|
43
|
+
- Aggregated stats stored in `~/.omocs/stats.json`
|
|
44
|
+
- Supports `--last <n>` to limit agents shown and `--sync` to import session data
|
|
45
|
+
- Enhanced existing stats command with daily token usage bar charts
|
|
46
|
+
- `omocs check` — Comment quality checker for AI-generated code patterns
|
|
47
|
+
- Detects: obvious/redundant comments, vague TODOs, AI attribution, unexplained eslint-disable, @ts-ignore, commented-out code
|
|
48
|
+
- Reports findings with file:line references grouped by severity (high/medium/low)
|
|
49
|
+
- Supports `--fix` to auto-remove fixable AI slop comments
|
|
50
|
+
- Supports `--path <dir>` and `--severity <level>` filters
|
|
51
|
+
- Plugin tools: `omocs_init_deep` and `omocs_check` registered as OpenCode plugin tools
|
|
52
|
+
- System prompt injection updated with init-deep and check tool references
|
|
53
|
+
|
|
54
|
+
## [1.9.2] - 2026-03-25
|
|
55
|
+
|
|
56
|
+
### Added
|
|
57
|
+
- `omocs export [filename]` — export all config to single JSON file
|
|
58
|
+
- `omocs import <filename>` — import config with confirmation (supports --force)
|
|
59
|
+
- `omocs diff <profile1> <profile2>` — side-by-side profile comparison with color-coded output
|
|
60
|
+
- `omocs benchmark [prompt]` — compare response time across models (supports --models, --timeout)
|
|
61
|
+
- `omocs mcp status` — MCP server health check with green/red status indicators
|
|
62
|
+
- `omocs init --quick` — quick setup with auto-detection from env vars
|
|
63
|
+
- Missing 67th task category: risk-management → agency-project-shepherd
|
|
64
|
+
|
|
65
|
+
### Fixed
|
|
66
|
+
- LSP glob detection bug — CSS, HTML, JSON, YAML, SQL, Markdown LSPs now detectable
|
|
67
|
+
- Async/sync mismatch in config.ts
|
|
68
|
+
- Stale PLUGIN_VERSION fallback
|
|
69
|
+
- README updated to 28 agents, 67 task categories
|
|
70
|
+
|
|
71
|
+
### Changed
|
|
72
|
+
- API key encryption using AES-256-GCM (keys encrypted before storing in config)
|
|
73
|
+
- Deduplicated `findPackageJson()` into single utility
|
|
74
|
+
- Atomic config writes (write to temp file, rename — prevents corruption)
|
|
75
|
+
- Improved error messages with contextual help suggestions
|
|
76
|
+
- Moved `better-sqlite3` to optionalDependencies
|
|
77
|
+
- CLI startup optimization (skip update check for --help/--version)
|
|
78
|
+
|
|
79
|
+
## [1.9.1] - 2026-03-25
|
|
80
|
+
|
|
81
|
+
### Added
|
|
82
|
+
- 13 new Agency agents (from github.com/msitarzewski/agency-agents): security-engineer, devops-automator, mobile-app-builder, ai-engineer, rapid-prototyper, accessibility-auditor, performance-benchmarker, api-tester, brand-guardian, content-creator, growth-hacker, ux-researcher, project-shepherd
|
|
83
|
+
- Agent system prompt markdown files for all 13 new agents
|
|
84
|
+
- Total agents expanded from 15 → 28, task categories from 32 → 67
|
|
85
|
+
|
|
86
|
+
### Changed
|
|
87
|
+
- Plugin agent list header updated to reflect 28 agents, 67 task categories
|
|
88
|
+
- `omocs_categories` tool description updated to 67 categories
|
|
89
|
+
|
|
90
|
+
## [1.9.0] - 2026-03-07
|
|
91
|
+
|
|
92
|
+
### Added
|
|
93
|
+
- **`omocs status` command** — shows current provider info, API key (masked), default model, and config path
|
|
94
|
+
- 1mr.tech token balance fetching in `omocs status` (tokens remaining, tokens used, key status)
|
|
95
|
+
- **1mr.tech provider support in `omocs init`** (Step 5) — prompt for API key, validate via `GET /v1/usage`, select model
|
|
96
|
+
- Auto-generates `opencode.json` and `oh-my-opencode.json` with 1mr.tech config
|
|
97
|
+
- Graceful fallback when 1mr.tech API is unreachable (skip validation with warning)
|
|
98
|
+
|
|
99
|
+
### Changed
|
|
100
|
+
- **Launchboard rewritten to pull from OpenCode API** — removed SQLite/Drizzle dependency entirely, backend now proxies to OpenCode API (default `localhost:1337`)
|
|
101
|
+
- New Launchboard routes: `/api/sessions`, `/api/board` (aggregated kanban)
|
|
102
|
+
- Launchboard kanban board shows todo status columns: Pending → In Progress → Completed → Cancelled
|
|
103
|
+
- Todo cards show content, priority badge, parent session; sidebar lists sessions with todo counts
|
|
104
|
+
- Auto-refresh every 30 seconds; graceful "No OpenCode detected" screen when API unreachable
|
|
105
|
+
- `OPENCODE_API_URL` env var for Launchboard configuration
|
|
106
|
+
- **Launchboard auto-update system** — git + npm dual-mode auto-update with 5-minute cache, `/api/update` endpoint for status/trigger
|
|
107
|
+
|
|
108
|
+
### Removed
|
|
109
|
+
- Launchboard local database (`db/`, `drizzle.config`, `setup.sh`)
|
|
110
|
+
- Launchboard MCP server, stats/rules pages, drag-and-drop (now read-only board)
|
|
111
|
+
- Launchboard `columns`, `labels`, `tasks`, `workspaces`, `stats`, `rules` routes
|
|
112
|
+
|
|
8
113
|
## [1.8.0] - 2026-03-07
|
|
9
114
|
|
|
10
115
|
### Added
|
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ curl -fsSL https://raw.githubusercontent.com/TheFahmi/omocs/main/install.sh | ba
|
|
|
54
54
|
Specialized AI roles with tuned models, thinking budgets, and automatic task routing across 67 categories.
|
|
55
55
|
|
|
56
56
|
- **12 Plugin Tools** — [→ docs/plugin.md](docs/plugin.md)
|
|
57
|
-
Drop-in OpenCode plugin with system prompt injection — agents use tools automatically.
|
|
57
|
+
Drop-in OpenCode plugin with system prompt injection — agents use tools automatically. Includes `omocs_init_deep` and `omocs_check`.
|
|
58
58
|
|
|
59
59
|
- **11 MCP Servers** — [→ docs/mcp.md](docs/mcp.md)
|
|
60
60
|
One-click install for Postgres, Redis, Brave Search, Docker, Sentry, and more.
|
|
@@ -63,7 +63,7 @@ curl -fsSL https://raw.githubusercontent.com/TheFahmi/omocs/main/install.sh | ba
|
|
|
63
63
|
Auto-detect your project stack and install the right language servers.
|
|
64
64
|
|
|
65
65
|
- **Full CLI** — [→ docs/cli.md](docs/cli.md)
|
|
66
|
-
Profiles, agents, accounts, MCP, LSP, stats — all from the command line.
|
|
66
|
+
Profiles, agents, accounts, MCP, LSP, stats, cost estimation, comment quality checker — all from the command line.
|
|
67
67
|
|
|
68
68
|
## Quick Start
|
|
69
69
|
|
|
@@ -72,6 +72,10 @@ omocs init # Setup wizard
|
|
|
72
72
|
omocs profile use ultra-mixed # Best model for every task
|
|
73
73
|
omocs agent route debugging # See which agent handles what
|
|
74
74
|
omocs doctor # Verify everything works
|
|
75
|
+
omocs init-deep # Generate AGENTS.md hierarchy
|
|
76
|
+
omocs cost opus-4.6-all # Estimate costs per profile
|
|
77
|
+
omocs check # Scan for AI slop comments
|
|
78
|
+
omocs plan # Interactive planning before coding
|
|
75
79
|
```
|
|
76
80
|
|
|
77
81
|
## 🚀 Launchboard
|