Claude Engineer Toolkit banner
thitami thitami

Claude Engineer Toolkit

Testing community

Description

AI-powered toolkit for Claude Code that provides structured workflows, commands, and agents to automate planning, coding, testing, and shipping software.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

🛠️ claude-engineer-toolkit (`cet`)

Claude AI in your terminal. Not a chatbot wrapper — **sharp, composable tools for backend engineers who ship.**

[![PyPI version](https://badge.fury.io/py/claude-engineer-toolkit.svg)](https://badge.fury.io/py/claude-engineer-toolkit) [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Tests](https://img.shields.io/badge/tests-93%20passing-brightgreen.svg)](tests/) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)

pip install claude-engineer-toolkit
export ANTHROPIC_API_KEY=your_key

cet explain legacy_auth.php             # understand any code in seconds
cet migrate legacy_auth.php             # PHP to Python migration plan
cet pr --branch main                    # review your diff like a senior engineer
cet spec ./routes/ --framework fastapi  # generate OpenAPI spec from code
cet test user_service.py                # generate pytest scaffolds
cet doc auth.py --inplace               # add inline docstrings
cet env .env.example                    # audit for security issues
cet changelog                           # generate CHANGELOG from commits


The problem

You open a legacy file. 400 lines of PHP written in 2014. No docs, no tests, no author. You need to understand it in 10 minutes.

Or: you are reviewing a PR while context-switching from three other things. You want a second opinion before you approve.

Or: you need an OpenAPI spec for a service that was never documented.

`cet` solves these. One command, one answer, back to work.


Tools

`cet explain` — understand any code instantly

Any language. Any size. Structured breakdown: what it does, how it works, what will bite you.

cet explain legacy_payment_processor.php
cet explain src/auth/jwt_middleware.go --focus security
c