🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

devflow-kit

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devflow-kit

Agentic Development Toolkit for Claude Code - Enhance AI-assisted development with intelligent commands and workflows

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
61
-17.57%
Maintainers
1
Weekly downloads
 
Created
Source

DevFlow - Agentic Development Toolkit

A comprehensive collection of Claude Code commands and configurations designed to enhance developer workflows when working with AI coding assistants.

Quick Start

# 1. Install dependencies
npm install

# 2. Build the CLI
npm run build

# 3. Install DevFlow for Claude Code
node dist/cli.js init

# Or install globally
npm install -g .
devflow init

What's Included

📊 Slash Commands

Code Review & Quality:

  • /pre-commit - Review uncommitted changes before committing
  • /pre-pr - Comprehensive branch review for PR readiness
  • /commit - Intelligent atomic commits with safety checks

Session Management:

  • /catch-up - Smart summaries for starting new sessions
  • /devlog - Development log for session documentation
  • /plan-next-steps - Extract actionable next steps from discussion

Development Tools:

  • /debug [issue] - Systematic debugging with issue-specific investigation

🤖 Sub-Agents

Audit Specialists:

  • audit-security - Security vulnerability detection and analysis
  • audit-performance - Performance optimization and bottleneck detection
  • audit-architecture - Software architecture and design pattern analysis
  • audit-tests - Test quality and coverage analysis
  • audit-dependencies - Dependency management and security analysis
  • audit-complexity - Code complexity and maintainability assessment
  • audit-database - Database design and optimization review

Workflow Specialists:

  • catch-up - Project status and context restoration with validation
  • commit - Intelligent commit creation with safety checks

📊 Smart Statusline

Real-time project context display showing:

  • Current model and session duration
  • Git branch and uncommitted changes indicator
  • Session cost tracking
  • Project context

🔒 Security & Token Optimization

DevFlow automatically creates a comprehensive .claudeignore file to:

  • Protect sensitive files - Prevents exposure of credentials, keys, and secrets
  • Reduce token usage - Excludes build artifacts, dependencies, and non-essential files
  • Support all languages - Covers patterns for Node.js, Python, Ruby, Go, Rust, Java, and more

CLI Commands

devflow init

Initialize DevFlow for Claude Code. Installs commands, agents, scripts, and settings to your Claude Code configuration. Also creates security and optimization files.

What it does:

  • Installs commands to ~/.claude/commands/devflow/
  • Installs sub-agents to ~/.claude/agents/devflow/
  • Installs scripts to ~/.devflow/scripts/
  • Installs settings to ~/.claude/settings.json
  • Creates .claudeignore at git repository root (if in git repo)
  • Creates .docs/ structure for project documentation

Options:

  • --skip-docs - Skip creating .docs/ structure

Example:

# Standard installation
devflow init

# Skip project documentation setup
devflow init --skip-docs

Project Structure

devflow/
├── src/                     # All source files
│   ├── cli/                   # CLI source code
│   │   ├── commands/            # CLI command implementations
│   │   └── cli.ts               # CLI entry point
│   └── claude/                # Claude Code configuration
│       ├── agents/              # AI sub-agents
│       ├── commands/            # Slash command definitions
│       ├── scripts/             # DevFlow scripts
│       └── settings.json        # Claude Code settings
├── package.json             # Node.js package
└── tsconfig.json            # TypeScript config

Development

# Install dependencies
npm install

# Build TypeScript
npm run build

# Watch mode for development
npm run dev

# Test CLI locally
node dist/cli.js init

Philosophy

Modern development increasingly involves AI agents that can read, write, and modify code autonomously. DevFlow provides:

  • Trust but Verify - Tools to catch AI agent mistakes
  • Context Preservation - Memory across long-term projects
  • Quality Gates - Automated checks for AI changes
  • Developer Empowerment - Enhance human judgment, not replace it

Documentation

See CLAUDE.md for comprehensive documentation including:

  • Detailed command descriptions
  • Sub-agent system architecture
  • Development workflow patterns
  • Command design principles

License

MIT

Keywords

claude

FAQs

Package last updated on 03 Oct 2025

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