create-ts-entry-point — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited create-ts-entry-point (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.
Read @.ai/Component/Javascript/CONTEXT.md for the page structure and webpack config.
Create admin-dev/themes/new-theme/js/pages/{domain}/:
{domain}/
├── index.ts # Listing page entry point
├── form.ts # Form page entry point (simple)
│ OR form/index.ts # Form page entry point (complex, with sub-files)
└── {domain}-map.ts # DOM selector mappings (optional, for pages with many selectors)For simple pages, index.ts and form.ts are enough. Only create subdirectories and manager classes for genuinely complex pages.
index.ts)Initializes the Grid instance and adds extensions. See init-grid-extensions skill for the full extension list and patterns.
Reference: admin-dev/themes/new-theme/js/pages/tax/index.ts (simple), admin-dev/themes/new-theme/js/pages/manufacturer/index.ts (multiple grids)
form.ts or form/index.ts)Initializes the global components the form needs. See init-js-components skill for the full component list and usage.
For simple forms, a few initComponents calls are all you need. For complex forms with Vue sections, see the create-vue-integration skill.
Reference: admin-dev/themes/new-theme/js/pages/attribute/form/index.ts (simple form)
Add the entry point in admin-dev/themes/new-theme/.webpack/common.js:
entry: {
// ...existing entries...
{domain}: './js/pages/{domain}', // listing
{domain}_form: './js/pages/{domain}/form', // form (if separate)
}Output: admin-dev/themes/new-theme/public/{domain}.bundle.js
The Twig template must include this bundle via a <script> tag (see create-twig-index-template / create-twig-form-template).
new Grid('{domain}') must match the GRID_ID from the PHP grid definition~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.