Conversation
Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add Python-first registry of DSPy Module/Signature skills
Implement Python-first DSPy skills registry with validation, catalog generation, and starter skills
Feb 15, 2026
Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
… evaluation, safety) Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
Co-authored-by: Zochory <60674042+Zochory@users.noreply.github.com>
Copilot
AI
changed the title
Implement Python-first DSPy skills registry with validation, catalog generation, and starter skills
Implement production DSPy skills registry with JSON Schema validation, JSONL evals, and AgenticFleet taxonomy
Feb 15, 2026
Member
|
@junie review |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Builds a curated registry for versioned DSPy Module/Signature skills with strict contracts, safety permissions, and golden evaluations. Enables skill discovery via semantic tags and deterministic catalog generation.
Core Infrastructure
packages/skills_core/- Validation and catalog library:types.py: Pydantic models enforcing JSON Schema contract (SkillMetadata, SafetyLevel, Permissions)loader.py: Auto-discovery fromskill.yamlfiles with validationvalidator.py: JSON Schema + structural validation + DSPy import verificationcatalog.py: Deterministic catalog generation with stable sort orderdspy_contract.py: Reflection utilities for DSPy Module/Signature verificationevals.py: JSONL golden evaluation framework (3 match types: exact, contains, schema-valid)CLI Tools
tools/validate.py- Validates all skills, regeneratescatalog/skills.json, fails if diff detectedtools/new_skill.py- Scaffolds complete skill structure with boilerplatetools/run_eval.py- Runs golden evals in dry-run (format check) or execution modeSchemas
catalog/schema.skill.json- Authoritative JSON Schema forskill.yaml(validates IDs, versions, DSPy paths, permissions, safety)catalog/schema.catalog.json- Schema for generated catalogSkill Contract
Each skill requires:
AgenticFleet Tag Taxonomy
6 categories for semantic routing:
reasoning,planning,decision,decomposition,reflectionmemory,retrieval,knowledge,embeddingorchestration,tool_use,workflow,routingtransform,summarization,extraction,classificationsafety,validation,moderationagent,skill,planner,metaSafety Framework
Three-tier classification with explicit permissions:
Golden Evaluations
JSONL format with three match types:
{"name": "test1", "input": {...}, "expected": {...}, "match": "exact_match"} {"name": "test2", "input": {...}, "expected": {...}, "match": "contains"} {"name": "test3", "input": {...}, "expected": {"type": "object", ...}, "match": "json_schema_valid"}Usage
Documentation
docs/skill_contract.md: Complete DSPy skill specificationdocs/tagging.md: AgenticFleet taxonomydocs/versioning.md: Semver rules for skillsdocs/evaluation.md: Golden eval frameworkdocs/safety.md: 3-tier safety modelGovernance
Added CODE_OF_CONDUCT, SECURITY, CONTRIBUTING, CHANGELOG, GitHub templates (PR + 3 issue types), CODEOWNERS, .editorconfig, .gitattributes.
Template System
skills/_templates/provides complete boilerplate for rapid skill creation.Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.