Browse all

Type: All Skills Tools
tool

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.

cmcgrabby-hue/syndicate-links affiliate-marketing tracking-links url-generation api-tool
skill

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…

bram2w/baserow baserow notification backend frontend
skill

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.

bram2w/baserow django environment-variable configuration settings
skill ★ 8

Multi-step research orchestration and synthesis

Orchestrates multi-step web research by performing searches, concurrent content extraction, and LLM-driven synthesis with inline citations.

n24q02m/wet-mcp research-orchestration web-search llm-synthesis citation-preserving
skill

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 …

cmcgrabby-hue/syndicate-links design-system brand-guidelines affiliate-marketing ui-design
skill ★ 8

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…

n24q02m/wet-mcp dependency-locking version-pinning manifest-detection docs-query
skill ★ 8

Structured Multi-Alternative Comparison

A systematic framework for evaluating multiple alternatives using consistent criteria, a comparison matrix, and evidence-based decision recommendations.

n24q02m/wet-mcp decision-making comparison-matrix evaluation-framework structured-analysis
skill ★ 8

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…

n24q02m/wet-mcp fact-checking claim-validation evidence-search adversarial-search
skill ★ 28

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, …

blackwell-systems/agent-lsp lsp build testing verification
skill ★ 28

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.

blackwell-systems/agent-lsp lsp testing mcp test-automation
tool ★ 28

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 …

blackwell-systems/agent-lsp code-analysis lsp dependency-graph code-mapping
tool ★ 28

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…

blackwell-systems/agent-lsp lsp code-simulation refactoring diagnostics
skill ★ 28

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.

blackwell-systems/agent-lsp lsp code-editing mcp diagnostics
skill ★ 28

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…

blackwell-systems/agent-lsp lsp rename refactoring workspace
skill ★ 28

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.

blackwell-systems/agent-lsp lsp project-onboarding codebase-exploration mcp
skill ★ 28

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…

blackwell-systems/agent-lsp refactoring lsp safe-edit workflow
tool ★ 28

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 …

blackwell-systems/agent-lsp lsp symbol-analysis file-scope code-refactoring
skill ★ 28

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…

blackwell-systems/agent-lsp lsp code-audit static-analysis mcp
skill ★ 28

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…

blackwell-systems/agent-lsp lsp type-system interface refactoring
skill ★ 28

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.

blackwell-systems/agent-lsp lsp code-analysis refactoring impact-analysis
skill ★ 28

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…

blackwell-systems/agent-lsp lsp code-generation automation mcp
skill ★ 28

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…

blackwell-systems/agent-lsp lsp symbol-editing code-manipulation language-server-protocol
skill ★ 28

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…

blackwell-systems/agent-lsp lsp code-analysis symbol-exploration developer-tool
skill ★ 28

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.

blackwell-systems/agent-lsp lsp refactoring code-safety symbol-editing