code-testing-extensions

Provides file paths to language-specific test guidance files for code-testing pipelines.

1|Updated Jul 27, 2026
One-click install
npx skills add https://github.com/FittyAr/Cardscape --skill code-testing-extensions-fittyar
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: code-testing-extensions
Source: https://github.com/FittyAr/Cardscape/tree/main/.agents/skills/code-testing-extensions
Command: npx skills add https://github.com/FittyAr/Cardscape --skill code-testing-extensions-fittyar

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code-testing agents need language-specific build commands, test frameworks, and error patterns, but that guidance varies widely across ecosystems. This Skill centralizes discovery of per-language extension files so testing pipelines load the right reference material for the target language. ## Core Features & Use Cases - Language Extension Discovery: Returns file paths to guidance files for .NET, Python, TypeScript, PowerShell, C++, Go, Java, Rust, Ruby, Swift, and Kotlin. - End-to-End Examples: Provides concrete pipeline walkthrough files (research, plan, generated tests, fix cycles, final report) for .NET, Python, TypeScript, Go, and Java. - Use Case: A code-testing agent targeting a Java repository calls this Skill, receives the path to java.md and java-examples.md, then reads them to learn Maven/Gradle commands, JUnit 5 detection, and Mockito patterns before writing tests. ## Quick Start Ask the code-testing pipeline to load the extension guidance for your target language, for example request the Go testing extension files before generating tests for a Go project.

Frequently Asked Questions about code-testing-extensions

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get language-specific test guidance for a code-testing pipeline?▼

Call this Skill to receive file paths to per-language extension files such as dotnet.md, python.md, or go.md. Then read the file matching your target language to get build commands, test framework detection rules, and common error patterns.

What languages does the code-testing extension guidance cover?▼

The extension files cover .NET (C#/F#/VB), Python, TypeScript/JavaScript, PowerShell, C++, Go, Java, Rust, Ruby, Swift, and Kotlin. Five languages also include end-to-end example walkthroughs: .NET, Python, TypeScript, Go, and Java.

Can I invoke code-testing-extensions directly as a user?▼

No, this Skill is marked user-invocable: false with model invocation disabled. It is designed to be called internally by code-testing agents and skills that need language-specific reference files.

What is the difference between base extension files and examples files?▼

Base files like java.md contain build commands, framework detection, mocking patterns, and common errors. Examples files like java-examples.md show a concrete pipeline walkthrough including research output, plan, generated tests, fix cycles, and final report.

When should the examples file be read alongside the base extension?▼

Read the examples file whenever one exists for your target language, alongside the base extension. It demonstrates the full testing pipeline end to end, which helps calibrate the structure of research, plans, and generated test output.