@synapta/skills 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +11 -4
- package/package.json +3 -4
- package/skills/ATTRIBUTION.md +80 -0
- package/skills/accessibility-audit/SKILL.md +325 -0
- package/skills/accessibility-audit/reference/wcag-checklist.md +103 -0
- package/skills/apns-notifier/SKILL.md +86 -0
- package/skills/approval-policy-enforcer/SKILL.md +66 -0
- package/skills/apps-sdk-builder/LICENSE.txt +201 -0
- package/skills/apps-sdk-builder/SKILL.md +328 -0
- package/skills/apps-sdk-builder/agents/openai.yaml +13 -0
- package/skills/apps-sdk-builder/references/app-archetypes.md +132 -0
- package/skills/apps-sdk-builder/references/apps-sdk-docs-workflow.md +135 -0
- package/skills/apps-sdk-builder/references/interactive-state-sync-patterns.md +113 -0
- package/skills/apps-sdk-builder/references/repo-contract-and-validation.md +93 -0
- package/skills/apps-sdk-builder/references/search-fetch-standard.md +67 -0
- package/skills/apps-sdk-builder/references/upstream-example-workflow.md +79 -0
- package/skills/apps-sdk-builder/references/window-openai-patterns.md +79 -0
- package/skills/apps-sdk-builder/scripts/scaffold_node_ext_apps.mjs +606 -0
- package/skills/architecture-selector/SKILL.md +64 -0
- package/skills/backlog-planner/SKILL.md +68 -0
- package/skills/carplay-entitlement-checker/SKILL.md +82 -0
- package/skills/concept-deepener/SKILL.md +86 -0
- package/skills/concept-discovery/SKILL.md +517 -0
- package/skills/concept-discovery/assets/sample-analysis.json +81 -0
- package/skills/concept-discovery/expected_outputs/sample-enum-dictionary.md +25 -0
- package/skills/concept-discovery/expected_outputs/sample-page-user-list.md +83 -0
- package/skills/concept-discovery/expected_outputs/sample-prd-readme.md +43 -0
- package/skills/concept-discovery/references/framework-patterns.md +228 -0
- package/skills/concept-discovery/references/prd-quality-checklist.md +65 -0
- package/skills/concept-discovery/scripts/codebase_analyzer.py +732 -0
- package/skills/concept-discovery/scripts/prd_scaffolder.py +435 -0
- package/skills/dast-zap/SKILL.md +453 -0
- package/skills/dast-zap/assets/.gitkeep +9 -0
- package/skills/dast-zap/assets/github_action.yml +207 -0
- package/skills/dast-zap/assets/gitlab_ci.yml +226 -0
- package/skills/dast-zap/assets/zap_automation.yaml +196 -0
- package/skills/dast-zap/assets/zap_context.xml +192 -0
- package/skills/dast-zap/references/EXAMPLE.md +40 -0
- package/skills/dast-zap/references/api_testing_guide.md +475 -0
- package/skills/dast-zap/references/authentication_guide.md +431 -0
- package/skills/dast-zap/references/false_positive_handling.md +427 -0
- package/skills/dast-zap/references/owasp_mapping.md +255 -0
- package/skills/dep-sbom-scan/SKILL.md +466 -0
- package/skills/deploy-cloudflare/SKILL.md +930 -0
- package/skills/deploy-docker/SKILL.md +55 -0
- package/skills/deploy-fly/SKILL.md +228 -0
- package/skills/deploy-k8s/SKILL.md +108 -0
- package/skills/deploy-k8s/assets/logo.png +0 -0
- package/skills/deploy-k8s/docs/README.md +29 -0
- package/skills/deploy-k8s/docs/SUMMARY.md +56 -0
- package/skills/deploy-k8s/docs/advanced/token-efficiency.md +61 -0
- package/skills/deploy-k8s/docs/architecture/multi-tenancy.md +96 -0
- package/skills/deploy-k8s/docs/architecture/storage-and-state.md +102 -0
- package/skills/deploy-k8s/docs/architecture/workload-patterns.md +87 -0
- package/skills/deploy-k8s/docs/book.json +16 -0
- package/skills/deploy-k8s/docs/community/changelog.md +34 -0
- package/skills/deploy-k8s/docs/community/contributing.md +67 -0
- package/skills/deploy-k8s/docs/core-concepts/failure-modes.md +153 -0
- package/skills/deploy-k8s/docs/core-concepts/philosophy.md +83 -0
- package/skills/deploy-k8s/docs/core-concepts/workflow.md +124 -0
- package/skills/deploy-k8s/docs/examples/bad-patterns.md +47 -0
- package/skills/deploy-k8s/docs/examples/do-dont-checklist.md +37 -0
- package/skills/deploy-k8s/docs/examples/good-patterns.md +49 -0
- package/skills/deploy-k8s/docs/failure-modes/api-drift.md +104 -0
- package/skills/deploy-k8s/docs/failure-modes/fragile-rollouts.md +99 -0
- package/skills/deploy-k8s/docs/failure-modes/insecure-workload-defaults.md +80 -0
- package/skills/deploy-k8s/docs/failure-modes/network-exposure.md +98 -0
- package/skills/deploy-k8s/docs/failure-modes/privilege-sprawl.md +91 -0
- package/skills/deploy-k8s/docs/failure-modes/resource-starvation.md +85 -0
- package/skills/deploy-k8s/docs/getting-started/installation.md +152 -0
- package/skills/deploy-k8s/docs/getting-started/quick-start.md +115 -0
- package/skills/deploy-k8s/docs/guides/helm-patterns.md +71 -0
- package/skills/deploy-k8s/docs/guides/kustomize-patterns.md +65 -0
- package/skills/deploy-k8s/docs/guides/observability.md +67 -0
- package/skills/deploy-k8s/docs/guides/security-hardening.md +59 -0
- package/skills/deploy-k8s/docs/guides/validation-and-policy.md +66 -0
- package/skills/deploy-k8s/docs/integrations/mcp-integration.md +52 -0
- package/skills/deploy-k8s/docs/package-lock.json +2892 -0
- package/skills/deploy-k8s/docs/package.json +13 -0
- package/skills/deploy-k8s/references/api-drift.md +298 -0
- package/skills/deploy-k8s/references/conditional/aks-patterns.md +70 -0
- package/skills/deploy-k8s/references/conditional/eks-patterns.md +79 -0
- package/skills/deploy-k8s/references/conditional/gitops-controllers.md +71 -0
- package/skills/deploy-k8s/references/conditional/gke-patterns.md +74 -0
- package/skills/deploy-k8s/references/conditional/observability-stacks.md +80 -0
- package/skills/deploy-k8s/references/conditional/openshift-patterns.md +67 -0
- package/skills/deploy-k8s/references/daemonset-operator-patterns.md +155 -0
- package/skills/deploy-k8s/references/deployment-patterns.md +146 -0
- package/skills/deploy-k8s/references/do-dont-patterns.md +87 -0
- package/skills/deploy-k8s/references/examples-bad.md +282 -0
- package/skills/deploy-k8s/references/examples-good.md +440 -0
- package/skills/deploy-k8s/references/fragile-rollouts.md +303 -0
- package/skills/deploy-k8s/references/helm-patterns.md +203 -0
- package/skills/deploy-k8s/references/insecure-workload-defaults.md +300 -0
- package/skills/deploy-k8s/references/job-patterns.md +120 -0
- package/skills/deploy-k8s/references/kustomize-patterns.md +239 -0
- package/skills/deploy-k8s/references/multi-tenancy.md +343 -0
- package/skills/deploy-k8s/references/network-exposure.md +481 -0
- package/skills/deploy-k8s/references/observability.md +302 -0
- package/skills/deploy-k8s/references/privilege-sprawl.md +273 -0
- package/skills/deploy-k8s/references/resource-starvation.md +374 -0
- package/skills/deploy-k8s/references/security-hardening.md +209 -0
- package/skills/deploy-k8s/references/stateful-patterns.md +130 -0
- package/skills/deploy-k8s/references/storage-and-state.md +330 -0
- package/skills/deploy-k8s/references/validation-and-policy.md +242 -0
- package/skills/deploy-railway/SKILL.md +235 -0
- package/skills/deploy-railway/references/analyze-db-mongo.md +84 -0
- package/skills/deploy-railway/references/analyze-db-mysql.md +254 -0
- package/skills/deploy-railway/references/analyze-db-postgres.md +479 -0
- package/skills/deploy-railway/references/analyze-db-redis.md +208 -0
- package/skills/deploy-railway/references/analyze-db.md +344 -0
- package/skills/deploy-railway/references/configure.md +309 -0
- package/skills/deploy-railway/references/deploy.md +195 -0
- package/skills/deploy-railway/references/operate.md +214 -0
- package/skills/deploy-railway/references/request.md +248 -0
- package/skills/deploy-railway/references/setup.md +312 -0
- package/skills/deploy-railway/scripts/analyze-mongo.py +1549 -0
- package/skills/deploy-railway/scripts/analyze-mysql.py +1195 -0
- package/skills/deploy-railway/scripts/analyze-postgres.py +3058 -0
- package/skills/deploy-railway/scripts/analyze-redis.py +1090 -0
- package/skills/deploy-railway/scripts/dal.py +671 -0
- package/skills/deploy-railway/scripts/enable-pg-stats.py +170 -0
- package/skills/deploy-railway/scripts/pg-extensions.py +370 -0
- package/skills/deploy-railway/scripts/railway-api.sh +52 -0
- package/skills/deploy-ssh/SKILL.md +91 -0
- package/skills/deploy-vercel/SKILL.md +304 -0
- package/skills/deploy-vercel/resources/deploy-codex.sh +301 -0
- package/skills/deploy-vercel/resources/deploy.sh +301 -0
- package/skills/docs-runbooks/SKILL.md +399 -0
- package/skills/drive-status-renderer/SKILL.md +62 -0
- package/skills/iac-scan/SKILL.md +680 -0
- package/skills/iac-scan/assets/.gitkeep +9 -0
- package/skills/iac-scan/assets/checkov_config.yaml +94 -0
- package/skills/iac-scan/assets/github_actions.yml +199 -0
- package/skills/iac-scan/assets/gitlab_ci.yml +218 -0
- package/skills/iac-scan/assets/pre_commit_config.yaml +92 -0
- package/skills/iac-scan/references/EXAMPLE.md +40 -0
- package/skills/iac-scan/references/compliance_mapping.md +237 -0
- package/skills/iac-scan/references/custom_policies.md +460 -0
- package/skills/iac-scan/references/suppression_guide.md +431 -0
- package/skills/incident-briefing/SKILL.md +66 -0
- package/skills/incident-triage/SKILL.md +481 -0
- package/{LICENSE → skills/mcp-builder/LICENSE.txt} +15 -14
- package/skills/mcp-builder/SKILL.md +244 -0
- package/skills/mcp-builder/reference/evaluation.md +602 -0
- package/skills/mcp-builder/reference/mcp_best_practices.md +249 -0
- package/skills/mcp-builder/reference/node_mcp_server.md +970 -0
- package/skills/mcp-builder/reference/python_mcp_server.md +719 -0
- package/skills/mcp-builder/scripts/connections.py +151 -0
- package/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/skills/mobile-pairing/SKILL.md +52 -0
- package/skills/ops-sre/SKILL.md +297 -0
- package/skills/playwright-qa/LICENSE.txt +201 -0
- package/skills/playwright-qa/NOTICE.txt +14 -0
- package/skills/playwright-qa/SKILL.md +156 -0
- package/skills/playwright-qa/agents/openai.yaml +6 -0
- package/skills/playwright-qa/assets/playwright-small.svg +3 -0
- package/skills/playwright-qa/assets/playwright.png +0 -0
- package/skills/playwright-qa/references/cli.md +116 -0
- package/skills/playwright-qa/references/workflows.md +95 -0
- package/skills/playwright-qa/scripts/playwright_cli.sh +25 -0
- package/skills/release-publish/SKILL.md +85 -0
- package/skills/repo-bootstrap/SKILL.md +92 -0
- package/skills/repo-bootstrap/assets/example-workflows/validate-agents.yml +89 -0
- package/skills/repo-bootstrap/assets/root-thin.md +141 -0
- package/skills/repo-bootstrap/assets/root-verbose.md +149 -0
- package/skills/repo-bootstrap/assets/scoped/backend-go.md +107 -0
- package/skills/repo-bootstrap/assets/scoped/backend-php.md +94 -0
- package/skills/repo-bootstrap/assets/scoped/backend-python.md +84 -0
- package/skills/repo-bootstrap/assets/scoped/backend-typescript.md +89 -0
- package/skills/repo-bootstrap/assets/scoped/claude-code-skill.md +101 -0
- package/skills/repo-bootstrap/assets/scoped/cli.md +83 -0
- package/skills/repo-bootstrap/assets/scoped/concourse.md +196 -0
- package/skills/repo-bootstrap/assets/scoped/ddev.md +68 -0
- package/skills/repo-bootstrap/assets/scoped/docker.md +160 -0
- package/skills/repo-bootstrap/assets/scoped/documentation.md +98 -0
- package/skills/repo-bootstrap/assets/scoped/examples.md +96 -0
- package/skills/repo-bootstrap/assets/scoped/frontend-typescript.md +88 -0
- package/skills/repo-bootstrap/assets/scoped/github-actions.md +174 -0
- package/skills/repo-bootstrap/assets/scoped/gitlab-ci.md +174 -0
- package/skills/repo-bootstrap/assets/scoped/oro-bundle.md +209 -0
- package/skills/repo-bootstrap/assets/scoped/oro-project.md +170 -0
- package/skills/repo-bootstrap/assets/scoped/python-modern.md +170 -0
- package/skills/repo-bootstrap/assets/scoped/resources.md +96 -0
- package/skills/repo-bootstrap/assets/scoped/skill-repo.md +139 -0
- package/skills/repo-bootstrap/assets/scoped/symfony.md +168 -0
- package/skills/repo-bootstrap/assets/scoped/testing.md +87 -0
- package/skills/repo-bootstrap/assets/scoped/typo3-docs.md +103 -0
- package/skills/repo-bootstrap/assets/scoped/typo3-extension.md +133 -0
- package/skills/repo-bootstrap/assets/scoped/typo3-project.md +137 -0
- package/skills/repo-bootstrap/assets/scoped/typo3-testing.md +80 -0
- package/skills/repo-bootstrap/checkpoints.yaml +279 -0
- package/skills/repo-bootstrap/evals/evals.json +385 -0
- package/skills/repo-bootstrap/references/ai-contribution-guidelines.md +63 -0
- package/skills/repo-bootstrap/references/ai-tool-compatibility.md +223 -0
- package/skills/repo-bootstrap/references/directory-coverage.md +82 -0
- package/skills/repo-bootstrap/references/examples/coding-agent-cli/AGENTS.md +70 -0
- package/skills/repo-bootstrap/references/examples/coding-agent-cli/go.mod +3 -0
- package/skills/repo-bootstrap/references/examples/coding-agent-cli/scripts-AGENTS.md +389 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/.env.example +13 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/AGENTS.md +91 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/package.json +33 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/pnpm-lock.yaml +3 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/AGENTS.md +91 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/config.ts +28 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/controllers/userController.ts +74 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/index.ts +26 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/middleware/errorHandler.ts +45 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/middleware/requestLogger.ts +18 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/routes/health.ts +18 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/routes/users.ts +13 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/utils/errors.ts +40 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/src/utils/logger.ts +14 -0
- package/skills/repo-bootstrap/references/examples/express-api-ts/tsconfig.json +24 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/.env.example +19 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/AGENTS.md +92 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/pyproject.toml +88 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/AGENTS.md +85 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/__init__.py +3 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/config.py +49 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/main.py +66 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/models/__init__.py +13 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/models/item.py +43 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/models/user.py +40 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/routes/__init__.py +5 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/routes/health.py +20 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/routes/items.py +61 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/routes/users.py +55 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/services/__init__.py +6 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/services/item_service.py +77 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/src/services/user_service.py +69 -0
- package/skills/repo-bootstrap/references/examples/fastapi-app/uv.lock +4 -0
- package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/.scopes +3 -0
- package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/AGENTS.md +86 -0
- package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/admin/package.json +20 -0
- package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/admin/src/App.tsx +5 -0
- package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/cmd/api/main.go +7 -0
- package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/go.mod +2 -0
- package/skills/repo-bootstrap/references/examples/go-api-with-react-admin/main.go +7 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/.scopes +3 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/AGENTS.md +89 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/go.mod +2 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/AGENTS.md +90 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/package.json +17 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/App.tsx +1 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/Button.tsx +1 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/Footer.tsx +1 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/Header.tsx +1 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/internal/web/src/Sidebar.tsx +1 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/main.go +7 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/package-lock.json +0 -0
- package/skills/repo-bootstrap/references/examples/go-with-internal-web-tsx/package.json +12 -0
- package/skills/repo-bootstrap/references/examples/ldap-selfservice/AGENTS.md +70 -0
- package/skills/repo-bootstrap/references/examples/ldap-selfservice/go.mod +3 -0
- package/skills/repo-bootstrap/references/examples/ldap-selfservice/internal-AGENTS.md +371 -0
- package/skills/repo-bootstrap/references/examples/ldap-selfservice/internal-web-AGENTS.md +448 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/.scopes +3 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/AGENTS.md +91 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/composer.json +8 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/package.json +15 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/pnpm-lock.yaml +0 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/src/Controller.php +3 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/web/AGENTS.md +92 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/web/package.json +26 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/App.tsx +3 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/Button.tsx +10 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/Footer.tsx +9 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/Header.tsx +9 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/web/src/main.tsx +3 -0
- package/skills/repo-bootstrap/references/examples/php-with-frontend/web/tsconfig.json +13 -0
- package/skills/repo-bootstrap/references/examples/pnpm-workspace/AGENTS.md +75 -0
- package/skills/repo-bootstrap/references/examples/pnpm-workspace/package.json +7 -0
- package/skills/repo-bootstrap/references/examples/pnpm-workspace/packages/web/package.json +11 -0
- package/skills/repo-bootstrap/references/examples/pnpm-workspace/packages/web/src/index.ts +11 -0
- package/skills/repo-bootstrap/references/examples/pnpm-workspace/pnpm-lock.yaml +42 -0
- package/skills/repo-bootstrap/references/examples/pnpm-workspace/pnpm-workspace.yaml +2 -0
- package/skills/repo-bootstrap/references/examples/simple-ldap-go/AGENTS.md +70 -0
- package/skills/repo-bootstrap/references/examples/simple-ldap-go/examples-AGENTS.md +45 -0
- package/skills/repo-bootstrap/references/examples/simple-ldap-go/go.mod +3 -0
- package/skills/repo-bootstrap/references/examples/t3x-rte-ckeditor-image/AGENTS.md +70 -0
- package/skills/repo-bootstrap/references/examples/t3x-rte-ckeditor-image/Classes-AGENTS.md +392 -0
- package/skills/repo-bootstrap/references/examples/t3x-rte-ckeditor-image/composer.json +8 -0
- package/skills/repo-bootstrap/references/feedback-memory-schema.md +135 -0
- package/skills/repo-bootstrap/references/git-hooks-setup.md +79 -0
- package/skills/repo-bootstrap/references/output-structure.md +124 -0
- package/skills/repo-bootstrap/references/scripts-guide.md +175 -0
- package/skills/repo-bootstrap/references/verification-guide.md +137 -0
- package/skills/repo-bootstrap/scripts/analyze-git-history.sh +315 -0
- package/skills/repo-bootstrap/scripts/check-freshness.sh +230 -0
- package/skills/repo-bootstrap/scripts/detect-golden-samples.sh +161 -0
- package/skills/repo-bootstrap/scripts/detect-heuristics.sh +93 -0
- package/skills/repo-bootstrap/scripts/detect-project.sh +486 -0
- package/skills/repo-bootstrap/scripts/detect-scopes.sh +330 -0
- package/skills/repo-bootstrap/scripts/detect-utilities.sh +133 -0
- package/skills/repo-bootstrap/scripts/extract-adrs.sh +194 -0
- package/skills/repo-bootstrap/scripts/extract-agent-configs.sh +331 -0
- package/skills/repo-bootstrap/scripts/extract-architecture-rules.sh +522 -0
- package/skills/repo-bootstrap/scripts/extract-ci-commands.sh +385 -0
- package/skills/repo-bootstrap/scripts/extract-ci-rules.sh +384 -0
- package/skills/repo-bootstrap/scripts/extract-commands.sh +358 -0
- package/skills/repo-bootstrap/scripts/extract-documentation.sh +308 -0
- package/skills/repo-bootstrap/scripts/extract-github-rulesets.sh +96 -0
- package/skills/repo-bootstrap/scripts/extract-github-settings.sh +88 -0
- package/skills/repo-bootstrap/scripts/extract-ide-settings.sh +228 -0
- package/skills/repo-bootstrap/scripts/extract-platform-files.sh +290 -0
- package/skills/repo-bootstrap/scripts/extract-quality-configs.sh +442 -0
- package/skills/repo-bootstrap/scripts/generate-agents.sh +2424 -0
- package/skills/repo-bootstrap/scripts/generate-file-map.sh +153 -0
- package/skills/repo-bootstrap/scripts/lib/config-root.sh +211 -0
- package/skills/repo-bootstrap/scripts/lib/summary.sh +244 -0
- package/skills/repo-bootstrap/scripts/lib/template.sh +397 -0
- package/skills/repo-bootstrap/scripts/validate-structure.sh +324 -0
- package/skills/repo-bootstrap/scripts/verify-commands.sh +615 -0
- package/skills/repo-bootstrap/scripts/verify-content.sh +302 -0
- package/skills/schema-api-contracts/SKILL.md +56 -0
- package/skills/secret-hygiene/SKILL.md +511 -0
- package/skills/secret-hygiene/assets/.gitkeep +9 -0
- package/skills/secret-hygiene/assets/config-balanced.toml +81 -0
- package/skills/secret-hygiene/assets/config-custom.toml +178 -0
- package/skills/secret-hygiene/assets/config-strict.toml +48 -0
- package/skills/secret-hygiene/assets/github-action.yml +181 -0
- package/skills/secret-hygiene/assets/gitlab-ci.yml +257 -0
- package/skills/secret-hygiene/assets/precommit-config.yaml +70 -0
- package/skills/secret-hygiene/references/EXAMPLE.md +40 -0
- package/skills/secret-hygiene/references/compliance_mapping.md +538 -0
- package/skills/secret-hygiene/references/detection_rules.md +276 -0
- package/skills/secret-hygiene/references/false_positives.md +598 -0
- package/skills/secret-hygiene/references/remediation_guide.md +530 -0
- package/skills/stack-selector/SKILL.md +56 -0
- package/skills/telegram-control/SKILL.md +110 -0
- package/skills/telegram-control/references/architecture.md +184 -0
- package/skills/telegram-control/references/convex.md +173 -0
- package/skills/telegram-control/references/error_handling.md +212 -0
- package/skills/telegram-control/references/initial_setup.md +165 -0
- package/skills/telegram-control/references/telegram_api.md +156 -0
- package/skills/telegram-control/scripts/cancel_message.ts +53 -0
- package/skills/telegram-control/scripts/list_scheduled.ts +103 -0
- package/skills/telegram-control/scripts/logger.ts +121 -0
- package/skills/telegram-control/scripts/proxy-util.ts +11 -0
- package/skills/telegram-control/scripts/schedule_message.ts +216 -0
- package/skills/telegram-control/scripts/send_message.ts +115 -0
- package/skills/telegram-control/scripts/setup.ts +185 -0
- package/skills/telegram-control/scripts/types.ts +75 -0
- package/skills/telegram-control/scripts/view_history.ts +74 -0
- package/skills/test-strategy/SKILL.md +352 -0
- package/skills/threat-model/SKILL.md +303 -0
- package/skills/threat-model/examples/example-output.md +196 -0
- package/skills/threat-model/template.md +96 -0
- package/skills/ts-lint/SKILL.md +80 -0
- package/skills/ui-flow/SKILL.md +668 -0
- package/skills/voice-command-router/SKILL.md +51 -0
- package/skills/widget-live-activity-sync/SKILL.md +66 -0
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ops-sre
|
|
3
|
+
synapta_original_name: sre-engineer
|
|
4
|
+
description: "Use this agent when you need to establish or improve system reliability through SLO definition, error budget management, and automation. Invoke when implementing SLI/SLO frameworks, reducing operational toil, designing fault-tolerant systems, conducting chaos engineering, or optimizing incident response processes."
|
|
5
|
+
triggers: [synapta sre, SLO, SLI, error budget, chaos engineering, operational toil]
|
|
6
|
+
network: off
|
|
7
|
+
tools: Read, Write, Edit, Bash, Glob, Grep
|
|
8
|
+
model: sonnet
|
|
9
|
+
source:
|
|
10
|
+
origin: https://github.com/VoltAgent/awesome-claude-code-subagents
|
|
11
|
+
path: categories/03-infrastructure/sre-engineer.md
|
|
12
|
+
commit: 6f804f0cfab2
|
|
13
|
+
license: MIT (VoltAgent)
|
|
14
|
+
adapted: light-touch
|
|
15
|
+
note: "Source is a Claude Code sub-agent (persona format) rather than strict Agent Skills SKILL.md. Synapta adopts it as a skill — the body content is SRE guidance applicable in either format."
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
You are a senior Site Reliability Engineer with expertise in building and maintaining highly reliable, scalable systems. Your focus spans SLI/SLO management, error budgets, capacity planning, and automation with emphasis on reducing toil, improving reliability, and enabling sustainable on-call practices.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
When invoked:
|
|
22
|
+
1. Query context manager for service architecture and reliability requirements
|
|
23
|
+
2. Review existing SLOs, error budgets, and operational practices
|
|
24
|
+
3. Analyze reliability metrics, toil levels, and incident patterns
|
|
25
|
+
4. Implement solutions maximizing reliability while maintaining feature velocity
|
|
26
|
+
|
|
27
|
+
SRE engineering checklist:
|
|
28
|
+
- SLO targets defined and tracked
|
|
29
|
+
- Error budgets actively managed
|
|
30
|
+
- Toil < 50% of time achieved
|
|
31
|
+
- Automation coverage > 90% implemented
|
|
32
|
+
- MTTR < 30 minutes sustained
|
|
33
|
+
- Postmortems for all incidents completed
|
|
34
|
+
- SLO compliance > 99.9% maintained
|
|
35
|
+
- On-call burden sustainable verified
|
|
36
|
+
|
|
37
|
+
SLI/SLO management:
|
|
38
|
+
- SLI identification
|
|
39
|
+
- SLO target setting
|
|
40
|
+
- Measurement implementation
|
|
41
|
+
- Error budget calculation
|
|
42
|
+
- Burn rate monitoring
|
|
43
|
+
- Policy enforcement
|
|
44
|
+
- Stakeholder alignment
|
|
45
|
+
- Continuous refinement
|
|
46
|
+
|
|
47
|
+
Reliability architecture:
|
|
48
|
+
- Redundancy design
|
|
49
|
+
- Failure domain isolation
|
|
50
|
+
- Circuit breaker patterns
|
|
51
|
+
- Retry strategies
|
|
52
|
+
- Timeout configuration
|
|
53
|
+
- Graceful degradation
|
|
54
|
+
- Load shedding
|
|
55
|
+
- Chaos engineering
|
|
56
|
+
|
|
57
|
+
Error budget policy:
|
|
58
|
+
- Budget allocation
|
|
59
|
+
- Burn rate thresholds
|
|
60
|
+
- Feature freeze triggers
|
|
61
|
+
- Risk assessment
|
|
62
|
+
- Trade-off decisions
|
|
63
|
+
- Stakeholder communication
|
|
64
|
+
- Policy automation
|
|
65
|
+
- Exception handling
|
|
66
|
+
|
|
67
|
+
Capacity planning:
|
|
68
|
+
- Demand forecasting
|
|
69
|
+
- Resource modeling
|
|
70
|
+
- Scaling strategies
|
|
71
|
+
- Cost optimization
|
|
72
|
+
- Performance testing
|
|
73
|
+
- Load testing
|
|
74
|
+
- Stress testing
|
|
75
|
+
- Break point analysis
|
|
76
|
+
|
|
77
|
+
Toil reduction:
|
|
78
|
+
- Toil identification
|
|
79
|
+
- Automation opportunities
|
|
80
|
+
- Tool development
|
|
81
|
+
- Process optimization
|
|
82
|
+
- Self-service platforms
|
|
83
|
+
- Runbook automation
|
|
84
|
+
- Alert reduction
|
|
85
|
+
- Efficiency metrics
|
|
86
|
+
|
|
87
|
+
Monitoring and alerting:
|
|
88
|
+
- Golden signals
|
|
89
|
+
- Custom metrics
|
|
90
|
+
- Alert quality
|
|
91
|
+
- Noise reduction
|
|
92
|
+
- Correlation rules
|
|
93
|
+
- Runbook integration
|
|
94
|
+
- Escalation policies
|
|
95
|
+
- Alert fatigue prevention
|
|
96
|
+
|
|
97
|
+
Incident management:
|
|
98
|
+
- Response procedures
|
|
99
|
+
- Severity classification
|
|
100
|
+
- Communication plans
|
|
101
|
+
- War room coordination
|
|
102
|
+
- Root cause analysis
|
|
103
|
+
- Action item tracking
|
|
104
|
+
- Knowledge capture
|
|
105
|
+
- Process improvement
|
|
106
|
+
|
|
107
|
+
Chaos engineering:
|
|
108
|
+
- Experiment design
|
|
109
|
+
- Hypothesis formation
|
|
110
|
+
- Blast radius control
|
|
111
|
+
- Safety mechanisms
|
|
112
|
+
- Result analysis
|
|
113
|
+
- Learning integration
|
|
114
|
+
- Tool selection
|
|
115
|
+
- Cultural adoption
|
|
116
|
+
|
|
117
|
+
Automation development:
|
|
118
|
+
- Python scripting
|
|
119
|
+
- Go tool development
|
|
120
|
+
- Terraform modules
|
|
121
|
+
- Kubernetes operators
|
|
122
|
+
- CI/CD pipelines
|
|
123
|
+
- Self-healing systems
|
|
124
|
+
- Configuration management
|
|
125
|
+
- Infrastructure as code
|
|
126
|
+
|
|
127
|
+
On-call practices:
|
|
128
|
+
- Rotation schedules
|
|
129
|
+
- Handoff procedures
|
|
130
|
+
- Escalation paths
|
|
131
|
+
- Documentation standards
|
|
132
|
+
- Tool accessibility
|
|
133
|
+
- Training programs
|
|
134
|
+
- Well-being support
|
|
135
|
+
- Compensation models
|
|
136
|
+
|
|
137
|
+
## Communication Protocol
|
|
138
|
+
|
|
139
|
+
### Reliability Assessment
|
|
140
|
+
|
|
141
|
+
Initialize SRE practices by understanding system requirements.
|
|
142
|
+
|
|
143
|
+
SRE context query:
|
|
144
|
+
```json
|
|
145
|
+
{
|
|
146
|
+
"requesting_agent": "sre-engineer",
|
|
147
|
+
"request_type": "get_sre_context",
|
|
148
|
+
"payload": {
|
|
149
|
+
"query": "SRE context needed: service architecture, current SLOs, incident history, toil levels, team structure, and business priorities."
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
## Development Workflow
|
|
155
|
+
|
|
156
|
+
Execute SRE practices through systematic phases:
|
|
157
|
+
|
|
158
|
+
### 1. Reliability Analysis
|
|
159
|
+
|
|
160
|
+
Assess current reliability posture and identify gaps.
|
|
161
|
+
|
|
162
|
+
Analysis priorities:
|
|
163
|
+
- Service dependency mapping
|
|
164
|
+
- SLI/SLO assessment
|
|
165
|
+
- Error budget analysis
|
|
166
|
+
- Toil quantification
|
|
167
|
+
- Incident pattern review
|
|
168
|
+
- Automation coverage
|
|
169
|
+
- Team capacity
|
|
170
|
+
- Tool effectiveness
|
|
171
|
+
|
|
172
|
+
Technical evaluation:
|
|
173
|
+
- Review architecture
|
|
174
|
+
- Analyze failure modes
|
|
175
|
+
- Measure current SLIs
|
|
176
|
+
- Calculate error budgets
|
|
177
|
+
- Identify toil sources
|
|
178
|
+
- Assess automation gaps
|
|
179
|
+
- Review incidents
|
|
180
|
+
- Document findings
|
|
181
|
+
|
|
182
|
+
### 2. Implementation Phase
|
|
183
|
+
|
|
184
|
+
Build reliability through systematic improvements.
|
|
185
|
+
|
|
186
|
+
Implementation approach:
|
|
187
|
+
- Define meaningful SLOs
|
|
188
|
+
- Implement monitoring
|
|
189
|
+
- Build automation
|
|
190
|
+
- Reduce toil
|
|
191
|
+
- Improve incident response
|
|
192
|
+
- Enable chaos testing
|
|
193
|
+
- Document procedures
|
|
194
|
+
- Train teams
|
|
195
|
+
|
|
196
|
+
SRE patterns:
|
|
197
|
+
- Measure everything
|
|
198
|
+
- Automate repetitive tasks
|
|
199
|
+
- Embrace failure
|
|
200
|
+
- Reduce toil continuously
|
|
201
|
+
- Balance velocity/reliability
|
|
202
|
+
- Learn from incidents
|
|
203
|
+
- Share knowledge
|
|
204
|
+
- Build resilience
|
|
205
|
+
|
|
206
|
+
Progress tracking:
|
|
207
|
+
```json
|
|
208
|
+
{
|
|
209
|
+
"agent": "sre-engineer",
|
|
210
|
+
"status": "improving",
|
|
211
|
+
"progress": {
|
|
212
|
+
"slo_coverage": "95%",
|
|
213
|
+
"toil_percentage": "35%",
|
|
214
|
+
"mttr": "24min",
|
|
215
|
+
"automation_coverage": "87%"
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
### 3. Reliability Excellence
|
|
221
|
+
|
|
222
|
+
Achieve world-class reliability engineering.
|
|
223
|
+
|
|
224
|
+
Excellence checklist:
|
|
225
|
+
- SLOs comprehensive
|
|
226
|
+
- Error budgets effective
|
|
227
|
+
- Toil minimized
|
|
228
|
+
- Automation maximized
|
|
229
|
+
- Incidents rare
|
|
230
|
+
- Recovery rapid
|
|
231
|
+
- Team sustainable
|
|
232
|
+
- Culture strong
|
|
233
|
+
|
|
234
|
+
Delivery notification:
|
|
235
|
+
"SRE implementation completed. Established SLOs for 95% of services, reduced toil from 70% to 35%, achieved 24-minute MTTR, and built 87% automation coverage. Implemented chaos engineering, sustainable on-call, and data-driven reliability culture."
|
|
236
|
+
|
|
237
|
+
Production readiness:
|
|
238
|
+
- Architecture review
|
|
239
|
+
- Capacity planning
|
|
240
|
+
- Monitoring setup
|
|
241
|
+
- Runbook creation
|
|
242
|
+
- Load testing
|
|
243
|
+
- Failure testing
|
|
244
|
+
- Security review
|
|
245
|
+
- Launch criteria
|
|
246
|
+
|
|
247
|
+
Reliability patterns:
|
|
248
|
+
- Retries with backoff
|
|
249
|
+
- Circuit breakers
|
|
250
|
+
- Bulkheads
|
|
251
|
+
- Timeouts
|
|
252
|
+
- Health checks
|
|
253
|
+
- Graceful degradation
|
|
254
|
+
- Feature flags
|
|
255
|
+
- Progressive rollouts
|
|
256
|
+
|
|
257
|
+
Performance engineering:
|
|
258
|
+
- Latency optimization
|
|
259
|
+
- Throughput improvement
|
|
260
|
+
- Resource efficiency
|
|
261
|
+
- Cost optimization
|
|
262
|
+
- Caching strategies
|
|
263
|
+
- Database tuning
|
|
264
|
+
- Network optimization
|
|
265
|
+
- Code profiling
|
|
266
|
+
|
|
267
|
+
Cultural practices:
|
|
268
|
+
- Blameless postmortems
|
|
269
|
+
- Error budget meetings
|
|
270
|
+
- SLO reviews
|
|
271
|
+
- Toil tracking
|
|
272
|
+
- Innovation time
|
|
273
|
+
- Knowledge sharing
|
|
274
|
+
- Cross-training
|
|
275
|
+
- Well-being focus
|
|
276
|
+
|
|
277
|
+
Tool development:
|
|
278
|
+
- Automation scripts
|
|
279
|
+
- Monitoring tools
|
|
280
|
+
- Deployment tools
|
|
281
|
+
- Debugging utilities
|
|
282
|
+
- Performance analyzers
|
|
283
|
+
- Capacity planners
|
|
284
|
+
- Cost calculators
|
|
285
|
+
- Documentation generators
|
|
286
|
+
|
|
287
|
+
Integration with other agents:
|
|
288
|
+
- Partner with devops-engineer on automation
|
|
289
|
+
- Collaborate with cloud-architect on reliability patterns
|
|
290
|
+
- Work with kubernetes-specialist on K8s reliability
|
|
291
|
+
- Guide platform-engineer on platform SLOs
|
|
292
|
+
- Help deployment-engineer on safe deployments
|
|
293
|
+
- Support incident-responder on incident management
|
|
294
|
+
- Assist security-engineer on security reliability
|
|
295
|
+
- Coordinate with database-administrator on data reliability
|
|
296
|
+
|
|
297
|
+
Always prioritize sustainable reliability, automation, and learning while balancing feature development with system stability.
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright (c) Microsoft Corporation.
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
This skill includes material derived from the Microsoft playwright-cli repository.
|
|
2
|
+
|
|
3
|
+
Source:
|
|
4
|
+
- Repository: microsoft/playwright-cli
|
|
5
|
+
- Path: skills/playwright-cli/SKILL.md
|
|
6
|
+
|
|
7
|
+
Copyright (c) Microsoft Corporation.
|
|
8
|
+
|
|
9
|
+
Licensed under the Apache License, Version 2.0.
|
|
10
|
+
See LICENSE.txt in this directory.
|
|
11
|
+
|
|
12
|
+
Modifications:
|
|
13
|
+
- Adapted for the Codex skill collection.
|
|
14
|
+
- Added a wrapper script and local reference guides.
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: playwright-qa
|
|
3
|
+
synapta_original_name: playwright
|
|
4
|
+
triggers: [synapta e2e, Playwright, browser test, preview URL test, UI smoke]
|
|
5
|
+
network: allowlist
|
|
6
|
+
source:
|
|
7
|
+
origin: https://github.com/openai/skills
|
|
8
|
+
path: skills/.curated/playwright
|
|
9
|
+
commit: c25113bf4c64
|
|
10
|
+
license: see LICENSE.txt and NOTICE.txt in source folder
|
|
11
|
+
adapted: light-touch
|
|
12
|
+
description: "Use when the task requires automating a real browser from the terminal (navigation, form filling, snapshots, screenshots, data extraction, UI-flow debugging) via `playwright-cli` or the bundled wrapper script."
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# Playwright CLI Skill
|
|
17
|
+
|
|
18
|
+
Drive a real browser from the terminal using `playwright-cli`. Prefer the bundled wrapper script so the CLI works even when it is not globally installed.
|
|
19
|
+
Treat this skill as CLI-first automation. Do not pivot to `@playwright/test` unless the user explicitly asks for test files.
|
|
20
|
+
|
|
21
|
+
## Prerequisite check (required)
|
|
22
|
+
|
|
23
|
+
Before proposing commands, check whether `npx` is available (the wrapper depends on it):
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
command -v npx >/dev/null 2>&1
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
If it is not available, pause and ask the user to install Node.js/npm (which provides `npx`). Provide these steps verbatim:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
# Verify Node/npm are installed
|
|
33
|
+
node --version
|
|
34
|
+
npm --version
|
|
35
|
+
|
|
36
|
+
# If missing, install Node.js/npm, then:
|
|
37
|
+
npm install -g @playwright/cli@latest
|
|
38
|
+
playwright-cli --help
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Once `npx` is present, proceed with the wrapper script. A global install of `playwright-cli` is optional.
|
|
42
|
+
|
|
43
|
+
## Skill path (set once)
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
export CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
|
|
47
|
+
export PWCLI="$CODEX_HOME/skills/playwright/scripts/playwright_cli.sh"
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
User-scoped skills install under `$CODEX_HOME/skills` (default: `~/.codex/skills`).
|
|
51
|
+
|
|
52
|
+
## Quick start
|
|
53
|
+
|
|
54
|
+
Use the wrapper script:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
"$PWCLI" open https://playwright.dev --headed
|
|
58
|
+
"$PWCLI" snapshot
|
|
59
|
+
"$PWCLI" click e15
|
|
60
|
+
"$PWCLI" type "Playwright"
|
|
61
|
+
"$PWCLI" press Enter
|
|
62
|
+
"$PWCLI" screenshot
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
If the user prefers a global install, this is also valid:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
npm install -g @playwright/cli@latest
|
|
69
|
+
playwright-cli --help
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Core workflow
|
|
73
|
+
|
|
74
|
+
1. Open the page.
|
|
75
|
+
2. Snapshot to get stable element refs.
|
|
76
|
+
3. Interact using refs from the latest snapshot.
|
|
77
|
+
4. Re-snapshot after navigation or significant DOM changes.
|
|
78
|
+
5. Capture artifacts (screenshot, pdf, traces) when useful.
|
|
79
|
+
|
|
80
|
+
Minimal loop:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
"$PWCLI" open https://example.com
|
|
84
|
+
"$PWCLI" snapshot
|
|
85
|
+
"$PWCLI" click e3
|
|
86
|
+
"$PWCLI" snapshot
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
## When to snapshot again
|
|
90
|
+
|
|
91
|
+
Snapshot again after:
|
|
92
|
+
|
|
93
|
+
- navigation
|
|
94
|
+
- clicking elements that change the UI substantially
|
|
95
|
+
- opening/closing modals or menus
|
|
96
|
+
- tab switches
|
|
97
|
+
|
|
98
|
+
Refs can go stale. When a command fails due to a missing ref, snapshot again.
|
|
99
|
+
|
|
100
|
+
## Recommended patterns
|
|
101
|
+
|
|
102
|
+
### Form fill and submit
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
"$PWCLI" open https://example.com/form
|
|
106
|
+
"$PWCLI" snapshot
|
|
107
|
+
"$PWCLI" fill e1 "user@example.com"
|
|
108
|
+
"$PWCLI" fill e2 "password123"
|
|
109
|
+
"$PWCLI" click e3
|
|
110
|
+
"$PWCLI" snapshot
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
### Debug a UI flow with traces
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
"$PWCLI" open https://example.com --headed
|
|
117
|
+
"$PWCLI" tracing-start
|
|
118
|
+
# ...interactions...
|
|
119
|
+
"$PWCLI" tracing-stop
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
### Multi-tab work
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
"$PWCLI" tab-new https://example.com
|
|
126
|
+
"$PWCLI" tab-list
|
|
127
|
+
"$PWCLI" tab-select 0
|
|
128
|
+
"$PWCLI" snapshot
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
## Wrapper script
|
|
132
|
+
|
|
133
|
+
The wrapper script uses `npx --package @playwright/cli playwright-cli` so the CLI can run without a global install:
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
"$PWCLI" --help
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
Prefer the wrapper unless the repository already standardizes on a global install.
|
|
140
|
+
|
|
141
|
+
## References
|
|
142
|
+
|
|
143
|
+
Open only what you need:
|
|
144
|
+
|
|
145
|
+
- CLI command reference: `references/cli.md`
|
|
146
|
+
- Practical workflows and troubleshooting: `references/workflows.md`
|
|
147
|
+
|
|
148
|
+
## Guardrails
|
|
149
|
+
|
|
150
|
+
- Always snapshot before referencing element ids like `e12`.
|
|
151
|
+
- Re-snapshot when refs seem stale.
|
|
152
|
+
- Prefer explicit commands over `eval` and `run-code` unless needed.
|
|
153
|
+
- When you do not have a fresh snapshot, use placeholder refs like `eX` and say why; do not bypass refs with `run-code`.
|
|
154
|
+
- Use `--headed` when a visual check will help.
|
|
155
|
+
- When capturing artifacts in this repo, use `output/playwright/` and avoid introducing new top-level artifact folders.
|
|
156
|
+
- Default to CLI commands and workflows, not Playwright test specs.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Playwright CLI Skill"
|
|
3
|
+
short_description: "Automate real browsers from the terminal"
|
|
4
|
+
icon_small: "./assets/playwright-small.svg"
|
|
5
|
+
icon_large: "./assets/playwright.png"
|
|
6
|
+
default_prompt: "Automate this browser workflow with Playwright and produce a reliable script with run steps."
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
|
|
2
|
+
<path d="m8.55 7.568.124.028 5.16 1.548.137.054c.606.294.645 1.165.068 1.512l-.133.066-2.236.894-.894 2.236c-.285.713-1.263.714-1.578.065l-.054-.138-1.548-5.16a.866.866 0 0 1 .954-1.105ZM10 12.983l.715-1.787.037-.08a.865.865 0 0 1 .445-.402L12.983 10 8.721 8.72l1.278 4.262ZM4.723 10.38a.532.532 0 0 1 .752.752l-1.414 1.414a.532.532 0 1 1-.752-.752l1.414-1.414ZM2.27 5.86l1.932.517.1.039a.533.533 0 0 1-.269 1.007l-.106-.018-1.932-.517-.101-.039a.532.532 0 0 1 .27-1.006l.106.017Zm9.608-2.62a.532.532 0 0 1 .668.82l-1.414 1.414a.532.532 0 1 1-.752-.752l1.414-1.414.084-.068ZM6.237 1.618a.532.532 0 0 1 .652.377l.518 1.932.017.106a.533.533 0 0 1-1.007.27l-.039-.101-.517-1.932-.017-.106a.532.532 0 0 1 .393-.546Z"/>
|
|
3
|
+
</svg>
|
|
Binary file
|