Borrowing it
Nothing to install: this file belongs to terrene-foundation/metis. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/terrene-foundation/metis/main/.claude/skills/11-frontend-integration/SKILL.mdgit clone --depth 1 https://github.com/terrene-foundation/metisWrote 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/terrene-foundation/metis/11-frontend-integration)<a href="https://agentmods.dev/skills/terrene-foundation/metis/11-frontend-integration"><img src="https://agentmods.dev/badge/skills/terrene-foundation/metis/11-frontend-integration/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/terrene-foundation/metis/11-frontend-integration"><img src="https://agentmods.dev/badge/skills/terrene-foundation/metis/11-frontend-integration.svg" alt="Reviewed on agentmods" width="80" 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.00084 | $0.01056 |
| Opus 5 | $0.00042 | $0.00528 |
| Sonnet 5 | $0.00017 | $0.00211 |
| Haiku 4.5 | $0.00008 | $0.00106 |
Grade A, and why
frontend-integration 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 10d 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 — 171 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Kailash Frontend Integration
Guides for integrating Kailash workflows with frontend frameworks including React and Flutter.
Overview
Frontend integration patterns for:
- React applications with Kailash workflows
- Flutter mobile/desktop apps with Kailash
- API client setup and configuration
- State management patterns
- Real-time updates and streaming
Reference Documentation
React Integration
- react-integration-quick - React integration quick start
- Setup with Nexus API
- React Query integration
- TypeScript types
- Error handling
- State management
- Real-time updates
Flutter Integration
- flutter-integration-quick - Flutter integration quick start
- HTTP client setup
- Dart models
- State management (Riverpod/Bloc)
- Error handling
- Platform-specific code
General Frontend
- frontend-developer - Frontend development guide
- Architecture patterns
- API integration
- Authentication
- Error handling
- Best practices
Integration Patterns
React + Nexus
import { useQuery } from "@tanstack/react-query";
// Call Kailash workflow via Nexus API
const { data, isLoading, error } = useQuery({
queryKey: ["workflow", workflowId],
queryFn: () =>
fetch(`/api/workflow/${workflowId}`, {
method: "POST",
body: JSON.stringify({ input: "data" }),
}).then((res) => res.json()),
});
Flutter + Nexus
import 'package:http/http.dart' as http;
// Call Kailash workflow
Future<Map<String, dynamic>> executeWorkflow(String workflowId, Map<String, dynamic> input) async {
final response = await http.post(
Uri.parse('$baseUrl/api/workflow/$workflowId'),
body: jsonEncode(input),
);
return jsonDecode(response.body);
}
Architecture Patterns
Recommended Stack
React Applications:
- API Layer: Nexus (multi-channel platform)
- State Management: React Query / Zustand
- HTTP Client: Fetch API / Axios
- Type Safety: TypeScript with generated types
- UI Framework: Shadcn, Material-UI, or custom
What ships with it
5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 10d ago First seen · 171 lines · 84 tokens per session scan A 773f01c36b7b
frontend-integration is a skill published in the GitHub repository terrene-foundation/metis (2 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 84 tokens to every session and 1,056 once invoked, about $0.0004 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
expo-native-ui
Framework (OSS). Build beautiful, native-feeling Expo screens. Covers Apple HIG styling, semantic colors, native controls, SF Symbols, media, visual effects, gradients, storage, and responsive layout. For routing and navigation, use the expo-router skill; for motion and animation, use the expo-animation skill.
expo-web-to-native
Framework (OSS). Migrate an existing web React app to a native iOS/Android app with Expo. Use when the user wants to turn a website into a mobile app, port a Next.js/Vite/CRA React codebase to React Native, reuse web code on native incrementally, or asks how web idioms (the DOM, CSS, React Router, localStorage…
truesheet-usage
Consumer-side guide for integrating @lodev09/react-native-true-sheet into a React Native app. Use this skill whenever the user wants to add, configure, control, or debug a bottom sheet using TrueSheet — including ref-based sheets, named global sheets, web support with TrueSheetProvider/useTrueSheet, React Navigation…
building-ui
Complete guide for building beautiful apps with Expo Router. Covers fundamentals, styling, components, navigation, animations, patterns, and native tabs.
use-dom
Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally.
react-native-ease-refactor
Scan for Animated/Reanimated code and migrate to EaseView.