skills-system-validation

Validate RemcoChat skills system discovery, activation, and resource reads.

Updated Jan 13, 2026
One-click install
npx skills add https://github.com/kaalabs/remcochat --skill skills-system-validation
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skills-system-validation
Source: https://github.com/kaalabs/remcochat/tree/main/.skills/skills-system-validation
Command: npx skills add https://github.com/kaalabs/remcochat --skill skills-system-validation

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) and assets (resource) components.

What problem does it solve?

This Skill acts as a conformance fixture for RemcoChat's skills system, enabling reliable discovery, activation, and resource reads during tests and documentation.

Core Features & Use Cases

  • Discovery fixture: ensures SKILL.md files are detected and parsed with correct frontmatter.
  • Activation & resource access: validates that skills can load via the skills.activate tool and read resources via skills.readResource from references/ and assets/.
  • Deterministic tasks: provides a script (scripts/echo.sh) that outputs a known marker, enabling end-to-end test verifications.

Quick Start

Activate the fixture and verify the workflow by reading references/REFERENCE.md and assets/fixture.json, then run scripts/echo.sh to confirm the deterministic output.

Frequently Asked Questions about skills-system-validation

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

FAQPage Schema
How do I validate that a skills system correctly parses SKILL.md frontmatter?

Validating skills system frontmatter parsing requires a conformance fixture that triggers discovery and checks if SKILL.md metadata is detected and read accurately. This skill provides that fixture by verifying frontmatter detection and resource access paths end-to-end.

How do I test deterministic script execution within a local skills environment?

Testing deterministic script execution involves running a known shell script and matching its output marker. This skill includes scripts/echo.sh, which requires only standard Bash and local filesystem access to produce a predictable, verifiable output for end-to-end test confirmation.

Do I need external dependencies to validate local filesystem skill activation?

Validating local filesystem skill activation requires no external network calls or dependencies. This skill operates entirely with standard Bash and local filesystem access to verify that skills can load and read resources from references and assets directories.

How does a skills system access references and assets during activation?

Skills systems access references and assets through dedicated resource read paths. This skill validates that activated skills can successfully load and read files via skills.readResource from both the references/ and assets/ directories without external dependencies.

What is the best way to run end-to-end conformance tests for a skills system?

Running end-to-end conformance tests for a skills system requires activating a fixture, reading resource files, and executing a deterministic script. This skill provides a complete workflow to verify discovery, activation, and resource reads produce known expected outputs.

Why does my skills activation fixture fail to read local resources?

Skills activation fixtures fail to read local resources when the resource read paths are misconfigured or the filesystem lacks proper directory access. This skill verifies the correct loading of references and assets to isolate and identify such discovery or access failures.