
existential-birds/beagle
137 skills18.1k installs10.1k starsGitHub
Install
npx skills add https://github.com/existential-birds/beagleSkills in this repo
1React FlowThe react-flow skill guides React Flow integration within the Beagle project for node-based graph editors, diagrams, and interactive canvases. It covers installing and configuring React Flow components, custom node and edge types, layout helpers, and state synchronization patterns suited to Beagle's architecture. Agents learn viewport controls, drag-and-drop node placement, connection validation, and performance considerations for medium-sized graphs. The skill aligns UI patterns with Beagle conventions for styling, data fetching into graph nodes, and persisting graph state back to application stores or APIs.1.1kinstalls2Langgraph Code Reviewlanggraph-code-review is a specialized code-review skill for LangGraph agent graphs built on StateGraph, nodes, edges, and checkpointing. It runs a gated review workflow that requires citing exact file:line artifacts before flagging bugs, then checks categories including state reducers, graph topology, persistence configuration, and async execution patterns. Developers reach for langgraph-code-review when reviewing PRs that touch LangGraph features such as conditional edges, interrupt handlers, or checkpoint savers, where generic Python linters miss framework-specific failure modes. The skill targets teams shipping LangChain/LangGraph agents who need consistent pre-merge quality checks without maintaining a separate checklist document.882installs3Tailwind V4tailwind-v4 is a skill from existential-birds/beagle focused on dark mode strategies in Tailwind CSS v4. The skill documents media-query detection via `prefers-color-scheme`, class-based and attribute-based theme toggles, and theme-switching implementation that respects user preferences. It shows v4 defaults where `@import 'tailwindcss'` enables `dark:` variants without extra configuration, plus generated CSS examples using oklch color values. Developers reach for tailwind-v4 when shipping theme toggles, fixing inconsistent dark styles, or migrating dark-mode behavior to Tailwind v4's variant model.764installs4Python Code Reviewpython-code-review is a structured Python review skill with four reference guides: pep8-style, type-safety, async-patterns, and error-handling. The skill checks indentation, line length, naming, missing or incorrect type hints including Any misuse, blocking calls inside async code, missing await usage, bare except clauses, and weak logging practices when reviewing .py files. Developers reach for python-code-review during pull request review or agent-driven audits before merging Python services. The quick-reference table routes each issue type to focused markdown references so reviews stay consistent across modules.677installs5React Flow Advancedreact-flow-advanced is an advanced patterns skill from existential-birds/beagle for React Flow complex use cases. It provides sequenced shipping gates for sub-flows and groups (parentId validation, registered nodeTypes, relative child positions), custom connection lines with visible valid/invalid stroke states, external drag-and-drop with preventDefault on dragOver and correct screen-to-flow coordinates, programmatic layouts, undo/redo stacks, and complex state synchronization. Developers reach for it when a node editor outgrows basic examples and needs grouped nodes, custom edges, or reliable interaction polish. Each gate is a pass/fail checklist—not subjective review—so teams catch React Flow integration bugs before release. The skill targets production diagram builders, workflow canvases, and visual programming UIs.575installs6React Router V7react-router-v7 is a Beagle plugin skill from existential-birds/beagle with 435 skills.sh installs that encodes React Router v7 best practices for data-driven routing. It documents createBrowserRouter and RouterProvider setup, framework-mode routes.ts with the Vite plugin, nested routes with Outlet, dynamic and splat segments, and decision gates for Form versus useFetcher and loader versus useEffect. Triggers include createBrowserRouter, useLoaderData, useActionData, useFetcher, NavLink, and protected-route work. Four reference files—loaders.md, actions.md, navigation.md, and advanced.md—cover parallel loading, mutations, programmatic navigation, error boundaries, and lazy loading. A mode comparison table contrasts Framework, Data, and Declarative setups for SSR, type safety, and SPA control. Developers reach for react-router-v7 when migrating from React Router v6 or wiring loaders and actions in new React 19 full-stack apps.511installs7React Flow Architecturereact-flow-architecture is a Frontend Development skill from existential-birds/beagle that provides architectural guidance for node-based UIs built with React Flow. The skill lists eight strong fit scenarios—visual programming, workflow builders, flowcharts, data pipelines, mind maps, node editors, decision trees, and state machine designers—and flags when plain SVG, canvas, or alternatives suit better. Developers reach for react-flow-architecture before writing React Flow components when they need decisions on state management, integration patterns, and whether the library matches product complexity. It focuses on design-time architecture rather than step-by-step component API tutorials.468installs8Vitest Testingvitest-testing is an existential-birds/beagle skill bundled in the beagle-react plugin for Vitest testing framework patterns and best practices. It triggers on describe, it, expect, vi.mock, vi.fn, beforeEach, afterEach, and vitest.config work. The main SKILL.md covers async testing with await on resolves/rejects matchers and a quick mock reference, while three deeper references split mocking, vitest.config.ts setup with v8 or istanbul coverage, and patterns for timers and snapshots. Developers reach for vitest-testing when setting up Vitest in TypeScript or JavaScript projects, debugging flaky async tests, configuring jsdom or node environments, or preparing CI-friendly coverage reports. Verification gates in the skill help catch silent false positives from missing await on async matchers.442installs9Fastapi Code Reviewfastapi-code-review is a specialized agent skill for backend engineers shipping FastAPI microservices and REST APIs. The skill walks an AI coding agent through a structured review checklist covering APIRouter route definitions, Depends() dependency injection chains, Pydantic v2 request and response models, async/await concurrency pitfalls, and OpenAPI schema accuracy against actual endpoints. Developers reach for fastapi-code-review when a pull request touches FastAPI routers, background tasks, or auto-generated Swagger docs and they want a second pass before code review or release. The skill focuses on Python async patterns that commonly cause production bugs—blocking calls inside async handlers, incorrect Depends scopes, and schema drift between Pydantic models and documented OpenAPI fields. It is designed for teams maintaining typed Python APIs where correctness of dependency graphs and contract documentation matters as much as business logic.344installs10Shadcn Uishadcn-ui is a frontend development skill for Claude Code that guides correct implementation of shadcn/ui components using Radix UI primitives, Tailwind CSS tokens, component variants, and accessible form patterns. The skill helps developers wire buttons, dialogs, selects, and form controls so they match project design system conventions instead of copying incomplete snippets. It focuses on accessibility defaults, variant APIs, and composition patterns common in React and Next.js codebases adopting shadcn/ui. Reach for shadcn-ui when you are adding or refactoring UI components and need Radix behavior, Tailwind styling, and form wiring done consistently.320installs11React Flow Implementationreact-flow-implementation is a frontend implementation skill for building node-based UIs with @xyflow/react (React Flow). react-flow-implementation focuses on the wiring that commonly breaks in flow editors: nodes and edges state, add-edge callbacks, custom node components with handles, and including the required React Flow stylesheet import. react-flow-implementation is useful when a developer is implementing a visual editor, diagram builder, or workflow canvas and needs predictable viewport behavior and consistent state updates. Developers reach for react-flow-implementation when they want a working baseline quickly and then iterate into custom nodes, interactions, and persisted graph state without missing key integration steps.316installs12Langgraph Architecturelanggraph-architecture is an architecture decision skill for building LangGraph applications with production-grade control flow. langgraph-architecture helps developers decide when LangGraph fits the problem, how to represent state for multi-turn conversations, and how to design loops, branches, and conditional routing for tool-using agents. langgraph-architecture also covers checkpointing and persistence trade-offs so workflows can resume reliably and support human-in-the-loop approval gates. Developers reach for langgraph-architecture when a simple chat handler is no longer enough and they need durable state, streaming, and multi-agent orchestration patterns that remain debuggable and maintainable as the graph grows.278installs13React Flow Code Reviewreact-flow-code-review is a beagle-react skill from the existential-birds/beagle marketplace that structures agent-led reviews of React Flow (@xyflow/react) code before merge. The workflow runs five sequenced gates: locate flow symbols like ReactFlow, ReactFlowProvider, useReactFlow, nodeTypes, and edgeTypes; verify provider boundaries for hook usage; check stable nodeTypes and edgeTypes references and memo surfaces; collect file:line evidence for each finding; and close performance and common-mistakes checklists with satisfied, N/A, or open status. It targets the usual footguns—inline nodeTypes that remount every node, missing memo wrappers, and useReactFlow called outside ReactFlowProvider. Developers reach for react-flow-code-review when reviewing PRs that touch flow builders, diagram editors, or node-based canvases in React apps. The skill ships as part of beagle-react alongside 16 React-focused review skills in the beagle plugin marketplace.274installs14Swiftui Code ReviewThe swiftui-code-review skill provides structured review guidance for SwiftUI-based iOS and macOS applications. It helps teams audit view composition, observable state, navigation stacks, previews, accessibility labels, and Apple platform conventions so mobile releases ship with fewer UI regressions and cleaner SwiftUI architecture.250installs15Zustand StateFrontend build skill for Zustand: helps model global and feature stores, memoized selectors, devtools middleware, and persist rehydration so React web and native clients stay predictable without Redux boilerplate.232installs16Adr Writingadr-writing from existential-birds/beagle teaches agents to draft Architecture Decision Records with context, considered options, decision rationale, and consequences so teams preserve why choices were made.231installs17Tutorial DocsDocumentation skill for tutorial-style guides: plans outlines, copy-paste examples, environment setup, and checkpoint exercises so libraries and apps ship with onboarding material that reduces support load and speeds integration.229installs18Bubbletea Code ReviewSpecialized code review skill for Go Bubble Tea terminal UIs, enforcing idiomatic Elm architecture, correct model-update-view flow, efficient rendering, and polished keyboard-driven UX before merge.228installs19Pydantic Ai Common PitfallsCatalogs common Pydantic AI pitfalls for beagle agent backends: invalid tool models, dependency wiring mistakes, streaming edge cases, and validation gaps. Helps teams ship typed LLM agents with fewer runtime failures and cleaner observability.220installs20Swift Code ReviewMobile-focused code review skill for Swift: evaluates structs, protocols, async/await, value semantics, and framework usage so iOS and macOS PRs ship with fewer runtime crashes and clearer module boundaries.219installs21Pydantic Ai Agent CreationSkill for creating Pydantic AI agents end to end: defining Agent instances, registering typed tools, configuring structured result models, crafting prompts, and wiring runnable async execution for LLM-powered features.217installs22Dagre React FlowGuides implementation of Dagre-powered automatic graph layout inside React Flow, covering node sizing, directed layout configs, fit-view behavior, and performant updates for workflow and agent diagram UIs.208installs23Pytest Code ReviewPytest-focused code review skill auditing fixtures, parametrization, markers, mocking boundaries, assertion clarity, and test isolation to prevent flaky suites and improve long-term maintainability of Python test code.199installs24Ai ElementsProvides patterns and components for building modern AI application frontends: conversational layouts, streamed assistant output, structured tool results, and interaction states that match production agent UX expectations.195installs25Sqlalchemy Code ReviewProvides a structured SQLAlchemy code-review checklist for backend PRs: evaluate models, relationships, sessions, queries, and migrations to catch performance regressions, transaction errors, and schema issues before production deploy.192installs26Agent Architecture Analysisagent-architecture-analysis from existential-birds/beagle guides agents to review multi-agent system designs, evaluate tool graphs, memory, and failure handling, and surface scope risks before implementation begins.189installs27Go Code ReviewGo-focused code review skill targeting services and CLIs: package design, context-aware concurrency, explicit error handling, interface sizing, observability hooks, and test patterns consistent with production Go codebases.184installs28Shadcn Code ReviewThe shadcn-code-review skill from existential-birds/beagle specializes PR review for React frontends built with shadcn/ui. It inspects component selection, Radix accessibility patterns, Tailwind class usage, variant props, and composition anti-patterns so SaaS, extension, and content UIs stay consistent before merge.183installs29Swift Testing Code ReviewQA-oriented skill for Swift Testing and XCTest: reviews test plans, async expectations, dependency injection, and CI signals so Apple platform teams merge reliable suites that catch regressions before App Store submission.177installs30Review Verification ProtocolThe review-verification-protocol skill from existential-birds/beagle enforces a structured code-review verification workflow. It guides reviewers through explicit checks, documents findings and resolutions, and requires clear sign-off before merge so shipping decisions are traceable and consistent across SaaS, API, and agent projects.174installs31React Router Code ReviewStructured Claude Code review skill for React Router apps: inspects route definitions, data APIs, redirects, and nested layouts to flag anti-patterns, type gaps, and production navigation failures before release.165installs32Langgraph ImplementationProvides LangGraph implementation guidance for beagle agent products: defining graphs, state schemas, conditional edges, checkpoints, and tool nodes. Targets maintainable, debuggable multi-step LLM workflows suitable for APIs and embedded copilots.161installs33Pydantic Ai Tool SystemGuides implementation of Pydantic AI's tool system for production agents: designing typed tools, composing toolsets, wiring dependencies, and ensuring reliable execution with validated inputs and outputs across LLM-driven workflows.160installs34Deepagents ArchitectureThe deepagents-architecture skill from existential-birds/beagle teaches how to structure deep AI agents: layered planners, executors, tool routers, memory, and guardrails. Use it when designing autonomous workflows that must reason over many steps, call external tools safely, and remain maintainable as complexity grows.151installs35Pydantic Ai TestingThe pydantic-ai-testing skill guides Claude to test Pydantic AI agents rigorously before production deployment. It covers harness setup, mocked tool interactions, structured output assertions, regression suites, and release-quality checks for agent and API workflows built on Pydantic AI.147installs36Pydantic Ai Dependency InjectionCovers Pydantic AI dependency injection patterns using RunContext and deps types to inject databases, auth, settings, and services into agent tools with clean testing seams and lifecycle-aware resource management.140installs37Docs StyleDefines documentation style conventions for beagle repositories: tone, heading hierarchy, code sample formatting, terminology, and cross-references. Helps teams produce uniform READMEs, API docs, and internal guides that read clearly and pass review without rework.135installs38Deepagents ImplementationCovers practical implementation of deep agent systems from the beagle repo: structuring planners, executors, tool registries, state handling, and failure recovery for complex autonomous workflows in SaaS and API products.131installs39Postgres Code ReviewTargeted Postgres code review covering migration safety, index strategy, N+1 queries, locking and deadlock risk, constraint integrity, and ORM-to-SQL correctness before database-related changes merge.130installs40Go Testing Code ReviewCombines Go testing best practices with code review guidance for beagle Go services and CLIs. Covers idiomatic tests, benchmarks, mocks, error handling, and PR-level critique so backend changes ship with reliable coverage and clear interfaces.127installs41Adr Decision ExtractionThe adr-decision-extraction skill from existential-birds/beagle pulls architectural decisions out of implementation artifacts and discussions, then formats them as ADRs with context, trade-offs, and consequences so engineering teams preserve design rationale during active build work.124installs42Deepagents Code ReviewGuides deep agent-driven code review for AI and agentic projects in existential-birds/beagle. Emphasizes pre-merge inspection of diffs, agent design risks, tool boundaries, and quality gates tailored to LLM-powered systems rather than generic lint passes.122installs43Pydantic Ai Model IntegrationGuides integrating LLM providers with Pydantic AI, including model selection strings, OpenAI/Anthropic/Gemini adapters, streaming responses, retry and fallback policies, and environment-based API configuration.121installs44Swiftdata Code ReviewSpecialized review skill for SwiftData stacks: inspects @Model definitions, versioning, fetch performance, delete rules, and sync edge cases so mobile apps avoid corrupt stores and slow on-device queries.119installs45Llm Judgellm-judge is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.118installs46Watchos Code ReviewA watchOS code review skill from existential-birds/beagle that audits Apple Watch app code for platform-correct Swift patterns, complication design, WatchConnectivity with iOS companions, and release readiness before merge or ship.118installs47Explanation Docsexplanation-docs is a Claude Code skill for productivity & planning. It helps solo builders move faster with AI-assisted development.117installs48Healthkit Code ReviewA developer tool for AI integration and automation. This is a developer tool for building and integrating AI-powered features.116installs49Llm Artifacts Detectionllm-artifacts-detection is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.115installs50Prometheus Go Code Reviewprometheus-go-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.109installs51Cloudkit Code Reviewcloudkit-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.108installs52Review Skill Improverreview-skill-improver is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.108installs53App Intents Code Reviewapp-intents-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.106installs54Howto Docshowto-docs is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.106installs55Review Feedback Schemareview-feedback-schema is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.106installs56Combine Code Reviewcombine-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.104installs57Receive Feedbackreceive-feedback is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.104installs58Widgetkit Code Reviewwidgetkit-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.103installs59Wish Ssh Code Reviewwish-ssh-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.101installs60Urlsession Code Reviewurlsession-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.98installs61Elixir Code Reviewelixir-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.96installs62Reference Docsreference-docs is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.94installs63Review Ai Writingreview-ai-writing is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.88installs64Elixir Security Reviewelixir-security-review is a Claude Code skill for security. It helps solo builders move faster with AI-assisted development.87installs65Elixir Performance Reviewelixir-performance-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.85installs66Elixir Writing Docselixir-writing-docs is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.81installs67Go Architectgo-architect is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.78installs68Elixir Docs Reviewelixir-docs-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.74installs69Go Middlewarego-middleware is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.74installs70Liveview Code Reviewliveview-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.74installs71Exunit Code Reviewexunit-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.72installs72Go Web Expertgo-web-expert is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.72installs73Exdoc Configexdoc-config is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.71installs74Go Concurrency Webgo-concurrency-web is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.71installs75Go Data Persistencego-data-persistence is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.71installs76Phoenix Code Reviewphoenix-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.71installs77Rust Code Reviewrust-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.71installs78Humanize Beaglehumanize-beagle is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.70installs79Tokio Async Code Reviewtokio-async-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.66installs80Sqlx Code Reviewsqlx-code-review is a Claude Code skill for databases. It helps solo builders move faster with AI-assisted development.65installs81Rust Testing Code Reviewrust-testing-code-review is a Claude Code skill for testing & qa. It helps solo builders move faster with AI-assisted development.64installs82Axum Code Reviewaxum-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.63installs83Review Llm Artifactsreview-llm-artifacts is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.59installs84Review Planreview-plan is a Claude Code skill for productivity & planning. It helps solo builders move faster with AI-assisted development.59installs85Review Pythonreview-python is a Claude Code skill for python. It helps solo builders move faster with AI-assisted development.58installs86Rust Best Practicesrust-best-practices is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.57installs87Review Rustreview-rust is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.56installs88Rust Project Setuprust-project-setup is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.56installs89Serde Code Reviewserde-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.56installs90Fetch Pr Feedbackfetch-pr-feedback is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.55installs91Draft Docsdraft-docs is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.54installs92Ios Animation Designios-animation-design is a Claude Code skill for design & ui/ux. It helps solo builders move faster with AI-assisted development.54installs93Prompt Improverprompt-improver is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.53installs94Skill Builderskill-builder is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.53installs95Ffi Code Reviewffi-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.52installs96Gen Test Plangen-test-plan is a Claude Code skill for testing & qa. It helps solo builders move faster with AI-assisted development.52installs97Brainstorm Beaglebrainstorm-beagle is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.51installs98Review Frontendreview-frontend is a Claude Code skill for frontend development. It helps solo builders move faster with AI-assisted development.51installs99Commit Pushcommit-push is a Claude Code skill for git & pull requests. It helps solo builders move faster with AI-assisted development.50installs100Run Test Planrun-test-plan is a Claude Code skill for testing & qa. It helps solo builders move faster with AI-assisted development.50installs101Create Prcreate-pr is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.49installs102Fix Llm Artifactsfix-llm-artifacts is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.49installs103Gen Release Notesgen-release-notes is a Claude Code skill for productivity & planning. It helps solo builders move faster with AI-assisted development.49installs104Improve Docimprove-doc is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.49installs105Ensure Docsensure-docs is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.48installs106Review Goreview-go is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.48installs107Review Iosreview-ios is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.48installs108Review Tuireview-tui is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.48installs109Ios Animation Implementationios-animation-implementation is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.47installs110Respond Pr Feedbackrespond-pr-feedback is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.47installs111Review Elixirreview-elixir is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.47installs112Ios Animation Code Reviewios-animation-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.46installs113Macros Code Reviewmacros-code-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.46installs114Strategy Interviewstrategy-interview is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.45installs115Strategy Reviewstrategy-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.45installs116Write Adrwrite-adr is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.44installs117Web Researchweb-research is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.41installs118Artifact Analysisartifact-analysis is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.35installs119Resolve Beagleresolve-beagle is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.35installs120Prfaq Beagleprfaq-beagle is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.34installs121Write Planwrite-plan is a Claude Code skill for productivity & planning. It helps solo builders move faster with AI-assisted development.34installs122Verify Llm Artifactsverify-llm-artifacts is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.33installs123Subagent Promptsubagent-prompt is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.31installs124Remix V2 Data Flow Reviewremix-v2-data-flow-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.29installs125Remix V2 Data Flowremix-v2-data-flow is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.28installs126Remix V2 Error Boundaries Reviewremix-v2-error-boundaries-review is a Claude Code skill in the AI & Agent Building category.28installs127Remix V2 Formsremix-v2-forms is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.28installs128Remix V2 Forms Reviewremix-v2-forms-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.28installs129Remix V2 Meta Sessions Reviewremix-v2-meta-sessions-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.28installs130Remix V2 Meta Sessionsremix-v2-meta-sessions is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.27installs131Remix V2 Perf Ssrremix-v2-perf-ssr is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.27installs132Remix V2 Perf Ssr Reviewremix-v2-perf-ssr-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.27installs133Remix V2 Routingremix-v2-routing is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.27installs134Remix V2 Routing Reviewremix-v2-routing-review is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.27installs135Review Remix V2review-remix-v2 is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.27installs136Review Structurereview-structure is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.27installs137Review Skillreview-skill is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.25installs