# agent-skills-integration > Provider wrapper mapping and integration. Keywords: skills, integration, providers. - Author: willyu1007 - Repository: willyu1007/AI_First_Template - Version: 20251224182030 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-07 - Source: https://github.com/willyu1007/AI_First_Template - Web: https://mule.run/skillshub/@@willyu1007/AI_First_Template~agent-skills-integration:20251224182030 --- --- name: agent-skills-integration description: "Provider wrapper mapping and integration. Keywords: skills, integration, providers." --- # Agent Skills Integration (Skill Discovery) This repository supports multiple LLM providers by shipping provider-specific skill entrypoints that are generated from a single SSOT. --- ## Goals - Keep a single source of truth for skills: `/.system/skills/ssot/**` - Generate thin provider wrappers under `/.codex/skills/**` and `/.claude/skills/**` - Rely on provider-native skill discovery (primarily `description`) - Keep maintenance deterministic via a single generator + CI check --- ## Discovery model **SSOT (authoritative):** ```text /.system/skills/ssot/**//SKILL.md ``` **Provider wrappers (generated):** ```text /.codex/skills//SKILL.md /.claude/skills//SKILL.md ``` Wrappers exist only to expose `name`/`description` and to redirect the model to the SSOT entrypoint. --- ## Generation and validation Generate wrappers: ```bash python scripts/devops/skills/sync_skills.py --regenerate --target repo --publish-set repo_minimal python scripts/devops/skills/sync_skills.py --regenerate --target integration --publish-set integration_default ``` Validate wrappers match SSOT: ```bash python scripts/devops/skills/sync_skills.py --check --target repo --publish-set repo_minimal python scripts/devops/skills/sync_skills.py --check --target integration --publish-set integration_default ``` CI runs the `--check` mode. --- ## Mapping examples | Provider wrapper | SSOT entrypoint | |---|---| | `/.codex/skills/backend-dev-guidelines/SKILL.md` | `/.system/skills/ssot/backend/backend-dev-guidelines/SKILL.md` | | `/.codex/skills/frontend-dev-guidelines/SKILL.md` | `/.system/skills/ssot/frontend/frontend-dev-guidelines/SKILL.md` | | `/.codex/skills/execution-plan-authoring/SKILL.md` | `/.system/skills/ssot/repo/execution-plans/execution-plan-authoring/SKILL.md` | | `/.claude/skills/route-testing-patterns/SKILL.md` | `/.system/skills/ssot/repo/route-tester/route-testing-patterns/SKILL.md` | | `/.claude/skills/error-tracking-patterns/SKILL.md` | `/.system/skills/ssot/repo/error-tracking/error-tracking-patterns/SKILL.md` |