Labsco

Agent Skills

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

github logo

create-spring-boot-kotlin-project

36,200

by github

Generate a Spring Boot Kotlin project skeleton with pre-configured databases and development services. Downloads a Spring Boot 3.4.5 project template with Kotlin, WebFlux, R2DBC, Redis, and MongoDB dependencies via Spring Initializr Includes Docker Compose configuration for PostgreSQL 17, Redis 6, and MongoDB 8 with pre-set credentials and volume mounts Adds SpringDoc OpenAPI integration for Swagger UI documentation and ArchUnit for architecture testing Requires Java 21, Docker, and Docker...

🔥🔥🔥✓ VerifiedFreeAdvanced setup
github logo

create-technical-spike

36,200

by github

Time-boxed technical spike documents for researching critical development decisions before implementation. Generates structured markdown spike files with clear objectives, research questions, investigation plans, and decision frameworks Supports six spike categories: API Integration, Architecture & Design, Performance & Scalability, Platform & Infrastructure, Security & Compliance, and User Experience Includes built-in checklists for research tasks, success criteria, findings documentation,...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

create-tldr-page

36,200

by github

Create concise, example-driven tldr pages from documentation URLs and command names. Requires both a command name and authoritative documentation URL; provides guidance if either is missing Extracts 5–8 most common use cases ordered by frequency, following strict tldr-pages project formatting standards Uses {{placeholder}} syntax for options, arguments, and user-provided values with specific conventions for flags, options with arguments, and subcommands Validates documentation sources and...

🔥🔥✓ VerifiedFreeQuick setup
github logo

creating-oracle-to-postgres-migration-integration-tests

36,200

by github

Creates integration test cases for .NET data access artifacts during Oracle-to-PostgreSQL database migrations. Generates DB-agnostic xUnit tests with…

🔥🔥🔥✓ VerifiedFreeAdvanced setup
github logo

csharp-async

36,200

by github

Best practices guide for C# asynchronous programming patterns and pitfalls. Covers naming conventions (Async suffix), return types (Task, ValueTask, avoid void), and exception handling strategies including ConfigureAwait and Task.FromException Highlights performance optimization techniques: Task.WhenAll for parallel execution, Task.WhenAny for timeouts, and cancellation token usage Documents critical pitfalls to avoid: blocking calls like .Wait() and .Result, async void methods outside event...

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

csharp-docs

36,200

by github

XML documentation standards and patterns for C# public APIs and members. Use <summary> for one-sentence descriptions starting with a present-tense verb, and <remarks> for implementation details, usage notes, or additional context Employ specific tags for different member types: <param> and <returns> for methods, <value> for properties, <typeparam> for generics, and <exception cref> for thrown exceptions Follow prescribed wording patterns for Boolean parameters and return values, enum...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

csharp-mstest

36,200

by github

Modern unit testing with MSTest 3.x/4.x using current APIs and best practices. Covers test class structure, lifecycle management, and the AAA (Arrange-Act-Assert) pattern with sealed classes and constructor-based initialization Provides comprehensive assertion APIs including equality, null checks, exception testing (Throws/ThrowsExactly), collections, strings, comparisons, and type assertions Supports data-driven tests via DataRow and DynamicData with ValueTuple and TestDataRow for type...

🔥🔥🔥✓ VerifiedFreeAdvanced setup
github logo

csharp-nunit

36,200

by github

NUnit best practices for standard and data-driven unit testing in .NET projects. Organize tests with [TestFixture] classes matching production code, using [Test] methods named MethodName_Scenario_ExpectedBehavior and following Arrange-Act-Assert structure Data-driven testing via [TestCase] , [TestCaseSource] , [Values] , [Range] , and [Combinatorial] attributes for inline, programmatic, and parameterized test generation Use Assert.That with constraint model ( Is.EqualTo , Contains.Item ) and...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

datanalysis-credit-risk

36,200

by github

