Browse all
Generate trackable affiliate links for promotions
This tool generates fully trackable affiliate links by accepting program and product identifiers. It returns a short code and multiple URLs, ensuring that clicks and conversions are correctly attributed to the publisher.
Creating Baserow In-App Notification Patterns
This skill guides the implementation of robust in-app notifications within Baserow, covering both backend and frontend requirements. It details necessary patterns for notification lifecycle management, including target definition, event han…
Propagate New Django Environment Variable Settings
This skill guides the systematic addition of new environment variables for Django settings. It ensures consistent propagation across the codebase, updating settings files, Docker configurations, frontend remaps, and documentation.
Multi-step research orchestration and synthesis
Orchestrates multi-step web research by performing searches, concurrent content extraction, and LLM-driven synthesis with inline citations.
Syndicate Links Brand Design System
This skill provides a comprehensive design system and brand guidelines for building the Syndicate Links affiliate infrastructure. It enforces specific visual tokens, typography rules, and component recipes across marketing, dashboards, and …
Pin project dependencies for accurate docs search
This skill detects a project's manifest (e.g., pyproject.toml, package.json) and pins all declared dependencies. It ensures that subsequent documentation queries automatically resolve and surface results for the exact locked versions, preve…
Structured Multi-Alternative Comparison
A systematic framework for evaluating multiple alternatives using consistent criteria, a comparison matrix, and evidence-based decision recommendations.
Adversarial fact-checking and claim verification
This skill verifies factual claims by executing an adversarial search, mandating the retrieval and assessment of both supporting and contradicting evidence. It structures the final verdict based on source quality tiers and consensus among r…
Three-layer code verification and quality assurance
This skill performs comprehensive code verification by running LSP diagnostics, compiling the project, and executing the test suite in parallel. It provides a structured report detailing blocking issues, including test failure correlation, …
Identify and run correlated tests
Identify and execute only the specific tests that cover a modified source file to accelerate the feedback loop. It uses LSP capabilities to map source files to their corresponding test files and functions.
Codebase Understanding and Dependency Mapping
This tool generates a comprehensive Code Map by analyzing an entire file or module, synthesizing cross-symbol relationships, call hierarchies (up to two levels), and references. It provides a holistic view of a codebase's structure, moving …
LSP-based tool for simulating code edits in memory
This tool simulates code changes using the Language Server Protocol (LSP) in an in-memory overlay, allowing developers to test refactors and edits safely. It provides full session management, enabling multi-step edits and diagnostic evaluat…
Safe Code Editing with LSP Diagnostics
This skill wraps code edits with a before-and-after diagnostic comparison to ensure changes do not introduce new errors. It utilises speculative in-memory previews and surfaces available code actions to resolve any introduced regressions.
Safe, two-phase workspace symbol renaming
This skill performs safe, workspace-wide symbol renaming by first previewing all affected locations and changes using Language Server Protocol calls. It requires explicit user confirmation before executing the atomic edit, ensuring develope…
Automated Project Onboarding via LSP
Automates the initial exploration of a new codebase by using LSP tools to detect languages, build systems, entry points, and architectural patterns, producing a structured project profile for the agent.
End-to-end safe code refactoring workflow
This skill automates a comprehensive, safe refactoring workflow by coordinating blast-radius analysis, speculative preview, disk application, build verification, and targeted test execution. It ensures changes are validated end-to-end, mini…
File-scoped symbol analysis using LSP capabilities
This tool provides fast, file-local analysis of symbols, allowing developers to list all definitions, find all usages, and inspect type signatures within the current file without requiring a full workspace search. It leverages the language …
Automated Code Quality Audit Skill
Performs deep code quality audits on files, packages, or directories by combining LSP-based batch analysis with LLM-driven heuristic checks. It identifies issues such as dead symbols, error wrapping gaps, and concurrency safety risks across…
Finds all concrete implementations of interfaces and types
This skill identifies all concrete types that implement a given interface or extend an abstract type, providing a comprehensive view of the implementation surface. It is crucial for assessing the impact of API changes, such as modifying met…
LSP Symbol and File Impact Analysis
Performs blast-radius analysis for symbols or files by identifying callers, type hierarchies, and reference counts. It helps developers assess the impact of refactoring, deleting, or modifying code signatures.
Automated Code Generation via Language Server
Automates the creation of new code elements such as interface stubs, test skeletons, and missing method implementations using language server protocols. It identifies available code actions at specific file positions and executes them to st…
Edit named symbols via LSP
This skill enables the modification of functions, types, or variables by name without requiring exact file paths or coordinates. It leverages symbol resolution to identify definitions and applies edits using either direct body replacement o…
Comprehensive LSP Symbol Exploration and Analysis
This skill provides comprehensive code understanding by gathering type information, call hierarchy, implementations, and all reference sites for a given symbol path in a single pass. It leverages the Language Server Protocol (LSP) to genera…
Safe workflow for editing exported symbols
This skill provides a robust, multi-step workflow for safely refactoring exported symbols across a codebase. It ensures all callers are discovered and updated before applying changes, preventing silent compilation failures.