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/smicolon/ai-kit/responsive-layoutnpx skills add smicolon/ai-kit --skill responsive-layoutgit clone --depth 1 https://github.com/smicolon/ai-kitWrote 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/smicolon/ai-kit/responsive-layout)<a href="https://agentmods.dev/skills/smicolon/ai-kit/responsive-layout"><img src="https://agentmods.dev/badge/skills/smicolon/ai-kit/responsive-layout.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.00034 | $0.00601 |
| Opus 5 | $0.00017 | $0.00300 |
| Sonnet 5 | $0.00007 | $0.00120 |
| Haiku 4.5 | $0.00003 | $0.00060 |
Grade A, and why
responsive-layout 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 yesterday.
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 — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Responsive Layout in Flutter
Techniques for building cross-platform Flutter layouts that adapt to phones, tablets, foldables, and desktops.
Breakpoint System
class ResponsiveBreakpoints {
static const double mobile = 600;
static const double tablet = 900;
static const double desktop = 1200;
static bool isMobile(BuildContext context) =>
MediaQuery.sizeOf(context).width < mobile;
static bool isTablet(BuildContext context) =>
MediaQuery.sizeOf(context).width >= mobile &&
MediaQuery.sizeOf(context).width < desktop;
static bool isDesktop(BuildContext context) =>
MediaQuery.sizeOf(context).width >= desktop;
}
Pattern 1: LayoutBuilder for Component Adaptability
Use LayoutBuilder when a component should adapt based on its parent container's width, rather than the entire screen:
class AdaptiveCardList extends StatelessWidget {
const AdaptiveCardList({super.key});
@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, constraints) {
if (constraints.maxWidth > 800) {
// Grid layout on wide containers
return GridView.builder(
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3,
childAspectRatio: 1.5,
crossAxisSpacing: 16,
mainAxisSpacing: 16,
),
itemCount: 9,
itemBuilder: (context, index) => CardTile(index),
);
} else {
// Vertical list on narrow containers
return ListView.builder(
itemCount: 9,
itemBuilder: (context, index) => CardTile(index),
);
}
},
);
}
}
Pattern 2: Master-Detail Layout for Tablets/Desktop
Widget build(BuildContext context) {
final isWide = ResponsiveBreakpoints.isTablet(context) || ResponsiveBreakpoints.isDesktop(context);
if (isWide) {
return Row(
children: [
const SizedBox(width: 320, child: ItemsListPane()),
const VerticalDivider(width: 1),
const Expanded(child: ItemDetailPane()),
],
);
}
return const ItemsListPane(); // Mobile pushes to detail route
}
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.
- yesterday First seen · 90 lines · 34 tokens per session scan A d3266d03b4f0
responsive-layout is a skill published in the GitHub repository smicolon/ai-kit (6 stars, last pushed yesterday), licensed MIT. It adds 34 tokens to every session and 601 once invoked, about $0.0002 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-09-04.
Other skills, from other repositories
add-signal
Add Signal channel integration via signal-cli device-link. Native adapter — no Chat SDK bridge.
swiftui-dev
Use this skill for SwiftUI development, architecture, structure, performance, and Apple native app profiling. It combines.
designing-hardware-products
AI-automated hardware product pipeline: from requirements to manufacturable Gerber + compiled firmware + cross-platform app. Orchestrates system design, ESP-IDF firmware, KiCad PCB, UniApp client, and release packaging in a zero-human-touch flow.
developing-mobile-apps
Mobile development knowledge reference covering iOS (SwiftUI), Android (Jetpack Compose), React Native, and Flutter. Use when building mobile apps, working with cross-platform frameworks, or implementing native UI patterns.
aio-ios-device-debug
Debug iOS apps on physical devices from the terminal — deploy to iPhone or iPad with xcodebuild, capture syslog via idevicesyslog, pull crash reports from the device, analyze .ips crash files, and take device screenshots. Covers the full loop: build, install, launch, capture syslog, pull crash report, analyze .ips…
lumi-app-finder
Finds verified live Lumi Studio iPhone and iPad apps from a first-party catalog covering 46 apps and all 50 Apple locales. Use when a user asks which iOS or App Store app fits a task, especially for pay-once or one-time-unlock, privacy-conscious, learning, productivity, photo, travel, or wellness needs. Returns…