implement-ag-playbook — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited implement-ag-playbook (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Usage: /implement-ag-playbook PLAYBOOK_NAME [MODE]
Examples:
/implement-ag-playbook onboarding - Implement all available prompts/implement-ag-playbook login 3-frameworks - Implement only PROMPT-3-FRAMEWORKS.md/implement-ag-playbook login react - Implement only PROMPT-REACT.mdImplement the specified playbook based on its existing PROMPT specification files.
Complete playbooks have this structure (see v2/playbooks/README.md):
v2/playbooks/[name]/
├── PROMPT-3-FRAMEWORKS.md # Builds → react-example/, vue-example/, lit-example/
├── PROMPT-REACT.md # Builds → react/
├── PROMPT-VUE.md # Builds → vue/
├── PROMPT-LIT.md # Builds → lit/
└── design/ # Shared assets (mockups, icons, images)Single-Framework vs 3-Frameworks differences:
logo.svg vs logo-3-frameworks.svg)v2/playbooks/$ARGUMENTS/ existsPROMPT-3-FRAMEWORKS.mdPROMPT-REACT.mdPROMPT-VUE.mdPROMPT-LIT.mdagnosticui-cli add)v2/playbooks/$ARGUMENTS/For 3-frameworks mode:
npm create vite@latest react-example -- --template react-ts
npm create vite@latest vue-example -- --template vue-ts
npm create vite@latest lit-example -- --template lit-tsFor single-framework mode:
npm create vite@latest react -- --template react-ts # PROMPT-REACT.md
npm create vite@latest vue -- --template vue-ts # PROMPT-VUE.md
npm create vite@latest lit -- --template lit-ts # PROMPT-LIT.mdnpm install && npm install lucide-react litnpm install && npm install lucide-vue-next litnpm install && npm install lit npx agnosticui-cli init --framework [react|vue|lit] --skip-prompts
npx agnosticui-cli add [COMPONENTS from prompt]design/ folder for assets beyond mockupsonboarding)public/ folderag-* tags: vue({
template: {
compilerOptions: {
isCustomElement: (tag) => tag.startsWith('ag-'),
},
},
}) import './components/ag/styles/ag-tokens.css'
import './components/ag/styles/ag-tokens-dark.css'index.html per PROMPT specificationtsconfig.app.json: "strict": false,
"noUnusedLocals": false,
"noUnusedParameters": falsesrc/App.tsx using React wrappers + lucide-reactsrc/App.vue using Vue wrappers + lucide-vue-nextnpm run build in each projectnpm run devdesign/git diff --statimport { Icon } from "lucide-react"import { Icon } from "lucide-vue-next"./components/ag/[Component]/react/./components/ag/[Component]/vue/./components/ag/[Component]/core/selection-change events{ value, checked, selectedValues }| Issue | Fix |
|---|---|
Vue ag-* warnings | Add isCustomElement to vite.config.ts |
| TypeScript strict errors | Relax tsconfig.app.json settings |
| Missing dark mode | Import both ag-tokens.css AND ag-tokens-dark.css |
Button isDisabled prop | Use disabled not isDisabled |
| Timeline connector misalignment | Ensure core component has ::slotted(*) { box-sizing: border-box } |
If a playbook is missing PROMPT files, notify the user:
Warning: The $ARGUMENTS playbook is incomplete.>
Present: [list files] Missing: [list files]
>
Complete playbooks should have: -PROMPT-3-FRAMEWORKS.md→react-example/,vue-example/,lit-example/-PROMPT-REACT.md→react/-PROMPT-VUE.md→vue/-PROMPT-LIT.md→lit/
>
Would you like to: 1. Implement only the available prompts 2. Generate the missing PROMPT files first
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.