omo-suites 1.9.1 → 1.10.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 CHANGED
@@ -5,6 +5,95 @@ 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.10.0] - 2026-03-25
9
+
10
+ ### Added
11
+ - `omocs init-deep [path]` — Auto-generate hierarchical AGENTS.md files per significant folder
12
+ - Scans project structure recursively, infers folder purpose, tech stack, naming conventions
13
+ - Generates root AGENTS.md with project overview + per-folder AGENTS.md for significant dirs
14
+ - Supports `--depth <n>` (default: 3) and `--dry-run` to preview
15
+ - Skips node_modules, .git, dist, build, .next, __pycache__, etc.
16
+ - `omocs plan` — Prometheus-style interview planner for structured planning before coding
17
+ - Interactive mode asks 5 structured questions (goal, files, constraints, no-change, definition of done)
18
+ - Generates structured plan markdown: `.opencode/plans/plan-YYYY-MM-DD-HHmm.md`
19
+ - Supports `--output <path>` and `--non-interactive` for template generation
20
+ - `omocs cost [profile]` — Profile cost calculator with model pricing estimates
21
+ - Shows per-agent cost breakdown (per invocation, per hour, per day)
22
+ - Supports `--compare <profile>` for side-by-side profile cost comparison
23
+ - Supports `--hours <n>` for custom workday projection (default: 8)
24
+ - Includes pricing for Claude Opus 4.6, Sonnet 4.6, GPT-5.3/5.4, Gemini 3.1 Pro, Kimi K2.5, DeepSeek
25
+ - `omocs stats --dashboard` — Agent analytics dashboard with TUI bar charts
26
+ - Bar chart visualization for agent usage, token consumption, response times
27
+ - Aggregated stats stored in `~/.omocs/stats.json`
28
+ - Supports `--last <n>` to limit agents shown and `--sync` to import session data
29
+ - Enhanced existing stats command with daily token usage bar charts
30
+ - `omocs check` — Comment quality checker for AI-generated code patterns
31
+ - Detects: obvious/redundant comments, vague TODOs, AI attribution, unexplained eslint-disable, @ts-ignore, commented-out code
32
+ - Reports findings with file:line references grouped by severity (high/medium/low)
33
+ - Supports `--fix` to auto-remove fixable AI slop comments
34
+ - Supports `--path <dir>` and `--severity <level>` filters
35
+ - Plugin tools: `omocs_init_deep` and `omocs_check` registered as OpenCode plugin tools
36
+ - System prompt injection updated with init-deep and check tool references
37
+
38
+ ## [1.9.2] - 2026-03-25
39
+
40
+ ### Added
41
+ - `omocs export [filename]` — export all config to single JSON file
42
+ - `omocs import <filename>` — import config with confirmation (supports --force)
43
+ - `omocs diff <profile1> <profile2>` — side-by-side profile comparison with color-coded output
44
+ - `omocs benchmark [prompt]` — compare response time across models (supports --models, --timeout)
45
+ - `omocs mcp status` — MCP server health check with green/red status indicators
46
+ - `omocs init --quick` — quick setup with auto-detection from env vars
47
+ - Missing 67th task category: risk-management → agency-project-shepherd
48
+
49
+ ### Fixed
50
+ - LSP glob detection bug — CSS, HTML, JSON, YAML, SQL, Markdown LSPs now detectable
51
+ - Async/sync mismatch in config.ts
52
+ - Stale PLUGIN_VERSION fallback
53
+ - README updated to 28 agents, 67 task categories
54
+
55
+ ### Changed
56
+ - API key encryption using AES-256-GCM (keys encrypted before storing in config)
57
+ - Deduplicated `findPackageJson()` into single utility
58
+ - Atomic config writes (write to temp file, rename — prevents corruption)
59
+ - Improved error messages with contextual help suggestions
60
+ - Moved `better-sqlite3` to optionalDependencies
61
+ - CLI startup optimization (skip update check for --help/--version)
62
+
63
+ ## [1.9.1] - 2026-03-25
64
+
65
+ ### Added
66
+ - 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
67
+ - Agent system prompt markdown files for all 13 new agents
68
+ - Total agents expanded from 15 → 28, task categories from 32 → 67
69
+
70
+ ### Changed
71
+ - Plugin agent list header updated to reflect 28 agents, 67 task categories
72
+ - `omocs_categories` tool description updated to 67 categories
73
+
74
+ ## [1.9.0] - 2026-03-07
75
+
76
+ ### Added
77
+ - **`omocs status` command** — shows current provider info, API key (masked), default model, and config path
78
+ - 1mr.tech token balance fetching in `omocs status` (tokens remaining, tokens used, key status)
79
+ - **1mr.tech provider support in `omocs init`** (Step 5) — prompt for API key, validate via `GET /v1/usage`, select model
80
+ - Auto-generates `opencode.json` and `oh-my-opencode.json` with 1mr.tech config
81
+ - Graceful fallback when 1mr.tech API is unreachable (skip validation with warning)
82
+
83
+ ### Changed
84
+ - **Launchboard rewritten to pull from OpenCode API** — removed SQLite/Drizzle dependency entirely, backend now proxies to OpenCode API (default `localhost:1337`)
85
+ - New Launchboard routes: `/api/sessions`, `/api/board` (aggregated kanban)
86
+ - Launchboard kanban board shows todo status columns: Pending → In Progress → Completed → Cancelled
87
+ - Todo cards show content, priority badge, parent session; sidebar lists sessions with todo counts
88
+ - Auto-refresh every 30 seconds; graceful "No OpenCode detected" screen when API unreachable
89
+ - `OPENCODE_API_URL` env var for Launchboard configuration
90
+ - **Launchboard auto-update system** — git + npm dual-mode auto-update with 5-minute cache, `/api/update` endpoint for status/trigger
91
+
92
+ ### Removed
93
+ - Launchboard local database (`db/`, `drizzle.config`, `setup.sh`)
94
+ - Launchboard MCP server, stats/rules pages, drag-and-drop (now read-only board)
95
+ - Launchboard `columns`, `labels`, `tasks`, `workspaces`, `stats`, `rules` routes
96
+
8
97
  ## [1.8.0] - 2026-03-07
9
98
 
10
99
  ### Added
package/README.md CHANGED
@@ -50,11 +50,11 @@ curl -fsSL https://raw.githubusercontent.com/TheFahmi/omocs/main/install.sh | ba
50
50
  - **13 Profiles** — [→ docs/profiles.md](docs/profiles.md)
51
51
  Pre-built model configurations across 4 scope types: all, lead, mixed, and economy.
52
52
 
53
- - **15 Agents** — [→ docs/agents.md](docs/agents.md)
54
- Specialized AI roles with tuned models, thinking budgets, and automatic task routing across 32 categories.
53
+ - **28 Agents** — [→ docs/agents.md](docs/agents.md)
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