Documentation
43 skills, one click each.
Pick what to learn first.
Getting started
Download omega-core.vsix and install into VS Code (or VSCodium / Code-OSS): Extensions sidebar →
···→ "Install from VSIX…". Or via CLI:code --install-extension omega-core.vsix.Reload the window. Sign in via
Cmd/Ctrl + Shift + P→ "Omega: Open Account". First 20 requests/month are free, no card required.Open any file →
Cmd/Ctrl + Shift + P→ "Omega: Run Skill". Try/explainon a function you didn't write, or/reviewon a file you did.Optional: run "Omega: Sanity Check" from the command palette to verify the gateway is reachable and your account wired. Shows cost + latency for a 1-token probe.
Skill reference
Every slash command the extension ships with. Run via the command palette ("Omega: Run Skill") or type the slash command directly in the chat panel.
Code quality
6 skills/reviewMulti-step code review: triage → deep analysis. Covers correctness, style, security, performance, and test coverage gaps.
/security-scanStatic security analysis: OWASP Top 10, injection risks, secrets exposure, dependency CVEs, auth flaws.
/performanceIdentify hot paths, N+1 queries, memory leaks, unnecessary re-renders, and algorithm complexity issues.
/refactorSuggest and apply refactoring: extract method, introduce parameter object, replace conditional with polymorphism.
/cleanupRemove dead code, consolidate duplicates, fix naming, enforce consistent style per workspace ESLint/Prettier config.
/lint-fixRead diagnostics (ESLint/TypeScript errors), generate and apply fixes, confirm resolution.
Testing
3 skills/testGenerate a complete test file for the active file: unit tests for every exported function.
/coverageAnalyze test coverage, identify untested branches, generate targeted tests for gaps.
/e2eGenerate Playwright E2E test scenarios based on component props/API routes in the active file.
Docs
4 skills/docsGenerate comprehensive documentation for the active file.
/explainExplain the current file or selection in plain English: what it does, how it works, edge cases.
/readmeGenerate a README.md for the workspace: title, badges, install, usage, API reference, contributing guide.
/changelogGenerate a CHANGELOG.md section from recent git commits following Conventional Commits.
Git / workflow
3 skills/snapshotGenerate Jest/Vitest snapshot tests for React components in the active file.
/commitGenerate a Conventional Commits message from staged changes.
/fixFix the first error in the diagnostics list. Shows corrected file output.
Architecture
2 skills/migrateGenerate a migration script (Knex/Prisma/Alembic) between two schema versions.
/dependenciesAnalyze package.json / requirements.txt: flag outdated packages, security advisories, unused deps.
AI tools
1 skills/compare-modelsCompare model outputs on a custom prompt. Shows model, cost, latency, quality score.
Other
24 skills/jsdocAdd JSDoc/TSDoc comments to all exported functions and classes in the active file.
/commentAdd an inline comment above the selected code block explaining its purpose.
/mockGenerate mock implementations for all interfaces/types in the active file.
/prGenerate a GitHub pull request description from branch diff: summary, changes, testing notes.
/diff-explainExplain the current git diff in plain English: what changed and why.
/blame-explainExplain selected lines via git blame: who wrote them, when, and the original intent.
/debugGenerate a debugging strategy: add strategic logs, identify breakpoint locations, suggest watch expressions.
/why-failingAnalyze terminal output + source to explain why the process is failing.
/traceAdd OpenTelemetry tracing spans to the active file\
/diagramGenerate a Mermaid.js architecture diagram: classes, dependencies, data flow.
/api-designDesign a REST or GraphQL API for a described resource.
/schemaGenerate a database schema (SQL or Prisma) from TypeScript interfaces or a description.
/prompt-improveImprove the selected text as an LLM prompt: clarity, specificity, chain-of-thought instructions.
/chain-buildBuild a multi-step skill definition from a natural-language workflow description.
/evalRun the active file\
/boilerplateGenerate boilerplate code matching project conventions from a one-line description.
/devlogAppend a structured DEVLOG entry for a decision, discovery, or change with rationale.
/dockerfileGenerate a production-grade Dockerfile with multi-stage build, non-root user, healthcheck.
/ci-workflowGenerate a GitHub Actions / GitLab CI / CircleCI workflow with caching, parallel jobs, matrix builds.
/env-setupScan the workspace for env var usage and generate a complete .env.example file with defaults.
/regex-builderBuild a regex from a natural-language description with explanation and test examples.
/api-clientGenerate a type-safe API client from an OpenAPI/Swagger spec in the target language.
/branch-nameSuggest a Conventional-Commits-style git branch name from a task description.
/formatReformat code per the detected project style guide (Prettier, ESLint, EditorConfig).
Where to go next
- · Pricing — cost-plus tiers, BYOK, credits.
- · Download — VSIX + future installers.
- · Security — what we log, what we don't.
- · Bugs / feedback: [email protected]