Credit risk data cleaning and variable screening pipeline for pre-loan modeling. Executes 11 independent steps covering data loading, abnormal period filtering, missing rate analysis, low-IV and high-PSI variable removal, null importance denoising, and correlation-based feature elimination Supports organization-level analysis with separate modeling and out-of-sample (OOS) sample handling, plus multi-process acceleration for IV and PSI calculations Generates comprehensive Excel report with 15...

🔥🔥🔥✓ VerifiedPaid serviceNeeds API keys
github logo

dataverse-python-advanced-patterns

36,200

by github

Production-ready Dataverse SDK patterns with error handling, batch operations, and optimization techniques. Demonstrates exponential backoff retry logic for transient errors, batch CRUD operations with error recovery, and OData query optimization using filters, selects, expands, and paging with correct logical names Covers table metadata creation and inspection, custom column definitions with IntEnum option sets, and cache flushing strategies when schema changes Includes configuration best...

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

dataverse-python-production-code

36,200

by github

Generate production-ready Python code for Dataverse SDK with error handling and best practices. Implements comprehensive error handling using DataverseError hierarchy with retry logic and exponential backoff for transient failures Enforces singleton client pattern for connection management and includes structured logging for audit trails and debugging Applies OData optimization techniques: server-side filtering, column selection, and pagination to reduce data transfer Provides type hints,...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

dependabot

36,200

by github

Dependabot is GitHub's built-in dependency management tool with three core capabilities:

🔥🔥FreeAdvanced setup
github logo

devops-rollout-plan

36,200

by github

Comprehensive rollout plan generator with preflight checks, phased deployment, verification signals, and rollback procedures. Generates structured plans covering executive summary, prerequisites, preflight validation, step-by-step deployment phases, and post-deployment tasks Includes immediate, short-term, medium-term, and long-term verification signals to confirm deployment success across multiple time windows Provides rollback decision criteria, automated revert procedures, and...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

documentation-writer

36,200

by github

Expert technical writer for Diátaxis-framework documentation creation across tutorials, how-to guides, reference, and explanation formats. Structures documentation into four distinct types: tutorials for learning, how-to guides for problem-solving, reference for technical specifications, and explanations for conceptual understanding Follows a three-step workflow: clarify document type and audience, propose a detailed outline for approval, then generate full markdown content Maintains...

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

dotnet-best-practices

36,200

by github

Validate .NET/C# code against comprehensive best practices for your solution and project. Covers 10+ practice areas including XML documentation, design patterns, dependency injection, async/await, testing standards, and error handling Enforces specific patterns: primary constructors for DI, Command Handler pattern with generics, interface segregation, and Factory pattern for object creation Includes resource management with ResourceManager for localization, structured logging via...

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

dotnet-design-pattern-review

36,200

by github

Comprehensive C#/.NET design pattern analysis with actionable improvement recommendations. Evaluates six core patterns: Command, Factory, Dependency Injection, Repository, Provider, and Resource patterns against GoF and SOLID principles Analyzes architecture compliance including namespace conventions, project separation, async/await patterns, and structured logging implementation Reviews code quality across security, testability, maintainability, and performance dimensions with specific...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

dotnet-timezone

36,200

by github

.NET timezone handling guidance for C# applications. Use when working with TimeZoneInfo, DateTimeOffset, NodaTime, UTC conversion, daylight saving time,…

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

dotnet-upgrade

36,200

by github

Comprehensive prompts for analyzing, planning, and executing .NET framework upgrades across multi-project solutions. Covers the full upgrade lifecycle: project discovery and classification, dependency analysis, framework targeting, code modernization, and breaking change detection Includes 24+ ready-to-use prompts organized into nine categories spanning strategy, CI/CD pipeline updates, testing validation, and version control practices Provides guidance on using .NET Upgrade Assistant,...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

doublecheck

36,200

by github

Three-layer verification pipeline for AI output. Extracts verifiable claims, finds supporting or contradicting sources via web search, runs adversarial review…

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

