Borrowing it
Nothing to install: this file belongs to irahardianto/rugged-gemini. 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/irahardianto/rugged-gemini/main/.gemini/skills/project-structure-vue/SKILL.mdgit clone --depth 1 https://github.com/irahardianto/rugged-geminiWrote 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/irahardianto/rugged-gemini/project-structure-vue)<a href="https://agentmods.dev/skills/irahardianto/rugged-gemini/project-structure-vue"><img src="https://agentmods.dev/badge/skills/irahardianto/rugged-gemini/project-structure-vue/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/irahardianto/rugged-gemini/project-structure-vue"><img src="https://agentmods.dev/badge/skills/irahardianto/rugged-gemini/project-structure-vue.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.00000 | $0.00536 |
| Opus 5 | $0.00000 | $0.00268 |
| Sonnet 5 | $0.00000 | $0.00107 |
| Haiku 4.5 | $0.00000 | $0.00054 |
Grade A, and why
project-structure-vue 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 8d 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 — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Vue/React Frontend Layout
Vertical slice — features are self-contained modules, not scattered across global folders.
apps/
frontend/
src/
assets/ # Fonts, images
features/ # Vertical slices. Each SELF-CONTAINED.
task/
components/ # Feature-specific components (NOT in top-level)
TaskForm.vue
TaskListItem.vue
TaskFilters.vue
TaskInput.vue
TaskInput.spec.ts # Component unit tests
store/
task.store.ts # Pinia store
task.store.spec.ts
api/
task.api.ts # interface TaskAPI
task.api.backend.ts # Production impl
task.api.mock.ts # Test impl
services/
task.service.ts
task.service.spec.ts
types/ # TS interfaces (DTOs)
composables/ # Feature-specific hooks
index.ts # Public exports only
order/
composables/ # Global reactive logic (useAuth, useTheme)
components/
ui/ # Shared atoms/molecules. NO domain logic.
BaseButton.vue
BaseButton.spec.ts
types.ts
index.ts
layout/ # Organisms (header, sidebar, error boundary)
AppHeader.vue
AppSidebar.vue
ErrorBoundary.vue
EmptyState.vue
layouts/ # App shells (Sidebar, Navbar wrappers)
MainLayout.vue
AuthLayout.vue
views/ # Route entry points ("Glue")
HomeView.vue
TaskView.vue
utils/ # Pure stateless helpers. No domain, no reactivity.
router/
plugins/ # Library configs (Axios, I18n)
App.vue
main.ts
Key: features/ = vertical slices, export via index.ts. components/ui/ = shared dumb UI. views/ compose features. Feature components inside feature, NOT top-level. Applies to React (.tsx), Vue (.vue), Svelte (.svelte) — swap state mgmt as needed.
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.
- 8d ago First seen · 72 lines · 0 tokens per session scan A 6e1c92ed38e0
project-structure-vue is a skill published in the GitHub repository irahardianto/rugged-gemini (5 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 536 tokens. 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-03.
Other skills, from other repositories
ui-toolkit/web
Reference skill for Zoom Video SDK UI Toolkit. Use after routing to a web video workflow when you want prebuilt React UI instead of building a fully custom Video SDK interface.
zoom-meeting-sdk-web-component-view
Zoom Meeting SDK Web - Component View. Embeddable Zoom meeting components with Promise-based API for flexible integration. Ideal for React/Vue/Angular apps and custom layouts. Uses ZoomMtgEmbedded with async/await patterns and embeddable UI containers.
astro
Build content-focused websites with Astro — zero JS by default, islands architecture, multi-framework components, and Markdown/MDX support.
tanstack-form
Headless, performant, and type-safe form state management for TS/JS, React, Vue, Angular, Solid, Lit, and Svelte.
create-site
Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…
web-development
Use when users need to implement, integrate, debug, build, deploy, or validate a Web frontend after the product direction is already clear, especially for React, Vue, Vite, browser flows, or CloudBase Web integration.