rugged-gemini: Skill for Claude Code

.gemini/skills/project-structure-vue/SKILL.md

project-structure-vue is a skill for Claude Code, Gemini CLI from irahardianto/rugged-gemini. It costs 0 tokens per session (536 once invoked), scanned A, original, MIT.

A recommended Vue and React frontend layout that groups each product feature into a self-contained module with its components, state, API code, and tests.

In plain words
What is it for?
Use it when organizing Vue or React applications with feature-specific components, stores, services, composables, types, and tests.
Why use it?
It prevents feature code from being spread across unrelated global folders, making changes easier to locate and contain.

Skill for Claude CodeGemini CLI

Written for Claude Code and Gemini CLI: paths in frontmatter, but also installed under .gemini/. Also seen: mentions Gemini CLI.

This is irahardianto/rugged-gemini's own configuration. It tells Claude Code and Gemini CLI how to work on rugged-gemini itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything rugged-gemini configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/irahardianto/rugged-gemini/main/.gemini/skills/project-structure-vue/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/irahardianto/rugged-gemini

Made for: Claude Code, Gemini CLI.

Wrote 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.

agentmods badge for project-structure-vue

README.md
[![agentmods](https://agentmods.dev/badge/skills/irahardianto/rugged-gemini/project-structure-vue/github.svg)](https://agentmods.dev/skills/irahardianto/rugged-gemini/project-structure-vue)
Your own site
<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.

agentmods 80×15 button for project-structure-vue

Your own site · 80×15
<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>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 536 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 8d ago against content hash 6e1c92ed38e0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

.gemini/skills/project-structure-vue/SKILL.md · 72 lines

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.

Read the full file on GitHub · 72 lines

Changes

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.

  1. 8d ago First seen · 72 lines · 0 tokens per session scan A 6e1c92ed38e0

Subscribe to this mod's changes

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.

Related

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.

anthropics/knowledge-work-plugins · 39 tokens

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.

anthropics/knowledge-work-plugins · 61 tokens

astro

Build content-focused websites with Astro — zero JS by default, islands architecture, multi-framework components, and Markdown/MDX support.

sickn33/agentic-awesome-skills · 28 tokens

tanstack-form

Headless, performant, and type-safe form state management for TS/JS, React, Vue, Angular, Solid, Lit, and Svelte.

Kiranism/next-shadcn-dashboard-starter · 34 tokens

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…

microsoft/power-platform-skills · 73 tokens

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.

TencentCloudBase/CloudBase-AI-Toolkit · 49 tokens