Install
$ agentstack add skill-zebbern-claude-code-guide-core ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Playwright Core Testing
> Opinionated, production-tested Playwright guidance — every pattern includes when (and when not) to use it.
46 reference guides covering the full Playwright testing surface: selectors, assertions, fixtures, network mocking, auth, visual regression, accessibility, API testing, debugging, and more — with TypeScript and JavaScript examples throughout.
Golden Rules
getByRole()over CSS/XPath — resilient to markup changes, mirrors how users see the page- Never
page.waitForTimeout()— useexpect(locator).toBeVisible()orpage.waitForURL() - Web-first assertions —
expect(locator)auto-retries;expect(await locator.textContent())does not - Isolate every test — no shared state, no execution-order dependencies
baseURLin config — zero hardcoded URLs in tests- Retries:
2in CI,0locally — surface flakiness where it matters - Traces:
'on-first-retry'— rich debugging artifacts without CI slowdown - Fixtures over globals — share state via
test.extend(), not module-level variables - One behavior per test — multiple related
expect()calls are fine - Mock external services only — never mock your own app; mock third-party APIs, payment gateways, email
Guide Index
Writing Tests
| What you're doing | Guide | Deep dive | | -------------------------- | ------------------------------------------------------ | -------------------------------------------------- | | Choosing selectors | [locators.md](locators.md) | [locator-strategy.md](locator-strategy.md) | | Assertions & waiting | [assertions-and-waiting.md](assertions-and-waiting.md) | | | Organizing test suites | [test-organization.md](test-organization.md) | [test-architecture.md](test-architecture.md) | | Playwright config | [configuration.md](configuration.md) | | | Fixtures & hooks | [fixtures-and-hooks.md](fixtures-and-hooks.md) | | | Test data | [test-data-management.md](test-data-management.md) | | | Auth & login | [authentication.md](authentication.md) | [auth-flows.md](auth-flows.md) | | API testing (REST/GraphQL) | [api-testing.md](api-testing.md) | | | Visual regression | [visual-regression.md](visual-regression.md) | | | Accessibility | [accessibility.md](accessibility.md) | | | Mobile & responsive | [mobile-and-responsive.md](mobile-and-responsive.md) | | | Component testing | [component-testing.md](component-testing.md) | | | Network mocking | [network-mocking.md](network-mocking.md) | [when-to-mock.md](when-to-mock.md) | | Forms & validation | [forms-and-validation.md](forms-and-validation.md) | | | File uploads/downloads | [file-operations.md](file-operations.md) | [file-upload-download.md](file-upload-download.md) | | Error & edge cases | [error-and-edge-cases.md](error-and-edge-cases.md) | | | CRUD flows | [crud-testing.md](crud-testing.md) | | | Drag and drop | [drag-and-drop.md](drag-and-drop.md) | | | Search & filter UI | [search-and-filter.md](search-and-filter.md) | |
Debugging & Fixing
| Problem | Guide | | -------------------------- | ---------------------------------------- | | General debugging workflow | [debugging.md](debugging.md) | | Specific error message | [error-index.md](error-index.md) | | Flaky / intermittent tests | [flaky-tests.md](flaky-tests.md) | | Common beginner mistakes | [common-pitfalls.md](common-pitfalls.md) |
Framework Recipes
| Framework | Guide | | ----------------------------------- | ------------------------ | | Next.js (App Router + Pages Router) | [nextjs.md](nextjs.md) | | React (CRA, Vite) | [react.md](react.md) | | Vue 3 / Nuxt | [vue.md](vue.md) | | Angular | [angular.md](angular.md) |
Specialized Topics
| Topic | Guide | | ------------------------------------------ | ------------------------------------------------------------------ | | Multi-user & collaboration | [multi-user-and-collaboration.md](multi-user-and-collaboration.md) | | WebSockets & real-time | [websockets-and-realtime.md](websockets-and-realtime.md) | | Browser APIs (geo, clipboard, permissions) | [browser-apis.md](browser-apis.md) | | iframes & Shadow DOM | [iframes-and-shadow-dom.md](iframes-and-shadow-dom.md) | | Canvas & WebGL | [canvas-and-webgl.md](canvas-and-webgl.md) | | Service workers & PWA | [service-workers-and-pwa.md](service-workers-and-pwa.md) | | Electron apps | [electron-testing.md](electron-testing.md) | | Browser extensions | [browser-extensions.md](browser-extensions.md) | | Security testing | [security-testing.md](security-testing.md) | | Performance & benchmarks | [performance-testing.md](performance-testing.md) | | i18n & localization | [i18n-and-localization.md](i18n-and-localization.md) | | Multi-tab & popups | [multi-context-and-popups.md](multi-context-and-popups.md) | | Clock & time mocking | [clock-and-time-mocking.md](clock-and-time-mocking.md) | | Third-party integrations | [third-party-integrations.md](third-party-integrations.md) |
Architecture Decisions
| Question | Guide | | ------------------------ | -------------------------------------------- | | Which locator strategy? | [locator-strategy.md](locator-strategy.md) | | E2E vs component vs API? | [test-architecture.md](test-architecture.md) | | Mock vs real services? | [when-to-mock.md](when-to-mock.md) |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: zebbern
- Source: zebbern/claude-code-guide
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.