draw-io-diagram-generator

36,200

by github

Use when creating, editing, or generating draw.io diagram files (.drawio, .drawio.svg, .drawio.png). Covers mxGraph XML authoring, shape libraries, style…

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

drawio

36,200

by github

Generate draw.io diagrams as .drawio files and export to PNG/SVG/PDF with embedded XML

🔥🔥🔥✓ VerifiedFreeNeeds API keys
github logo

editorconfig

36,200

by github

EditorConfig file generator that analyzes projects and creates comprehensive editor configuration based on best practices. Analyzes project structure and file types to infer languages and technologies, then generates targeted configuration rules for each file type Applies universal best practices including UTF-8 charset, LF line endings, trailing whitespace removal, and final newline insertion Respects user preferences (spaces vs. tabs, indentation size) while flagging any conflicts with...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

ef-core

36,200

by github

Entity Framework Core best practices guide covering design, performance, security, and testing patterns. Covers eight core areas: DbContext design, entity modeling, performance optimization, migrations, querying strategies, change tracking, security, and testing approaches Emphasizes practical patterns like DbContextFactory, IEntityTypeConfiguration separation, AsNoTracking() for read-only queries, and compiled queries for frequently executed operations Includes migration best practices such...

🔥🔥🔥🔥✓ VerifiedFreeAdvanced setup
github logo

email-drafter

36,200

by github

Draft and review professional emails that match your personal writing style. Analyzes your sent emails for tone, greeting, structure, and sign-off patterns via…

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

entra-agent-user

36,200

by github

Create Agent Users in Microsoft Entra ID to enable AI agents to act as digital workers with user identity access. Provisions specialized user identities ( idtyp=user tokens) linked to agent identities, allowing agents to access user-only APIs like Exchange mailboxes, Teams, and org charts Requires a parent agent identity created from an agent identity blueprint; supports 1:1 relationship with optional manager assignment and license provisioning Includes step-by-step HTTP and PowerShell...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

eval-driven-dev

36,200

by github

You're building an automated evaluation pipeline that tests a Python-based AI application end-to-end — running it the same way a real user would, with real inputs — then scoring the outputs using evaluators and producing pass/fail results via pixie test .

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

exam-ready

36,200

by github

Activate this skill when a student provides study material (PDF or pasted notes) and a syllabus, and wants to prepare for an exam.

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

excalidraw-diagram-generator

36,200

by github

Generate Excalidraw diagrams from natural language descriptions in multiple formats. Supports nine diagram types: flowcharts, relationship diagrams, mind maps, architecture diagrams, data flow diagrams, swimlane business flows, class diagrams, sequence diagrams, and ER diagrams Outputs valid .excalidraw JSON files that open directly in Excalidraw or the VS Code extension Includes layout guidelines, element count recommendations, and color schemes for consistent visual design Optional...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

fabric-lakehouse

36,200

by github

Microsoft Fabric Lakehouse storage for unified tabular and non-tabular data with Delta Lake, SQL analytics, and fine-grained security. Combines data lake flexibility with data warehouse management through Delta Lake format, ACID transactions, versioning, and SQL endpoints for T-SQL querying Organizes data via schemas (folders under Tables), shortcuts (virtual links to internal/external sources), and materialized views for optimized query performance Supports multiple data formats: Delta...

🔥🔥🔥✓ VerifiedFreeQuick setup
github logo

fedora-linux-triage

36,200

by github

Diagnose and resolve Fedora Linux issues with dnf, systemd, and SELinux guidance. Accepts optional Fedora release version and problem constraints to tailor troubleshooting scope Provides step-by-step triage plans using systemctl, journalctl, and dnf with copy-paste-ready commands Includes verification steps after each remediation and addresses SELinux and firewalld considerations Offers rollback and cleanup procedures to safely undo changes

🔥🔥🔥✓ VerifiedFreeQuick setup
← PrevPage 5 of 50Next →