by thiientv
Production-grade Agent Skills for AI coding agents—composable workflows for planning, TDD, debugging, review, UI/UX, releases, incidents, and evals.
# Add to your Claude Code skills
git clone https://github.com/thiientv/godmodeLast scanned: 8/14/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-08-14T05:37:56.895Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}godmode is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by thiientv. Production-grade Agent Skills for AI coding agents—composable workflows for planning, TDD, debugging, review, UI/UX, releases, incidents, and evals. It has 94 GitHub stars.
Yes. godmode passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/thiientv/godmode" and add it to your Claude Code skills directory (see the Installation section above).
godmode is primarily written in Python. It is open-source under thiientv on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh godmode against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
Engineering workflows and capabilities for AI coding agents.
Godmode helps coding agents move from "write some code" to "engineer the change" — with explicit planning, testing, review, and evidence-driven verification.
Status: Pre-1.0 public preview. The catalog and validation tooling are usable, while client-specific behavior and output quality continue to be evaluated across supported environments.
AI coding agents are increasingly capable of writing code. The harder problem is making them behave like disciplined engineers:
Godmode packages those behaviors as composable Agent Skills rather than one large system prompt or a proprietary orchestration runtime.
USER TASK
│
▼
┌───────────────┐
│ Godmode │
│ skill catalog │
└───────┬───────┘
│
discover + compose capabilities
│
┌───────────────────┼───────────────────┐
▼ ▼ ▼
solution-design api / database security / UI
│ │ │
└───────────────────┼───────────────────┘
▼
implementation-planning
│
▼
test + review
│
▼
fresh verification evidence
│
▼
VERIFIED RESULT
The graph above is illustrative, not a mandatory pipeline. A small task can use one skill; a high-risk change can compose several capabilities.
Each capability has a clear responsibility boundary and follows the Agent Skills layout. Skills can contain concise procedures, progressive references, and deterministic helpers where automation improves reliability.
Godmode includes workflows for discovery, design, planning, implementation, debugging, testing, review, verification, parallel work, and release integration.
Capabilities cover areas such as frontend architecture, APIs, databases, security, performance, observability, migrations, browser testing, documentation, and incident response.
The repository includes validators, routing fixtures, behavior evaluations, evidence tracking, lifecycle checks, and repository-quality gates. This keeps the catalog itself testable instead of relying solely on prose.
Godmode is distributed as a repository of portable skills. No proprietary runtime is required.
Copy the public skills into your project's skills directory:
mkdir -p .agents/skills
cp -R /absolute/path/to/godmode/skills/* .agents/skills/
claude --plugin-dir /absolute/path/to/godmode
claude plugin validate /absolute/path/to/godmode
The repository includes .codex-plugin/plugin.json and a local marketplace entry under .agents/plugins/. Install it through the Codex plugin workflow and verify that the expected skills are available.
Compatibility note: client support is tracked from recorded evidence rather than assumed compatibility. See
docs/compatibility.md.
A request such as:
Add authentication to the API and make it production-ready.
can be decomposed into focused engineering responsibilities:
codebase-orientation
↓
solution-design
↓
api-and-interface-design + security-and-hardening
↓
implementation-planning
↓
test-driven-development
↓
pr-code-reviewer
↓
completion-verification
For changes that already have review feedback, receiving-code-review handles validation and fixes. The exact composition depends on the task, repository, risk, and available evidence.
| Skill | Purpose |
|---|---|
using-godmode |
Discover and compose Godmode capabilities |
codebase-orientation |
Understand entry points, execution paths, conventions, and hotspots |
solution-design |
Resolve requirements and design consequential changes |
implementation-planning |
Produce executable implementation plans |
plan-execution |
Execute an existing implementation plan |
test-driven-development |
Drive behavior changes through tests |
root-cause-debugging |
Reproduce failures, identify causes, and lock in regressions |
requesting-code-review |
Prepare focused independent review context |
pr-code-reviewer |
Review a GitHub PR or diff for correctness, security, compatibility, tests, and maintainability |
receiving-code-review |
Validate and resolve review findings |
completion-verification |
Gather fresh evidence before completion claims |
dispatching-parallel-agents |
Safely split independent work |
subagent-driven-development |
Run implement/review cycles around plan tasks |
using-git-worktrees |
Isolate parallel or risky changes |
branch-integration |
Verify, integrate, and clean up completed work |
writing-skills |
Create and evaluate new Agent Skills |
| Skill | Purpose |
|---|---|
frontend-design |
Build interfaces, design systems, states, and responsive UI |
ui-ux-review |
Audit existing UI quality, accessibility, and interaction patterns |
api-and-interface-design |
Design HTTP, RPC, CLI, webhook, and event contracts |
database-design |
Design schemas, indexes, consistency, retention, and recovery |
security-and-hardening |
Threat modeling, abuse paths, privacy, and defensive controls |
performance-optimization |
Optimize measured latency, memory, rendering, queries, and bundles |
test-strategy |
Define risk-based coverage and release gates |
browser-testing |
Exercise a real web boundary |
documentation-and-adrs |
Produce durable documentation and architecture decisions |
observability-and-instrumentation |
Make failures measurable and diagnosable |
technical-research |
Make version-aware decisions from primary sources |
safe-migrations |
Preserve compatibility and state through a staged transition |
release-engineering |
Control artifacts, rollout, promotion, and rollback |
architecture-review |
Review coupling, ownership, testability, and structural friction |
code-simplification |
Reduce complexity while preserving behavior |
behavior-validation |
Validate observable behavior through source-blind checks |
agent-evaluation |
Evaluate prompts, tools, agents, and skills |
incident-response |
Handle containment, recovery, evidence, and follow-up |
See docs/catalog.md for the complete catalog and routing model.
SKILL.md focused and move deeper material into references..
├── skills/ # Public Agent Skills
├── scripts/ # Deterministic validation and repository tooling
├── tests/ # Automated test suite
├── evals/ # Behavior and routing evaluations
├── benchmarks/ # Portable benchmark fixtures
├── docs/ # Catalog, compatibility, research, and maintainer docs
├── .agents/ # Local agent/plugin metadata
├── .codex-plugin/ # Codex plugin metadata
├── README.md
└── LICENSE
Clone the repository and run the validation suite:
git clone https://github.com/thiientv/godmode.git
cd godmode
npm run check
npm run catalog:health
python3 scripts/repository_security.py
python3 scripts/compatibility.py check
python3 -m unittest discover -s tests -p 'test_*.py'
For focused tooling, examples include:
python3 skills/frontend-design/scripts/design_system.py \
--product "analytics dashboard" \
--tone technical \
--stack react
python3 skills/frontend-design/scripts/extract_design_system.py ./path/to/ui
python3 skills/ui-ux-review/scripts/audit_ui.py ./path/to/ui
The repository gate checks catalog structure, frontmatter, links, routing fixtures, behavior-eval schemas, compatibility drift, workflow security, public-file safety, and helper tests.
docs/catalog.md]