Generate CI test matrix for Windows, macOS, and Linux combinations
Generates cross-platform CI/CD test matrices for GitHub Actions, Azure DevOps, and GitLab CI pipelines.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdGenerate CI/CD test matrix configurations for testing desktop applications across Windows, macOS, and Linux.
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"ciPlatform": { "enum": ["github-actions", "azure-devops", "gitlab-ci"] },
"platforms": { "type": "array" },
"architectures": { "type": "array" }
},
"required": ["projectPath"]
}
name: Test Matrix
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x64]
include:
- os: macos-latest
arch: arm64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
architecture: ${{ matrix.arch }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results-${{ matrix.os }}-${{ matrix.arch }}
path: test-results/
playwright-electron-configdesktop-ci-architect agentActivates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.