Skip to main content
Run any Skill in Manus
with one click
GitHub repository

rugged-gemini

rugged-gemini contains 41 collected skills from irahardianto, with repository-level occupation coverage and site-owned skill detail pages.

skills collected
41
Stars
5
updated
2026-05-12
Forks
2
Occupation coverage
9 occupation categories · 100% classified
repository explorer

Skills in this repository

pathfinder
software-developers

Session bootstrap + workflows for Pathfinder semantic navigation tools. Covers: discovery protocol, tool chaining patterns (explore, impact, audit, debug), search optimization, LSP degraded mode, and error recovery.

2026-05-12
browser-automation
web-developers

Playwright browser automation via MCP. Covers E2E testing, UI review, web scraping, screenshot capture, and general browser interaction. MCP-first — CLI is fallback only.

2026-05-12
command-execution-principles
software-developers

Safe command execution: input sanitization, timeout handling, output capture, error propagation. For spawning processes, shell commands, system calls.

2026-05-07
git-workflow
software-developers

Git conventions: conventional commits, branch naming, PR hygiene, release tagging.

2026-05-07
incident-response
network-and-computer-systems-administrators

Structured incident workflow: severity classification, triage, diagnosis, mitigation, postmortem, and prevention. Template-driven with blameless review.

2026-05-07
parallel-dispatch-dag
software-developers

Constructs, validates, and traverses a Directed Acyclic Graph (DAG) from scope cards for safe level-based parallel dispatch. Determines execution order via topological sort. Detects cycles and invalid dependencies.

2026-05-07
parallel-dispatch-decomposition
software-developers

Decomposes broad tasks into MECE, parallelizable sub-tasks with explicit scope cards. Core skill for intra-domain parallel dispatch. Produces scope cards consumed by parallel-dispatch-dag, parallel-dispatch-ownership, and parallel-dispatch-merge skills.

2026-05-07
parallel-dispatch-merge
software-developers

Safe, sequential merge protocol for integrating N parallel worktree branches back into main. Defines merge ordering, quality gates between merges, conflict classification, and the updated worktree naming convention for multi-instance dispatches.

2026-05-07
parallel-dispatch-ownership
software-developers

Enforces MECE file boundaries for parallel write-agents. Validates that no two writers share file access. Manages the contracts layer (shared reads) and integration sub-task patterns. The safety invariant that prevents merge chaos.

2026-05-07
api-documentation
software-developers

OpenAPI 3.1 specification writing, request/response examples, error documentation, versioning, and interactive API portal patterns.

2026-05-06
chaos-testing
software-quality-assurance-analysts-and-testers

Controlled failure injection: hypothesis design, blast radius control, safety mechanisms, game day planning, and resilience verification.

2026-05-06
cli-development
software-developers

CLI tool design, argument parsing, interactive prompts, shell completions, cross-platform considerations, and distribution strategies.

2026-05-06
code-review
software-quality-assurance-analysts-and-testers

Structured code review protocol: inspect against full rule set. Use for audit workflows, code reviews, or when user requests review. Produces findings document with severity tags.

2026-05-06
data-engineering
data-scientists-152051

Data pipeline architecture, ETL/ELT patterns, data quality, batch vs stream processing, orchestration, and data governance principles.

2026-05-06
database-design-principles
database-architects

Database design: schemas, migrations, queries, indexes, transactions. Normalization, query optimization, migration safety.

2026-05-06
debugging-protocol
software-developers

Structured debugging: hypothesis generation, validation, root cause analysis. For complex bugs, flaky tests, intermittent failures.

2026-05-06
dependency-management-principles
software-developers

Dependency management: version pinning, vulnerability scanning, dependency hygiene. go.mod, package.json, Cargo.toml, pubspec.yaml.

2026-05-06
embedded-systems
software-developers

Resource-constrained development, real-time patterns, interrupt handling, memory management, RTOS patterns, and hardware abstraction layers.

2026-05-06
frontend-design
software-developers

Generates distinctive, production-grade frontend interfaces (React, Vue, HTML/CSS). Bold aesthetics, unique typography, motion. Use for websites, dashboards, posters, or styling tasks.

