Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By lightseekorg
Route development tasks in the SMG Rust LLM gateway repo to specialized AI skills that map codebase structure and dependencies, enforce step-by-step implementations using 15 subsystem recipes with verifications, perform structured PR reviews with checklists and anti-pattern checks, and execute pre-commit quality gates including linting, tests, and conventional commits.
npx claudepluginhub lightseekorg/smg-dev-guide --plugin smgUse when preparing to commit, open a PR, or check quality gates in the SMG repository — enforces verification before shipping
Use when implementing a feature, adding functionality, fixing a bug, or modifying behavior in the SMG repository — routes to subsystem-specific recipes and enforces step-by-step execution
Use when you need to understand the SMG codebase structure, find which crate owns a subsystem, or understand how crates depend on each other before making changes
Use when reviewing a pull request, checking a diff, or doing code review in the SMG repository — enforces systematic subsystem-aware review
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Verification-first engineering toolkit for Claude Code. 15 skills across a 5-phase spine (Investigate → Design → Implement → Verify → Ship), 8 specialist agents, an interactive setup wizard. Every skill has rationalizations + evidence requirements. Built for senior ICs and tech leads.
Git and PR workflows with code review, onboarding, and PR enhancement
Harness engineering for Claude Code — hook-enforced dual review, state-machine gates, and fail-closed safety where it counts.
Corca Workflow Framework — consolidated hooks and skill orchestration for structured development sessions
Multi-agent orchestration framework for Claude Code, Gemini CLI, and Codex CLI — 19 agents, 13 skills, 15 commands, quality gates, TDD enforcement
Shared code review workflows, verification protocol, git commands, and feedback handling. Recommended as a base for all beagle plugins.
AI-powered development guide for the Shepherd Model Gateway — 4 process-enforcing skills that change what your AI coding agent does, not just what it knows.
Works with Google Antigravity, Gemini CLI, Claude Code, Codex, and Cursor.
Project-level (Recommended): Antigravity natively supports the skills through its workflow system. Simply open this repository (or copy the .agents/ and skills/ directories into your SMG project root) in the Antigravity IDE and it will automatically discover them.
Global: To make these skills and workflows available across all projects, copy or symlink them into your global Antigravity ~/.gemini/antigravity/ directory:
git clone https://github.com/lightseekorg/smg-dev-guide.git ~/.gemini/antigravity/repos/smg-dev-guide
mkdir -p ~/.gemini/antigravity/workflows ~/.gemini/antigravity/skills
ln -s ~/.gemini/antigravity/repos/smg-dev-guide/.agents/workflows/* ~/.gemini/antigravity/workflows/
ln -s ~/.gemini/antigravity/repos/smg-dev-guide/skills/* ~/.gemini/antigravity/skills/
The Gemini CLI natively supports Agent Skills. You can install these skills directly from the repository using the CLI's built-in package manager.
Global Installation (Available in all projects):
gemini skills install https://github.com/lightseekorg/smg-dev-guide.git
Workspace Installation (Only in current project):
gemini skills install https://github.com/lightseekorg/smg-dev-guide.git --scope workspace
claude marketplace add lightseekorg/smg-dev-guide
Copy or symlink the skills into your user skills directory:
git clone https://github.com/lightseekorg/smg-dev-guide.git ~/.agents/repos/smg-dev-guide
ln -s ~/.agents/repos/smg-dev-guide/.agents/skills/* ~/.agents/skills/
Or clone into the SMG repo and skills are discovered automatically from .agents/skills/.
Install as a Cursor plugin via .cursor-plugin/plugin.json.
4 skills, each enforcing a specific developer action:
| Skill | Action | What It Does |
|---|---|---|
map | Orient | Crate map, layering rules, config propagation, request flow, label pipeline |
implement | Build | Detects subsystem, loads recipe, creates tasks, enforces step-by-step execution with verification |
review-pr | Review | Maps changed files to checklist sections, creates review tasks per subsystem, cites file:line |
contribute | Ship | 5-step quality gate (fmt → clippy → test → bindings → commit format) with enforcement |
Google Antigravity — invoke workflows using slash commands in the chat:
/map → discover codebase structure and ownership
/implement-feature → guides you through building a feature
/review-pr → checks your work against anti-patterns
/verify-pr → runs the full 5-step quality gate
Gemini CLI — skills trigger automatically based on your prompt:
"Where does the label pipeline live?" → Activates map skill
"Am I ready to submit?" → Activates contribute skill
Note: You can view installed skills by running gemini skills list.
Claude Code — use the /smg command:
/smg where does the label pipeline live → smg:map
/smg add a --timeout flag → smg:implement
/smg review PR #562 → smg:review-pr
/smg am I ready to submit → smg:contribute
Codex — skills trigger automatically based on your prompt, or invoke explicitly via $smg-implement, $smg-contribute, etc.
Unlike passive reference docs, these skills enforce workflows:
implement → contribute → review-pr flowimplement auto-detects what you're building and loads the right recipe: