Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@ngxtm/devkit

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ngxtm/devkit

Unified multi-agent system with auto-synced skills from multiple sources

Source
npmnpm
Version
2.0.1
Version published
Weekly downloads
766
47.59%
Maintainers
1
Weekly downloads
 
Created
Source

Devkit Agent Assistant

Unified multi-agent system with auto-synced skills from multiple sources

npm version License: MIT

Features

  • 414+ Skills - Merged from antigravity, agent-assistant, and claudekit
  • 38 Agents - 20 from agent-assistant + 18 from claudekit
  • 57 Commands - Full workflow commands from both sources
  • 9 Hooks - Session management, privacy, context awareness (claudekit)
  • 6 Output Styles - Coding levels from ELI5 to God mode (claudekit)
  • 10 Rules - Coding standards for TypeScript, React, NestJS, etc.
  • Matrix Skill Discovery - Intelligent skill injection based on context
  • Auto-Sync - Daily updates from upstream sources via GitHub Actions

Sources

SourceWhat's Included
antigravity-awesome-skills256+ skills (primary, frequently updated)
agent-assistant310+ skills, Matrix system, 20 agents, 25 commands
claudekit45 skills, 18 agents, 32 commands, hooks, output styles
skill-ruleCoding standards for 10 frameworks

Installation

npm install -g @ngxtm/devkit
devkit install

Install Modes

ModeCommandSkills SizeDescription
Index-only (default)devkit install~30KBOnly installs skills index, Claude loads skills on-demand
Minimaldevkit install --minimal~2MBInstalls ~20 core skills
Categorydevkit install -c=reactvariesInstalls specific categories
Fulldevkit install --full~59MBInstalls all 413+ skills (may cause context limit)
# Recommended: Index-only (default)
devkit install                      # Best for avoiding context limits
devkit install claude               # Claude Code only

# Alternative modes
devkit install --minimal            # ~20 core skills
devkit install --category=react,ts  # Specific categories
devkit install --full               # All skills (large)
devkit install --interactive        # Choose interactively

How Index-Only Mode Works

Instead of installing 3,500+ files (59MB), devkit installs:

  • SKILLS_INDEX.md - 30KB summary of all 411 skills
  • All commands (/plan, /cook, /brainstorm, etc.)
  • All agents (planner, debugger, reviewer, etc.)
  • Hooks, rules, output-styles

When Claude needs a specific skill, it reads the index to find it, then loads the full skill on-demand. This reduces context usage by 99.95%.

Available Categories

devkit categories    # Show all categories
CategorySkillsDescription
react9React, Next.js, Remix
typescript4TypeScript patterns
node6Node.js, NestJS, Express
database5PostgreSQL, MongoDB, Redis
devops7Docker, K8s, CI/CD, AWS
testing6Jest, Playwright, Vitest
security5OWASP, Auth, API security
ai6AI agents, MCP, prompts
mobile5React Native, Flutter
frontend6CSS, Tailwind, a11y
backend6APIs, microservices
tools6Git, debugging, docs

Uninstallation

# Remove from all tools
devkit uninstall

# Remove from specific tool
devkit uninstall claude
devkit uninstall cursor

What Gets Installed

For Claude Code (~/.claude/)

~/.claude/
├── skills/                   # 414+ skills
│   └── agent-assistant/      # Core framework
│       ├── agents/           # 20 agents
│       ├── commands/         # 25 commands
│       ├── matrix-skills/    # Skill discovery system
│       └── claudekit/        # Claudekit components
│           ├── agents/       # 18 agents
│           └── commands/     # 32 commands
├── rules/                    # Coding standards
├── hooks/                    # 9 hooks
├── output-styles/            # 6 coding levels
├── workflows/                # Workflow definitions
└── settings.json             # Claude settings

For Other Tools

  • Cursor: Skills, agents, commands, rules
  • GitHub Copilot: Skills, rules
  • Gemini/Antigravity: Skills, rules

Quick Start Commands

After installation, use these commands in your AI coding tool:

From agent-assistant

/cook           - Build a feature with full workflow
/plan           - Plan implementation strategy
/review         - Code review
/test           - Run tests
/fix            - Fix bugs

From claudekit

/bootstrap      - Setup new project
/coding-level   - Set output style (eli5/junior/mid/senior/lead/god)
/code           - Code with workflow
/scout          - Explore codebase
/kanban         - Manage tasks

Output Styles (claudekit)

Set your preferred coding level:

LevelStyleBest For
/coding-level 0ELI5Learning, explanations
/coding-level 1JuniorDetailed comments, safe patterns
/coding-level 2MidBalanced, best practices
/coding-level 3SeniorConcise, optimized
/coding-level 4LeadArchitecture focus
/coding-level 5GodMinimal, maximum efficiency

Hooks (Claude Code only)

Claudekit hooks provide:

  • session-init - Initialize session context
  • privacy-block - Protect sensitive files
  • scout-block - Control exploration scope
  • dev-rules-reminder - Enforce coding standards
  • usage-context-awareness - Smart context management
  • And more...

Auto-Sync

Skills and rules are automatically updated via GitHub Actions:

  • Skills: Daily sync from antigravity + agent-assistant
  • Rules: Weekly sync from skill-rule
  • Hooks/Claudekit: Manual sync (local source)

Configuration

Edit SYNC_CONFIG.yaml to customize sources:

skill_sources:
  - name: antigravity-awesome-skills
    repo: sickn33/antigravity-awesome-skills
    enabled: true
    priority: 1

  - name: agent-assistant
    repo: hainamchung/agent-assistant
    enabled: true
    priority: 2

sync:
  merge_strategy: prefer-primary
  schedule: "0 0 * * *"

Development

# Clone the repo
git clone https://github.com/YOUR_USERNAME/devkit-assistant.git
cd devkit-assistant

# Install dependencies
npm install

# Run initial sync (first time only)
# Windows:
initial-sync.bat

# Linux/Mac:
./initial-sync.sh

# Test install locally
node cli/install.js

Contributing

  • Fork the repository
  • Add your skills to skills/your-skill-name/SKILL.md
  • Run python scripts/update_matrix.py
  • Submit a pull request

License

MIT License - see LICENSE for details.

Credits

Keywords

ai

FAQs

Package last updated on 28 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts