Use when creating or debugging authorization rules in authz.html — rule schema, matching model, common patterns, and...
find ~/alistaircroll/ -name "*.skill"
Use when creating a new Pagelove app from scratch — step-by-step workflow, data model design, common interaction...
Use when writing JavaScript for a Pagelove app — PLDocument, PLElement, DOMSubscriber, events, and the OPTIONS...
Use when writing or reviewing Pagelove app code — DOM-as-state, polling patterns, debugging checklist, state...
Use when building any Pagelove interaction — understanding HTTP methods on DOM elements, selectors, status codes,...
Use when an app needs multiple HTML files acting as relational tables — foreign keys, URL parameter navigation,...
Use when you need server-side document composition — includes, resource binding, Liquid templates, and resource...
Use when building any app on the Pagelove platform — where HTML files are databases and DOM elements have HTTP methods
Use when creating or modifying files on the Pagelove platform — server normalization, WebDAV caveats, JS MIME...
Run the production build including type-checking, and collect build metrics (duration, bundle size, route count,...
Check and upgrade all project dependencies — kill zombie processes, check for outdated packages, upgrade everything...
Generate the CI/CD pipeline report — save a JSON companion file, build a multi-page HTML report with history...
Detect and run end-to-end or integration tests, ensuring a clean environment (no zombie processes, free ports)....
Verify the deployed application works as a real user would experience it — browser automation against live...
Take stock of a project before any changes — identify the project, survey files, analyze recency, diff local vs...
Push to the Git remote that triggers deployment — detect push target, handle no-op when no new commits exist, and...
Run security checks before code leaves the machine — secrets scanning (gitleaks), .gitignore hygiene, dependency...
Detect and run the project's unit test suite, collecting pass/fail counts, duration, and error details. Use as Phase...
Full CI/CD pipeline — runs project inventory, dependency checks, tests, build, security, deployment, production...
Confirm the deployment succeeded on the hosting platform by polling programmatically — no sleep timers. Detect the...