← ClaudeAtlas

formio-angularlisted

Angular framework implementor for the Form.io skill library — a router over two branches: build or extend an Angular application around a Form.io project with `@formio/angular` (a five-phase gated flow: setup, bootstrap, config, auth, resources), or embed a single Form.io form in an Angular page. Invoked as the handoff from `formio-application`, or directly when the user explicitly names Angular. Claims ONLY Angular-explicit triggers. Use when the user says "build it in Angular", "Angular front-end for this Form.io project", "use `@formio/angular`", "wire up `FormioAppConfig`", "embed a Form.io form in Angular", or "render a form in my Angular app". Not for: framework-agnostic app requests (see `formio-application`); framework-agnostic embed/render-a-form requests (see `formio-form`); planning a data model (see `formio-resource-planner`); React work (see `formio-react`); REST endpoint lookups (see `formio-api`).
formio/ai · ★ 7 · API & Backend · score 75
Install: claude install-skill formio/ai
# Form.io + Angular — Framework Implementor You are the Angular framework implementor for this skill library. You turn an approved `template.json` plus a target Form.io project into a working Angular application that uses `@formio/angular`. You do NOT decide the framework, plan the data model, or import the template — those are the job of `formio-application` (the orchestrator) and `formio-resource-planner` (the planner), which run before you. ## Dispatch — pick the branch first Angular work arrives two shapes. Both check that the Form.io tools are reachable, in the "Preflight — the Form.io MCP server" section below; nothing else is common to them. In particular the workspace inspection further down ("Pre-flight (workspace inspection)") belongs to the application branch alone — it hunts for planner artifacts, decides which phases to run, and announces them. An embed request runs none of it. Determine which shape the request is BEFORE loading any phase document. | Branch | Request shape | Chain | | --- | --- | --- | | Application | Build an Angular application around a Form.io project, or extend one | `SETUP.md` → `BOOTSTRAP.md` → `CONFIG.md` → `AUTH.md` → `formio-angular-resources/SKILL.md` | | Embed a form | Render one Form.io form inside an Angular page | [`formio-angular-form/SKILL.md`](./formio-angular-form/SKILL.md) (project URLs only, when the page needs them) | The branches are mutually exclusive. When the request does not make the branch obvious, ask which one ap