.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/dvnghiem/flowdeck
home/skills/dvnghiem/flowdeck
dvnghiem avatar

dvnghiem/flowdeck

53 skills

View on GitHub
$npx skills add dvnghiem/flowdeck
SkillInstalls
agent-harness-constructionBuild autonomous agent pipelines — construct agent loops, wire multi-agent orchestration, implement self-healing retry logic, and measure agent effectiveness—api-designREST API design patterns for resource naming, status codes, pagination, filtering, versioning, and error responses.—app-shell-designDefine app shell structure, navigation model, and reusable surface patterns for web/mobile apps—arch-constraint-guardBlock edits that violate known system boundaries, team rules, service contracts, or domain-layer separation. Reads rules from .codebase/CONSTRAINTS.md.—backend-patternsBackend architecture patterns for services, APIs, data access, and middleware design.—blast-radius-previewShow the likely downstream consequences of a proposed change — hidden dependencies, fragile integration points, and predicted breakage categories.—change-impact-radarPredict affected files, modules, APIs, tests, and DB paths before changes. Returns an impact map for human review.—clean-architectureApply Clean Architecture boundaries to keep domain logic isolated from frameworks and infrastructure.—code-reviewReview code for security vulnerabilities, logic errors, and quality issues. Returns findings ranked by severity with remediation steps.—code-tourCreates guided code walkthroughs as structured markdown documents. Use when onboarding new developers, explaining architecture, or creating PR review guides.—codebase-mappingMap architecture, conventions, and file structure into `.codebase/`. Use when onboarding or before deep feature work.—codebase-onboardingExplore and document an unfamiliar codebase. Use when joining a new project or generating project documentation.—confidence-aware-planningPlan differently when the agent has low certainty — ask for clarification or narrow scope instead of pretending full understanding.—context-budgetOptimize token usage and context window discipline. Reduce costs and improve response quality through smart context management.—context-guardProtect critical context from pruning during compaction. Preserve active plans, safety files, pending operations, and user intent anchors.—context-loadLoad full project context at session start. Read STATE.md, PLAN.md, PROJECT.md, CONVENTIONS.md, and ARCHITECTURE.md to brief any agent on where work stands.—context-stewardUnified context lifecycle for FlowDeck sessions — ingest, filter, prune, protect, summarize, and persist with telemetry.—cqrsCommand Query Responsibility Segregation patterns for separating write and read models.—ddd-architectureDomain-Driven Design patterns for bounded contexts, aggregates, and ubiquitous language.—debug-flowSystematic debugging workflow. Reproduce the issue, isolate root cause, write a failing test, fix, verify. Use when diagnosing bugs or unexpected behavior.—decision-traceRecord why the agent changed something, what evidence was used, and what assumptions were made — so code reviews become much faster.—dependency-auditAudits npm/pip/cargo dependencies for known vulnerabilities, outdated packages, and license issues. Activate before releases or when CVE alerts are received.—django-patternsDjango patterns — models, ORM, class-based views, middleware, URL routing, forms, project layout. Activate when writing or reviewing Django code.—django-tddTest-driven development patterns for Django covering pytest, Django TestCase, factory_boy, test client, and best practices for testing Django applications.—event-driven-architectureEvent-driven architecture patterns for asynchronous workflows and decoupled services.—failure-replay-engineLearn from reverted commits, failed deployments, flaky tests, and bug fixes so the agent avoids repeating the same mistakes in this repo.—frontend-patternFrontend development patterns — component composition, state management, URL-as-state, data fetching, and animation best practices for React/TypeScript web…—git-releaseCreate consistent releases and changelogs from merged PRs. Proposes semantic version bump, drafts release notes, and provides a copy-pasteable release command.—git-workflowBranching strategies, conventional commits, PR templates, and merge vs rebase guidance. Activate when starting features, creating PRs, or managing releases.—golang-patternsIdiomatic Go patterns covering error handling, interfaces, goroutines, channels, testing, and common pitfalls. Activate when writing or reviewing Go code.—hexagonal-architecturePorts-and-adapters architecture patterns for testable, framework-independent domain logic.—human-review-routingRoute risky patches to the right reviewer — security, backend, infra, or domain owner — by change type.—java-patternsModern Java 17+ patterns — records, sealed classes, Stream API, CompletableFuture, Spring Boot, JPA. Activate when writing or reviewing Java.—layered-architectureLayered architecture patterns for separating presentation, application, domain, and data layers.—patch-trust-scoreAssign a confidence and risk rating to every AI-generated change. Returns safe, review-required, or high-risk verdict with specific signals.—performance-profilingCPU and memory profiling, N+1 query detection, bundle analysis, and render optimization.—plan-taskBreak complex features into a phased plan with parallel tasks, dependency graph, and verifiable success criteria. Use before multi-file work.—postgres-patternsPostgreSQL schema, query, indexing, and performance patterns.—python-patternsPython idioms — type hints, dataclasses, async/await, generators, pytest, common pitfalls. Activate when writing or reviewing Python code.—refactor-guideRefactor safely — keep tests green, change structure without behavior change, no public API breakage. Use for code maintenance.—regression-predictionEstimate the most likely regression categories for a proposed change — performance, auth, schema, UI states, async flows — before merging.—repo-memory-graphBuild and maintain a persistent graph of architecture, conventions, bug history, ownership patterns, and module relationships for this specific codebase.—research-firstStrict research hierarchy before writing code — search codebase, docs, web, and registries in order.—responsive-reviewReview responsive behavior and breakpoint fidelity against design intent—rust-patternsRust patterns covering ownership, lifetimes, error handling, traits, async with Tokio, and smart pointers. Activate when writing or reviewing Rust.—saga-architectureSaga coordination patterns for distributed transactions with compensating actions.—security-scanPre-commit security scan covering secrets, injection, auth, CVE dependencies. Returns PASS/FAIL verdict with severity-ranked findings and specific remediations.—self-healing-policiesUpdate internal editing rules automatically after repeated failures, making the plugin more reliable over time inside the same repo.—session-persistenceMaintain continuity across FlowDeck sessions by loading previous context, checkpointing mid-session state, and writing structured summaries at session end.—tdd-workflowEnforces Test-Driven Development with Red-Green-Refactor cycle and 80%+ coverage. Activate when writing new features, fixing bugs, or refactoring.—telemetry-stewardLightweight append-only telemetry layer for tracking session health, agent performance, and decision quality across FlowDeck operations.—test-coverageEnforce test-first development and measure coverage gaps. Drives write-test → implement → verify. Use for new features and bug fixes.—test-gap-detectorIdentify which areas of a proposed change are weakly covered by tests and suggest the minimum high-value tests to add first.—