forge-skills

📁 ingloriouscoderz/forge-skills 📅 2 days ago
1
总安装量
1
周安装量
#50282
全站排名
安装命令
npx skills add https://github.com/ingloriouscoderz/forge-skills --skill forge-skills

Agent 安装分布

mcpjam 1
claude-code 1
junie 1
windsurf 1
zencoder 1
crush 1

Skill 文档

Forge Skills

Use this file as the routing entry point for the Inglorious Forge skill set. Load only the specific files in skills/ that match the user request.

Workflow

  1. Identify the user goal (state management, web UI, realtime sync, game loop, scaffolding, charts, or tooling).
  2. Select the minimum number of files from skills/ needed to answer or implement the request.
  3. Prefer package-specific guidance over generic assumptions.
  4. For multi-package tasks, combine only the relevant skill files.

Skills Map

@inglorious/utils

Use for utility functions and algorithmic helpers.

  • Math, vector operations, trigonometry, random helpers
  • Physics helpers (velocity, acceleration, friction)
  • Functional helpers (composition, piping)
  • Data structures and algorithms

@inglorious/store

Use for entity-based state management.

  • Event-driven handlers and deterministic event queues
  • Middleware and testing utilities
  • Redux-compatible API and DevTools integration
  • Multiplayer-friendly patterns

@inglorious/server

Use for realtime server patterns.

  • Store-backed server architecture
  • Entity and event synchronization over WebSockets

@inglorious/react-store

Use for React integration with @inglorious/store.

  • Provider setup and simplified hooks
  • useEntity and useNotify patterns

@inglorious/web

Use for web UI architecture with @inglorious/store and lit-html.

  • render(entity, api) patterns
  • Whole-tree re-rendering with efficient DOM updates
  • Built-in form, table, list, select, and router modules
  • Testing patterns

@inglorious/charts

Use for SVG chart construction.

  • Declarative and composable chart primitives
  • Configuration-driven chart behavior
  • SSR-friendly chart rendering

@inglorious/ssx

Use for static site generation and hydration workflows.

  • Development server with HMR
  • Vite-based build and bundling
  • Markdown, LaTeX math, and Mermaid support
  • SEO support (sitemaps, manifests, metadata)
  • Fast hydration with @lit-labs/ssr

@inglorious/engine

Use for functional 2D game loop architecture.

  • Frame-based update(entity, dt) handlers
  • Entity pool middleware for high-frequency updates
  • Optional IngloriousScript vector operators via Babel

Tooling & Integration