Labsco

Agent Skills

Instruction packs that give your AI agent know-how. Three different kinds — pick the right one below.

github logo

gtm-0-to-1-launch

36,200

by github

Launch new products from idea to first customers. Use when launching products, finding early adopters, building launch week playbooks, diagnosing why adoption…

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

gtm-ai-gtm

36,200

by github

Go-to-market strategy for AI products. Use when positioning AI products, handling "who is responsible when it breaks" objections, pricing variable-cost AI,…

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

gtm-enterprise-account-planning

36,200

by github

Strategic account planning and execution for enterprise deals. Use when planning complex sales cycles, managing multiple stakeholders, applying MEDDICC…

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

gtm-enterprise-onboarding

36,200

by github

Four-phase framework for onboarding enterprise customers from contract to value realization. Use when implementing new enterprise customers, preventing churn…

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

gtm-positioning-strategy

36,200

by github

Find and own a defensible market position. Use when messaging sounds like competitors, conversion is weak despite awareness, repositioning a product, or…

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

gtm-product-led-growth

36,200

by github

Build self-serve acquisition and expansion motions. Use when deciding PLG vs sales-led, optimizing activation, driving freemium conversion, building growth…

🔥🔥🔥🔥✓ VerifiedAccount requiredQuick setup
github logo

gtm-technical-product-pricing

36,200

by github

Pricing strategy for technical products. Use when choosing usage-based vs seat-based, designing freemium thresholds, structuring enterprise pricing…

🔥🔥🔥🔥✓ VerifiedAccount requiredQuick setup
github logo

image-manipulation-image-magick

36,200

by github

Image processing and manipulation using ImageMagick across Windows, Linux, and macOS. Retrieve image metadata, dimensions, and format information with the identify command Resize single or batch images with aspect ratio control and thumbnail generation Filter and process images based on dimensions or file type criteria Requires ImageMagick installed and available as magick on PATH; includes platform-specific setup for PowerShell (Windows) and Bash (Linux/macOS)

🔥🔥🔥✓ VerifiedFreeNeeds API keys
github logo

import-infrastructure-as-code

36,200

by github

Reverse-engineer live Azure infrastructure into Terraform code using Azure Verified Modules. Discovers Azure resources across subscription, resource group, or specific resource ID scopes using Azure CLI, then maps dependencies and generates AVM-based Terraform configuration Requires reading each AVM module's README before code generation to identify required inputs, child resource ownership, and exact variable names that differ from raw azurerm_* provider arguments Generates import blocks by...

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

integrate-context-matic

36,200

by github

Discovers and integrates third-party APIs using the context-matic MCP server. Uses `fetch_api` to find available API SDKs, `ask` for integration guidance,…

🔥🔥🔥✓ VerifiedFreeAdvanced setup
github logo

java-add-graalvm-native-image-support

36,200

by github

Automate GraalVM native image configuration, build, and error resolution for Java applications. Detects project structure (Maven/Gradle) and framework (Spring Boot, Quarkus, Micronaut) to apply framework-specific native image setup Adds GraalVM Native Build Tools plugins with appropriate configuration profiles and iteratively resolves build errors Handles common native image issues including reflection, resource access, JNI, and dynamic proxy configuration through generated metadata files...

🔥🔥🔥🔥✓ VerifiedFreeAdvanced setup
github logo

java-docs

36,200

by github

Javadoc best practices for documenting Java types, methods, and members. Public and protected members require Javadoc comments; package-private and private members are encouraged, especially for complex code Use standard tags: @param for parameters, @return for return values, @throws for exceptions, @see for cross-references, and @since for version tracking First sentence serves as summary description and should end with a period; parameter descriptions start lowercase without periods Use...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

java-junit

36,200

by github

JUnit 5 best practices for standard and data-driven unit testing with practical patterns. Covers test structure using Arrange-Act-Assert pattern, lifecycle annotations ( @BeforeEach , @AfterEach , @BeforeAll , @AfterAll ), and naming conventions with @DisplayName Parameterized testing via @ParameterizedTest with multiple sources: @ValueSource , @MethodSource , @CsvSource , @CsvFileSource , and @EnumSource Assertion strategies including static Assertions methods, AssertJ fluent syntax,...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

java-mcp-server-generator

36,200

by github

Generate production-ready MCP servers in Java with the official SDK, Maven or Gradle, and reactive streams. Scaffolds complete project structure with tools, resources, and prompts organized into separate handler classes Includes Maven and Gradle templates with MCP SDK, SLF4J logging, Project Reactor, and JUnit 5 dependencies Provides ready-to-use handler templates for tools, resources, and prompts with error handling and async Mono-based responses Generates test suite examples and Claude...

🔥🔥🔥🔥✓ VerifiedFreeAdvanced setup
github logo

java-refactoring-extract-method

36,200

by github

Java method extraction refactoring for improved readability and maintainability. Identifies methods exceeding complexity thresholds (LOC > 15, statements > 10, cyclomatic complexity > 10) and extracts logical code blocks into focused helper methods Produces fully compilable Java 17 code with descriptive method names and single-line documentation comments Preserves all original functionality while reducing cognitive load and improving testability through smaller, single-responsibility methods

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

java-springboot

36,200

by github

Comprehensive best practices guide for building production-ready Spring Boot applications. Covers project structure, dependency injection patterns, and configuration management including externalized config, type-safe properties, and environment profiles Details web layer design with RESTful APIs, DTOs, validation, and global exception handling Addresses service layer statelessness, transaction management, and data access patterns using Spring Data JPA with custom queries and projections...

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

javascript-typescript-jest

36,200

by github

Jest testing best practices for JavaScript and TypeScript projects with mocking, async handling, and React patterns. Organize tests with descriptive names in nested describe blocks, using .test.ts / .test.js files placed alongside source code or in __tests__ directories Mock external dependencies with jest.mock() , jest.spyOn() , and mockImplementation() , resetting between tests to prevent state leakage Handle async code with promises, async/await , and resolves / rejects matchers; set...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

javax-to-jakarta-migration

36,200

by github

Migrate Java code from javax.* to jakarta.* namespace. Use when upgrading to Tomcat 11, Jakarta EE 10, or when javax imports are detected in the codebase.

🔥🔥🔥✓ VerifiedFreeAdvanced setup
github logo

kotlin-mcp-server-generator

36,200

by github

Generate production-ready Kotlin MCP server projects with Gradle, official SDK, and typed tools. Scaffolds complete project structure with build.gradle.kts, package layout, and MCP server configuration using io.modelcontextprotocol:kotlin-sdk Includes 2–3 sample tools with JSON schema definitions, typed inputs/outputs, and error handling patterns Provides coroutine-based server setup with stdio transport, environment variable configuration, and kotlin-logging integration Includes test...

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

kotlin-springboot

36,200

by github

Spring Boot development patterns and idioms tailored for Kotlin applications. Use primary constructors for dependency injection, data class for DTOs, and the kotlin-jpa plugin to automatically open entity classes without boilerplate. Organize code by feature/domain rather than layer; leverage Kotlin's null-safety to clearly define optional vs. required entity fields. Apply @ConfigurationProperties with data class for type-safe, immutable configuration; use application.yml and Spring Profiles...

🔥🔥🔥🔥✓ VerifiedFreeAdvanced setup
github logo

mcp-security-audit

36,200

by github

Audit MCP server configurations for security issues — secrets exposure, shell injection, unpinned dependencies, and unapproved servers.

🔥🔥🔥🔥✓ VerifiedAccount requiredNeeds API keys
github logo

linkedin-post-formatter

36,200

by github

Format and draft compelling LinkedIn posts using Unicode bold/italic styling, visual separators, structured sections, and engagement-optimized patterns. USE…

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

md-to-docx

36,200

by github

Convert Markdown files to professionally formatted Word (.docx) documents with embedded PNG images — pure JavaScript, no external tools required

🔥🔥🔥✓ VerifiedFreeNeeds API keys
github logo

legacy-circuit-mockups

36,200

by github

HTML5 Canvas breadboard circuit mockups for retro computing and vintage electronics projects. Supports 40+ components including W65C02S microprocessors, 555 timers, 28C256 EEPROMs, W65C22 VIAs, 7400-series logic gates, and passive components like LEDs, resistors, and capacitors Renders circuits on a 20px grid system with component rotation, wire color coding, and pinout reference tables for accurate layout visualization Includes step-by-step workflows for common builds: LED circuits, 555...

🔥🔥✓ VerifiedFreeAdvanced setup
github logo

make-repo-contribution

36,200

by github

Enforce repository contribution guidelines before creating issues, branches, commits, or pull requests. Searches repository documentation (README, CONTRIBUTING.md, templates) to identify required contribution workflows, branch naming conventions, and commit message formats Applies security boundaries that prevent executing arbitrary commands, accessing files outside the repository, making network requests, or including secrets in contributions Treats issue and PR templates as formatting...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

markdown-to-html

36,200

by github

Convert Markdown documents to HTML using marked.js, pandoc, gomarkdown, or static site generators. Supports multiple conversion tools: marked.js for Node.js/CLI workflows, pandoc for cross-format conversion, gomarkdown for Go projects, and Jekyll/Hugo for static site generation Handles all standard Markdown flavors including CommonMark, GitHub Flavored Markdown, and extended syntax for tables, code blocks, math expressions, and collapsed sections Provides CLI and programmatic workflows for...

🔥🔥🔥✓ VerifiedFreeNeeds API keys
github logo

mcp-cli

36,200

by github

Command-line interface for discovering and executing MCP server tools and external integrations. Five core commands cover server discovery, tool exploration, schema inspection, execution, and grep-based searching across all available tools Supports JSON input/output for scripting, raw text extraction, and description flags for verbose tool documentation Handles complex JSON arguments via heredoc, stdin piping, or file input to accommodate special characters and multi-line payloads...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

mcp-copilot-studio-server-generator

36,200

by github

Generate complete MCP server implementations optimized for Copilot Studio with Power Platform connector standards. Produces all required files (apiDefinition.swagger.json, apiProperties.json, script.csx, and MCP server code) following Power Platform connector structure with x-ms-agentic-protocol: mcp-streamable-1.0 support Enforces Copilot Studio schema constraints: no reference types, single-type fields only, primitive types, and full URI endpoints to ensure compatibility Generates JSON-RPC...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

mcp-create-adaptive-cards

36,200

by github

Adaptive Card response templates for MCP-based API plugins in Microsoft 365 Copilot. Supports static templates for consistent data formats, dynamic templates for multiple item types, and combined approaches with fallback defaults Includes JSONPath-based data mapping, conditional rendering, number formatting, and responsive single-column layouts optimized for Teams, Word, and PowerPoint Provides card elements like TextBlock, FactSet, Image, Container, ColumnSet, and actions with template...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

mcp-create-declarative-agent

36,200

by github

Scaffold a declarative agent for Microsoft 365 Copilot integrated with an MCP server. Generates complete project structure including manifest.json, declarativeAgent.json, and ai-plugin.json with tool definitions auto-imported from MCP servers Supports OAuth 2.0 and SSO authentication with environment variable configuration and secure credential storage Provides response semantics mapping to extract and format API response data for Copilot consumption Includes MCP server integration workflow...

🔥🔥🔥✓ VerifiedFreeAdvanced setup
← PrevPage 7 of 74Next →