Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/itallstartedwithaidea/agent-skills/low-code-generationnpx skills add itallstartedwithaidea/agent-skills --skill low-code-generationgit clone --depth 1 https://github.com/itallstartedwithaidea/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/itallstartedwithaidea/agent-skills/low-code-generation)<a href="https://agentmods.dev/skills/itallstartedwithaidea/agent-skills/low-code-generation"><img src="https://agentmods.dev/badge/skills/itallstartedwithaidea/agent-skills/low-code-generation.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00029 | $0.01382 |
| Opus 5 | $0.00015 | $0.00691 |
| Sonnet 5 | $0.00006 | $0.00276 |
| Haiku 4.5 | $0.00003 | $0.00138 |
Grade A, and why
low-code-generation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Low-Code Generation
Part of Agent Skills™ by googleadsagent.ai™
Description
Low-Code Generation uses AI to produce forms, tables, dashboards, and workflow UIs from natural language descriptions or schema definitions. The agent generates production-ready components spanning the zero-code to full-code spectrum: from drag-and-drop JSON configurations to fully custom React components, always producing the simplest artifact that meets the requirement.
The spectrum principle is key: not everything needs custom code, and not everything can be configured. A CRUD table for an admin panel is best served by a JSON-driven table component with sort, filter, and pagination built in. A complex multi-step form with conditional logic benefits from a form schema with validation rules. A bespoke analytics dashboard with custom visualizations requires full code. The agent selects the appropriate abstraction level based on complexity.
This skill draws from enterprise low-code platforms like JeecgBoot, encoding patterns for rapid UI generation: schema-driven forms with validation, configurable data tables with server-side operations, workflow builders with drag-and-drop nodes, and report generators with chart composition. Each pattern reduces a multi-day development task to minutes.
Use When
- Generating admin panels or CRUD interfaces rapidly
- Building forms from database schemas or API specifications
- Creating data tables with sorting, filtering, and pagination
- Producing dashboard layouts with configurable widgets
- Scaffolding entire applications from entity-relationship diagrams
- The user requests "quick UI", "admin panel", or "form builder"
How It Works
graph TD
A[Input: Schema / Description] --> B[Complexity Assessment]
B --> C{Abstraction Level}
C -->|Zero-Code| D[JSON Config Generation]
C -->|Low-Code| E[Schema + Custom Handlers]
C -->|Full-Code| F[Complete Component Code]
D --> G[Config-Driven Renderer]
E --> H[Schema-Driven Component]
F --> I[Custom React Component]
G --> J[Preview + Iterate]
H --> J
I --> J
J --> K[Production Output]
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 148 lines · 29 tokens per session scan A e0b7560031af
low-code-generation is a skill published in the GitHub repository itallstartedwithaidea/agent-skills (36 stars, last pushed 4mo ago), licensed MIT. It adds 29 tokens to every session and 1,382 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
add-provider
Add or extend an open-source OOMOL Connect provider under src/providers, including provider definition, action schemas, local executors, credential validation, examples, and generated catalog updates.
startup-icp-definer
Define startup ICPs with company profile, buyer persona, user persona, buying center, pain hierarchy, triggers, and targeting focus. Triggers on ICP definition, target audience, personas, buying centers, and who-to-sell-to questions.
add-tool
Scaffold a new MCP tool definition. Use when the user asks to add a tool, create a new tool, or implement a new capability for the server.
api-linter
MCP definition linter rules reference. Use when bun run lint:mcp or bun run devcheck reports a lint error or warning (format-parity, schema-is-object, name-format, server-json-, etc.) and you need to understand the rule, its severity, and how to fix it. Every rule ID the linter emits has an entry in this doc.
field-test
Exercise tools, resources, and prompts against a live HTTP server via MCP JSON-RPC over curl. Starts the server, surfaces the catalog, runs real and adversarial inputs, and produces a tight report with concrete findings and numbered follow-up options. Use after adding or modifying definitions, or when the user asks to…
add-test
Scaffold a test file for an existing tool, resource, or service. Use when the user asks to add tests, improve coverage, or when a definition exists without a matching test file.