BeClaude

threejs-ecs

New
2Community RegistryGeneralby Jeremy Miranda

Comprehensive Three.js, React Three Fiber, and Entity Component System (ECS) development skills for building mobile-optimized 3D games and applications with TypeScript

Community PluginView Source

Overview

Custom Wolf Agent skills and productivity tools for Claude Code.

23 skills across 3 plugin collections — Wolf Agent behavioral framework, multi-agent coordination, and productivity tooling.

Quick Start

code
/plugin marketplace add Nice-Wolf-Studio/wolf-skills-marketplace

Then install the plugins you want:

code
/plugin install wolf-core@wolf-skills-marketplace
/plugin install productivity@wolf-skills-marketplace

Restart Claude Code to load the skills.

Plugins

Wolf Core (wolf-core@wolf-skills-marketplace)

Core Wolf Agent behavioral framework (10 skills):

SkillDescription
wolfMaster skill — routing table, skill chain diagram, decision tree
wolf-session-initSession initialization — loads the skill chain in sequence
wolf-principles10 core principles for agent behavior and system design
wolf-archetypesBehavioral archetypes for automatic agent adaptation by work type
wolf-governanceGovernance framework, compliance rules, quality gates
wolf-roles50+ specialized agent roles with templates and collaboration patterns
wolf-workflowsMulti-agent workflow templates (feature, security, bugfix)
wolf-verificationThree-layer verification architecture (CoVe, HSP, RAG)
wolf-scripts-coreCore automation scripts for archetype selection and quality scoring
wolf-context-managementCheckpoint/restore pattern to prevent token bloat (30-50% reduction)

Coordination (coordination@wolf-skills-marketplace)

Multi-agent coordination protocol (4 skills):

SkillDescription
handoffMemory transfer records — structured context for the next agent (Smith-inspired)
pickupContext reconstruction — reads handoffs, reconciles against git, synthesizes briefing
signalMid-work coordination — CLAIM, DECISION, PROBLEM, COMPLETE typed signals
coordinateDistributed leader-follower protocol on a git coordination branch with capability-based election
repo-ingestPattern extraction from external repos with provenance tracking

Productivity (productivity@wolf-skills-marketplace)

Productivity, coding, and domain tools (8 skills):

SkillDescription
daily-summaryAutomated GitHub PR summary generation for standups
coding-patternsOrchestration, pure functions, decomposition, SOLID, anti-patterns
code-standardsBranch diff review for YAGNI, DRY, SRP violations
discoveryCode discovery and codebase exploration patterns
ict-strategyInner Circle Trader methodology — smart money concepts, liquidity, FVGs
personalitySession persona injection while protecting code and technical content
personality-builderCreate and customize new personality profiles
journalingSession journaling skill

Manual Installation

If /plugin marketplace add is unavailable, install manually:

  1. Clone the repo:
bash
git clone https://github.com/Nice-Wolf-Studio/wolf-skills-marketplace.git \
  ~/.claude/plugins/marketplaces/wolf-skills-marketplace
  1. Register in ~/.claude/plugins/known_marketplaces.json:
json
{
  "wolf-skills-marketplace": {
    "source": {
      "source": "github",
      "repo": "Nice-Wolf-Studio/wolf-skills-marketplace"
    },
    "installLocation": "/Users/YOUR_USERNAME/.claude/plugins/marketplaces/wolf-skills-marketplace",
    "lastUpdated": "2025-11-14T00:00:00.000Z"
  }
}
  1. Enable plugins in ~/.claude/settings.json:
json
{
  "enabledPlugins": {
    "wolf-core@wolf-skills-marketplace": true,
    "productivity@wolf-skills-marketplace": true
  }
}
  1. Restart Claude Code.

Repository Structure

code
wolf-skills-marketplace/
├── .claude-plugin/
│   └── marketplace.json        # Plugin registry
├── handoff/                    # Agent memory transfer protocol
├── pickup/                     # Context reconstruction from handoffs
├── signal/                     # Mid-work agent coordination
├── repo-ingest/                # Pattern extraction from external repos
│   ├── sources.json            # Source repo registry
│   └── briefs/                 # Pattern brief archive
├── wolf/                       # Master skill + routing
├── wolf-session-init/          # Session initialization
├── wolf-principles/            # Core principles + scripts
├── wolf-archetypes/            # Behavioral archetypes + data
├── wolf-governance/            # Governance + compliance scripts
├── wolf-roles/                 # 50+ agent roles + templates
├── wolf-workflows/             # Workflow templates
├── wolf-verification/          # Verification architecture
├── wolf-scripts-core/          # Automation scripts
├── wolf-context-management/    # Context checkpoint/restore
├── daily-summary/              # PR summary + assets
├── coding-patterns/            # Implementation patterns
├── code-standards/             # Design principle review
├── discovery/                  # Code discovery
├── ict-strategy/               # Trading methodology
├── personality/                # Persona injection
│   ├── personality-builder/    # Profile creation
│   └── skills/journaling/      # Session journaling
├── SKILL-TEMPLATE.md           # Template for new skills
└── docs/                       # Extended documentation

Creating New Skills

Use SKILL-TEMPLATE.md as a starting point. Key requirements:

  1. Use when [TRIGGER] - [ACTION]; [BENEFIT] description pattern
  2. 4-7 specific trigger keywords in frontmatter
  3. "When NOT to Use" section for scope clarity
  4. Semantic versioning with changelog

License

MIT

Author

Jeremy Miranda — Nice Wolf Studio

Changelog

v5.0.0 (2026-04-11) - Multi-Agent Coordination

  • Added coordination plugin (4 skills): handoff, pickup, signal, repo-ingest
  • Smith-inspired handoff protocol with append-only sequenced records
  • Shared coordination space via main worktree for cross-agent visibility
  • Pattern extraction pipeline with provenance tracking
  • 22 skills across 3 plugin collections

v4.0.0 (2026-04-11) - Marketplace Cleanup

  • Removed dead plugins: threejs-ecs, integrations, wolf-automation
  • Consolidated wolf-scripts-core and wolf-context-management into wolf-core
  • Added missing skills: discovery, ict-strategy, personality-builder, journaling
  • Fixed marketplace.json to match actual disk contents
  • Added /plugin marketplace add quick-start installation
  • 18 skills across 2 plugin collections

v3.1.0 (2025-03-24) - Personality System

  • Added personality skill for session persona injection
  • Princess Donut profile, SessionStart hook, /personality command

v3.0.0 (2025-11-14) - Skill-Chaining Patterns

  • Added wolf-workflows with 3 multi-agent workflow templates
  • Enhanced 5 Wolf skills with skill-chaining patterns
  • Created 4 role templates + 3 workflow templates

v2.0.0 (2025-11-14)

  • Added threejs-ecs plugin (51 skills), productivity plugin
  • Standardized frontmatter, added SKILL-TEMPLATE.md

v1.0.0 (2025-11-13)

  • Initial marketplace (11 skills, 3 plugin collections)

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/threejs-ecs.md https://raw.githubusercontent.com/Nice-Wolf-Studio/wolf-skills-marketplace/main/SKILL.md
3
Invoke in Claude Code
/threejs-ecs
View source on GitHub
typescript

Frequently Asked Questions

What is threejs-ecs?

Comprehensive Three.js, React Three Fiber, and Entity Component System (ECS) development skills for building mobile-optimized 3D games and applications with TypeScript

How to install threejs-ecs?

To install threejs-ecs, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /threejs-ecs.

What is threejs-ecs best for?

threejs-ecs is a community categorized under General. It is designed for: typescript. Created by Jeremy Miranda.