39+ battle-tested Claude Code skills & 9 specialized agents for professional software development. The most comprehensive skill library for Claude Code.
git clone https://github.com/majiayu000/claude-arsenal.git39+ battle-tested Claude Code skills & 9 specialized agents for professional software development. The most comprehensive skill library for Claude Code.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/majiayu000/claude-arsenalCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Act as a software developer using the Claude Arsenal. I need to [TASK] for my [PROJECT]. Use the most relevant skill from the Arsenal to accomplish this. Provide the code, explanation, and any necessary steps.
# Software Development Task: Database Migration
## Task Overview
I need to migrate a PostgreSQL database to MongoDB for my e-commerce platform. The database contains customer data, product listings, and transaction records.
## Solution Using Claude Arsenal
I'll use the **Database Migration Agent** from the Claude Arsenal to handle this task. This specialized agent is designed to streamline database migrations between different systems.
### Step 1: Connect to Source Database
```python
from database_migration_agent import DatabaseMigrationAgent
# Initialize the agent
agent = DatabaseMigrationAgent(
source_db_type='postgresql',
source_db_config={'host': 'localhost', 'port': 5432, 'user': 'admin', 'password': 'securepassword', 'dbname': 'ecommerce'}
)
```
### Step 2: Define Target Database
```python
# Configure the target MongoDB
agent.set_target_db(
target_db_type='mongodb',
target_db_config={'host': 'localhost', 'port': 27017, 'dbname': 'ecommerce_mongodb'}
)
```
### Step 3: Execute Migration
```python
# Start the migration process
migration_result = agent.migrate_data()
# Print the migration summary
print(migration_result.summary())
```
## Expected Output
The migration agent will provide a detailed summary of the migration process, including:
- Number of records migrated
- Any data type conversions performed
- Potential issues encountered
- Performance metrics
The agent will also generate a log file with detailed information about the migration process for future reference.AI assistant built for thoughtful, nuanced conversation
IronCalc is a spreadsheet engine and ecosystem
Service Management That Turns Chaos Into Control
Customer feedback management made simple
Enterprise workflow automation and service management platform
Automate your spreadsheet tasks with AI power
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan