Back to list
JStaRFilms

prime-agent

by JStaRFilms

A comprehensive suite of protocols, meta-prompts, and orchestration tools designed to streamline software development workflows, project management, and team collaboration. Includes the VibeCode Protocol Suite with web interface, user manuals, and reusable templates for efficient development processes.

9🍴 1📅 Jan 20, 2026

SKILL.md


name: prime-agent description: Load project context including coding guidelines, styling rules, and folder structure before starting work.

Prime Agent Skill

Load the "brain" of the project — coding guidelines, styling rules, and architectural decisions.

When to Use

  • Start of session
  • Before complex work
  • After /migrate to supplement snapshot
  • When context seems lost

Load Core Documentation

# Coding Guidelines
cat docs/coding_guidelines.md 2>/dev/null || \
cat docs/Coding_Guidelines.md 2>/dev/null

# Styling Guide
cat docs/Styling*.md 2>/dev/null || \
cat docs/design/*.md 2>/dev/null

# Styling Addendum (project-specific)
cat docs/Styling-Addendum.md 2>/dev/null

Check for UI Mockups

ls docs/mockups/ 2>/dev/null
ls docs/design/mockups/ 2>/dev/null
ls docs/design/design-system.html 2>/dev/null

IMPORTANT: If mockups exist, they are the UNQUESTIONABLE source of truth for UI. Replicate exactly.

Key Rules to Internalize

From Coding Guidelines

  • Blueprint Protocol: Plan before code, docs in docs/features/
  • 200-Line Rule: Refactor if exceeded
  • File Structure: Feature-sliced design (src/features/[Name]/)
  • Server vs Client: RSCs by default, 'use client' sparingly
  • Service Pattern: Route Handlers = controllers, Services = business logic
  • Validation: Zod for all inputs

From Styling Guide

  • Tailwind v4: CSS-first with @theme tokens
  • Core Tokens: --color-background, --color-foreground, --color-border
  • Dark Mode: @theme .dark { } overrides
  • Animations: Define in CSS with @keyframes

Acknowledgment

After loading, state:

"✅ Agent Primed. Internalized:

Coding Guidelines:

  • Blueprint Protocol: Plan → Approve → Build → Document
  • 200-line component limit
  • Feature-sliced architecture
  • Server Components default

Styling Rules:

  • Tailwind v4 with @theme tokens
  • Dark mode via .dark class

UI Mockups: [List any found or 'None']

What would you like to build?"

Quick Reference Card

src/
├── app/           # Next.js App Router pages
├── features/      # Feature-sliced modules
│   └── [Name]/    # Components, hooks, services
├── components/ui/ # Reusable UI components
├── lib/           # Utilities, API clients
└── scripts/       # Build/automation scripts

Key Commands:

  • npm run dev — Start development
  • npm run build — Production build
  • npm run db:seed — Seed database

Style Tokens:

  • bg-background / text-foreground
  • bg-primary / text-primary
  • dark: prefix for dark mode

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon