Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/MasRama/naranpx agentmods add skills/masrama/nara/nara-frontendWrote 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/masrama/nara/nara-frontend)<a href="https://agentmods.dev/skills/masrama/nara/nara-frontend"><img src="https://agentmods.dev/badge/skills/masrama/nara/nara-frontend/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/masrama/nara/nara-frontend"><img src="https://agentmods.dev/badge/skills/masrama/nara/nara-frontend.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.00023 | $0.00897 |
| Opus 5 | $0.00012 | $0.00449 |
| Sonnet 5 | $0.00005 | $0.00179 |
| Haiku 4.5 | $0.00002 | $0.00090 |
Grade A, and why
nara-frontend 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 3d 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 — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Frontend Patterns (Vue 3 + Vite + Router)
How to build browser UI on the fixed Vue 3 + Vite + TypeScript stack with
vue-router. Feature-specific browser code belongs to the owning Feature:
src/features/<feature>/web/
├── pages/*.vue
├── components/*.vue
├── composables/*.ts
└── client.ts
Application-wide Vue composition belongs under src/app/. Keep
resources/app.ts as a thin Vite entrypoint that mounts the app-layer
root component. A Feature may omit web/ when it has no browser surface.
Application bootstrap
// resources/app.ts
import { createApp } from 'vue';
import App from '../src/app/App.vue';
import router from '../src/app/router';
createApp(App).use(router).mount('#app');
Use Vue Composition API in single-file components:
<script setup lang="ts">
import { computed, ref } from 'vue';
const open = ref(false);
const label = computed(() => (open.value ? 'Close' : 'Open'));
</script>
Use ref, computed, watch, onMounted, and onBeforeUnmount for
state and lifecycle behavior.
API clients and responses
Prefer the feature-scoped typed client in the owning Feature's
web/client.ts:
const response = await authClient.login({ email, password });
if (!response.success) {
errorMessage.value = response.message;
}
Keep request and response types in the Feature contract. Handle loading, validation, and error state in the page or a Feature-owned composable: disable the submit control while pending, render field errors from the contract's error shape, and clear stale errors on input.
Every state-changing /api/* request must satisfy the application's
double-submit CSRF middleware. Provider-owned Auth clients may use Auth's CSRF
helpers directly. A reusable Feature must stay provider-neutral: declare the
CSRF capability on its web host and inject it into the typed client, following
UsersWebHost.csrf + createUsersClient({ csrf }). Do not import Auth web
internals merely to obtain a CSRF token.
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.
- 3d ago Changed · +20 lines 1b3c7486fee5
- 6d ago First seen · 91 lines · 23 tokens per session scan A 077c448a3f30
nara-frontend is a skill published in the GitHub repository MasRama/nara (5 stars, last pushed today), licensed MIT. It adds 23 tokens to every session and 897 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-09-05.
Other skills, from other repositories
vue-application-structure
Establishes or reviews the directory layout, component conventions, composable design, Pinia store structure, and Vue Router configuration for a Vue 3 TypeScript application. Invoked when the user asks to structure a Vue app, set up the project layout, or review Vue architecture.
vue-component-design
Designs or reviews Vue 3 component APIs. Handles prop drilling decisions, applies compound component patterns with provide/inject, defines minimal public API surfaces with typed props/emits/slots, and enforces Vue 3.4+ composition conventions. Invoked when creating new components, refactoring existing ones, or…
module-federation
Add, review, or debug client-rendered Module Federation support in Rsbuild-first TypeScript applications. Covers host/remote roles, exposes, remotes, shared dependencies, generated types, runtime loading failures, and observability checks.
vue-component-testing
Applies the three-tier test taxonomy for Vue 3 applications: writes unit tests for composables and Pinia stores with Vitest, component tests for behaviour and user interactions with @testing-library/vue, and acceptance tests for full user flows with Playwright. Ensures tests focus on observable behaviour, not…
next-application-structure
Establishes or reviews directory layout, server/client boundaries, routing, data-fetching strategy, and testing structure for Next.js 14+ App Router TypeScript applications. Invoked when the user asks to structure a Next app, set App Router conventions, or review architecture for React parity.
react-application-structure
Establishes or reviews the directory layout, feature boundaries, state design, routing approach, and data-fetching conventions for a React 18+ TypeScript application. Invoked when the user asks to structure a React app, set up a scalable architecture, or review React project organization.