
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
cracked-dev-cli
Advanced tools
An AI agent CLI tool for performing operations on local projects through natural language. This tool enables developers to make codebase changes, add features, and fix issues using natural language commands.
⚠️ Security Warning: Make sure crkdrc.json is included in your .gitignore file to prevent accidentally committing your API keys. The file contains sensitive information that should never be pushed to version control.
# Clone the repository
git clone https://github.com/yourusername/cracked-dev-cli.git
# Install dependencies
cd cracked-dev-cli
yarn install
cp .env.example .env
.env file with your OpenRouter API key and other configurations:OPENROUTER_API_KEY=your_api_key_here
APP_URL=your_app_url
APP_NAME=your_app_name
# Initialize with API key from command line
yarn dev:cli crkd --init --openRouterApiKey your_api_key_here
# Or initialize using API key from .env
yarn dev:cli crkd --init
This will create a crkdrc.json configuration file with your settings. The OpenRouter API key will be taken from the command line argument if provided, otherwise it will use the key from your .env file.
--init: Initialize a default crkdrc.json configuration file--openRouterApiKey: Provide OpenRouter API key during initialization (optional, can use .env instead)-r, --root: Root path of the codebase (default: current directory)--instructions-path: Path to custom instructions file--instructions: Raw custom instructions string-m, --model: AI model to use (default: gpt-4)-p, --provider: LLM provider to use-s, --stream: Stream the AI response-d, --debug: Enable debug mode-o, --options: LLM options in key=value format-i, --interactive: Enable interactive mode--auto-scaler: Enable model auto-scaling based on triesBasic usage:
yarn dev:cli crkd --provider "open-router" --model "gpt-4" "Add error handling"
With custom instructions:
yarn dev:cli crkd --instructions "Follow clean code" --model "gpt-4" --options "temperature=0.7" "Create component"
Interactive mode:
yarn dev:cli crkd --interactive -m gpt-4 -p open-router
Auto-scaling mode:
yarn dev:cli crkd --auto-scaler --provider "open-router" --model "gpt-4" "Create component"
Customize model behavior using these options in format key=value,key2=value2:
temperature (0.0-2.0): Controls randomnessmax_tokens (1+): Maximum tokens to generatetop_p (0.0-1.0): Controls diversity via nucleus samplingfrequency_penalty (-2.0-2.0): Penalize frequent tokenspresence_penalty (-2.0-2.0): Penalize repeated tokensrepetition_penalty (0.0-2.0): Reduce token repetitiontop_k (0+): Limit token choicesmin_p (0.0-1.0): Minimum probability thresholdtop_a (0.0-1.0): Dynamic probability thresholdseed (integer): For deterministic outputsExample:
yarn dev:cli crkd --options "temperature=0.7,max_tokens=2000,top_p=0.9"
cracked-dev-cli/
├── bin/ # CLI entry point
├── src/
│ ├── commands/ # CLI commands
│ ├── config/ # Configuration
│ ├── constants/ # Shared constants
│ ├── middleware/ # CLI middleware
│ ├── services/ # Core services
│ │ ├── Calculator/ # Calculator service
│ │ ├── LLM/ # LLM service
│ │ └── LLMProviders/ # LLM provider implementations
│ └── utils/ # Utility functions
├── docs/ # Documentation
└── tests/ # Test files
Start the TypeScript compiler in watch mode:
yarn dev
# Run tests
yarn test
# Type checking
yarn tsc
# Linting
yarn lint
# Format code
yarn format
git checkout -b feature/my-new-featuregit commit -am 'Add some feature'git push origin feature/my-new-featureMIT License - see the LICENSE file for details
FAQs
AI-powered CLI tool for software development
We found that cracked-dev-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.