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...