2026-05-06
ml-engineering
data-scientists-152051

ML pipeline design, feature engineering, model training/serving, experiment tracking, model validation, and MLOps principles.

2026-05-06
payment-integration
software-developers

PCI DSS compliance, payment gateway integration, tokenization, webhook reliability, idempotency, fraud prevention, and subscription billing.

2026-05-06
perf-optimization
software-developers

Profile-driven performance optimization: methodology, pattern catalog, safety invariants, when-to-stop heuristics. Language-specific in languages/*.md.

2026-05-06
refactoring-patterns
software-developers

Safe refactoring pattern catalog: code smell taxonomy, transformation techniques, behavior preservation strategies, and metrics tracking.

2026-05-06
supply-chain-security
information-security-analysts

SBOM generation, CVE scanning, supply chain attack detection, license compliance, dependency pinning, and artifact verification.

2026-05-06
accessibility-principles
web-developers

WCAG accessibility: semantic HTML, ARIA, keyboard nav, contrast, screen readers. For all user-facing interfaces.

2026-05-06
adr
software-developers

Document architectural decisions using ADR format. Use during research when choosing approaches, introducing deps/patterns, or changing arch.

2026-05-06
api-design-principles
software-developers

REST/HTTP API design: resource naming, status codes, error formats, versioning, pagination.

2026-05-06
ci-cd-gitops-kubernetes
network-and-computer-systems-administrators

Kubernetes deployment and GitOps patterns: rolling/blue-green/canary strategies, ArgoCD/Flux manifests, K8s secrets management. Supplement to ci-cd-principles.

2026-05-06
ci-cd-principles
software-developers

CI/CD pipeline patterns: stages, Dockerfile, GitHub Actions, artifact management, environment promotion, rollback. Layered by deployment complexity.

2026-05-06
concurrency-and-threading-principles
software-developers

Concurrency/parallelism patterns: race prevention, deadlock avoidance, message passing, async/channels/mutexes/worker pools.

2026-05-06
configuration-management-principles
network-and-computer-systems-administrators

Config management patterns: env vars, config files, settings structs, secrets injection. Validation, layering, fail-fast, twelve-factor.

2026-05-06
data-serialization-principles
software-developers

Serialization best practices: schema validation, encoding, versioning, backward compat, safe deserialization. JSON, YAML, Protobuf, MessagePack.

2026-05-06
feature-flags-principles
project-management-specialists

Feature flag patterns ONLY when PRD/arch requires. Flag evaluation, lifecycle, testing, infrastructure. Do NOT load speculatively.

2026-05-06
guardrails
software-quality-assurance-analysts-and-testers

Pre-flight checklists before coding, post-implementation self-review after. Catches arch violations, missing observability, security oversights.

2026-05-06
logging-and-observability-principles
software-developers

Structured logging and observability patterns: log levels, structured fields, correlation IDs, language-specific logger setup.

2026-05-06
mobile-design
web-and-digital-interface-designers

Distinctive, production-grade mobile interfaces for Flutter/RN. Platform-native patterns, adaptive layouts, fluid motion. iOS/Android conventions.

2026-05-06
monitoring-and-alerting-principles
network-and-computer-systems-administrators

Health checks, metrics instrumentation (RED/USE), error tracking, graceful degradation. Prometheus, probes, alert thresholds.

2026-05-06
performance-optimization-principles
software-developers

Performance principles: measure-first methodology, data structures, caching, batching, when to stop. For hands-on profiling, use perf-optimization skill.

2026-05-06
resources-and-memory-management
software-developers

Resource lifecycle patterns: files, DB connections, sockets, locks. RAII, defer/finally, pooling, graceful shutdown, leak prevention.

2026-05-06
omni
software-developers

Maximum token-efficiency communication. Telegraphic English + minimal structured notation. 100% technical accuracy. Zero fluff. Zero waste.

2026-04-20
Showing top 40 of 41 collected skills in this repository.
rugged-gemini Agent Skills on GitHub | SkillsMP