원클릭으로
test-adapters-strip-yaml-frontmatter
This skill covers testing the _strip_yaml_frontmatter helper. Trigger: test_adapters.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
This skill covers testing the _strip_yaml_frontmatter helper. Trigger: test_adapters.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Four quality gate checklists for frontend: baseline visual, accessibility, metadata/SEO, and motion performance. Post-implementation quality gates. Trigger: When reviewing UI changes, before merging frontend PRs, during sdd-verify.
Browser-based UI verification using Playwright. Page Object Model, selector best practices, visual regression, network interception, and MCP integration. Trigger: When writing E2E tests, verifying UI changes, or setting up Playwright.
Interactive tutorial-style lessons for custom skills. Invoke /powerup <skill> for a guided walkthrough with examples, exercises, and knowledge checks. Trigger: When user says "powerup", "tutorial", "teach me", or wants to learn a skill interactively.
Self-installing markdown recipes for skills. Each skill can include an INSTALL.md that an agent reads and executes to set up dependencies, MCP servers, or config. Trigger: When installing a skill with INSTALL.md, or creating skills with setup requirements.
This skill covers the implementation of authentication routes. Trigger: When setting up auth-related endpoints in the backend.
This skill covers AES-256-GCM encryption for provider API keys. Trigger: Load this skill when handling crypto operations for API keys.
| name | test-adapters-strip-yaml-frontmatter |
| description | This skill covers testing the _strip_yaml_frontmatter helper. Trigger: test_adapters. |
| license | Apache-2.0 |
| metadata | {"author":"repoforge","version":"1.0","complexity":"low","token_estimate":350,"dependencies":[],"related_skills":[],"load_priority":"high"} |
This skill covers testing the _strip_yaml_frontmatter helper.
Trigger: test_adapters.
| Task | Pattern |
|---|---|
| Get users | get_users() |
| Sample skills | sample_skills |
This pattern retrieves user data for testing purposes using the get_users function.
users = get_users()
This pattern accesses predefined skills for validation in tests.
skills = sample_skills
pytest tests/test_adapters.py
Hardcoded values can lead to brittle tests that fail with changes in data.
# BAD
assert user['name'] == 'John Doe'