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/punkadillo/figma-code-composer/atomic-design-templatesnpx skills add punkadillo/figma-code-composer --skill atomic-design-templatesgit clone --depth 1 https://github.com/punkadillo/figma-code-composerWrote 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/punkadillo/figma-code-composer/atomic-design-templates)<a href="https://agentmods.dev/skills/punkadillo/figma-code-composer/atomic-design-templates"><img src="https://agentmods.dev/badge/skills/punkadillo/figma-code-composer/atomic-design-templates.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.1 | $0.00029 | $0.05895 |
| Opus 5 | $0.00015 | $0.02948 |
| Sonnet 5 | $0.00006 | $0.01179 |
| Haiku 4.5 | $0.00003 | $0.00590 |
Grade A, and why
atomic-design-templates 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 5d 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 — 1,070 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Atomic Design: Templates
Master the creation of templates - page-level layouts that define content structure without actual content. Templates establish the skeletal structure that pages will use.
What Are Templates?
Templates are the page-level objects that place components into a layout and articulate the design's underlying content structure. They are:
- Composed of organisms: Arrange organisms into page layouts
- Content-agnostic: Use placeholder content, not real data
- Structural: Define where content types will appear
- Reusable: Same template can be used by multiple pages
- Responsive: Handle all viewport sizes
Common Template Types
Marketing Templates
- Landing page layouts
- Homepage layouts
- Product showcase layouts
- About/Company layouts
Application Templates
- Dashboard layouts
- Settings page layouts
- Profile page layouts
- List/Detail page layouts
Content Templates
- Blog post layouts
- Article layouts
- Documentation layouts
- Help center layouts
E-commerce Templates
- Product listing layouts
- Product detail layouts
- Checkout layouts
- Order confirmation layouts
MainLayout Template Example
Complete Implementation
// templates/MainLayout/MainLayout.tsx
import React from 'react';
import { Header, type HeaderProps } from '@/components/organisms/Header';
import { Footer, type FooterProps } from '@/components/organisms/Footer';
import styles from './MainLayout.module.css';
export interface MainLayoutProps {
/** Header configuration */
headerProps: HeaderProps;
/** Footer configuration */
footerProps: FooterProps;
/** Main content */
children: React.ReactNode;
/** Show breadcrumbs */
showBreadcrumbs?: boolean;
/** Breadcrumb component */
breadcrumbs?: React.ReactNode;
/** Maximum content width */
maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | 'full';
/** Page background color */
background?: 'white' | 'gray' | 'primary';
}
export const MainLayout: React.FC<MainLayoutProps> = ({
headerProps,
footerProps,
children,
showBreadcrumbs = false,
breadcrumbs,
maxWidth = 'lg',
background = 'white',
}) => {
return (
<div className={`${styles.layout} ${styles[`bg-${background}`]}`}>
<Header {...headerProps} />
<main className={styles.main}>
{showBreadcrumbs && breadcrumbs && (
<div className={styles.breadcrumbs}>{breadcrumbs}</div>
)}
<div className={`${styles.content} ${styles[`max-${maxWidth}`]}`}>
{children}
</div>
</main>
<Footer {...footerProps} />
</div>
);
};
MainLayout.displayName = 'MainLayout';
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.
- 5d ago First seen · 1,070 lines · 29 tokens per session scan A a1c9a8212761
atomic-design-templates is a skill published in the GitHub repository punkadillo/figma-code-composer (3 stars, last pushed 17d ago), licensed MIT. It adds 29 tokens to every session and 5,895 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-31.
Other skills, from other repositories
worker-integration
Worker-Agent integration for intelligent task dispatch and performance tracking.
agui-dotnet-sample-step
Add a GettingStarted sample Step (a Server/Client pair) to the AG-UI .NET SDK that demonstrates one protocol feature the way we want users to write it. USE FOR: adding a new samples/GettingStarted/StepNN Server+Client pair, wiring it into AGUI.slnx and the integration-test project, giving it a deterministic…
cog-knowledge-consolidation
Build structured knowledge frameworks from scattered vault notes with source attribution.
revdiff-plan
Review the last Codex assistant message (plan, analysis, or proposal) with inline annotations in a TUI overlay. Extracts the most recent response from Codex rollout files and opens it in revdiff for review and annotation. Activates on "revdiff-plan", "review plan with revdiff", "annotate plan", "review last response"…
plan-implementation
Disciplined execution of approved plans with step-by-step verification, phase checkpoints, failure investigation, and mandatory code/security reviews.
security-review
Security vulnerability assessment identifying OWASP risks, injection vectors, authentication issues, and data exposure with severity classification.