🎯

create-agent

🎯Skill

from antinomyhq/forge

VibeIndex|
What it does

Generates a new AI agent configuration with customizable parameters and settings for the Forge development environment.

create-agent

Installation

Install skill:
npx skills add https://github.com/antinomyhq/forge --skill create-agent
1
AddedJan 27, 2026

Skill Details

SKILL.md

Overview

βš’οΈ Forge: AI-Enhanced Terminal Development Environment

A comprehensive coding agent that integrates AI capabilities with your development environment

npx forgecode@latest

[![CI Status](https://img.shields.io/github/actions/workflow/status/antinomyhq/forge/ci.yml?style=for-the-badge)](https://github.com/antinomyhq/forge/actions)

[![GitHub Release](https://img.shields.io/github/v/release/antinomyhq/forge?style=for-the-badge)](https://github.com/antinomyhq/forge/releases)

[![Discord](https://img.shields.io/discord/1044859667798568962?style=for-the-badge&cacheSeconds=120&logo=discord)](https://discord.gg/kRZBPpkgwq)

[![CLA assistant](https://cla-assistant.io/readme/badge/antinomyhq/forge?style=for-the-badge)](https://cla-assistant.io/antinomyhq/forge)

![Code-Forge Demo](https://assets.antinomy.ai/images/forge_demo_2x.gif)

---

Table of Contents

  • [Quickstart](#quickstart)
  • [Usage Examples](#usage-examples)
  • [Why Forge?](#why-forge)
  • [Command-Line Options](#command-line-options)
  • [Advanced Configuration](#advanced-configuration)

- [Provider Configuration](#provider-configuration)

- [Managing Provider Credentials](#managing-provider-credentials)

- [Deprecated: Environment Variables](#deprecated-environment-variables)

- [forge.yaml Configuration Options](#forgeyaml-configuration-options)

- [Environment Variables](#environment-variables)

- [MCP Configuration](#mcp-configuration)

- [Example Use Cases](#example-use-cases)

- [Usage in Multi-Agent Workflows](#usage-in-multi-agent-workflows)

  • [Documentation](#documentation)
  • [Community](#community)
  • [Support Us](#support-us)

---

Quickstart

To get started with Forge, run the command below:

```bash

npx forgecode@latest

```

On first run, Forge will guide you through setting up your AI provider credentials using the interactive login flow. Alternatively, you can configure providers beforehand:

```bash

# Configure your provider credentials interactively

forge provider login

# Then start Forge

forge

```

That's it! Forge is now ready to assist you with your development tasks.

Usage Examples

Forge can be used in different ways depending on your needs. Here are some common usage patterns:

Code Understanding

```

> Can you explain how the authentication system works in this codebase?

```

Forge will analyze your project's structure, identify authentication-related files, and provide a detailed explanation of the authentication flow, including the relationships between different components.

Implementing New Features

```

> I need to add a dark mode toggle to our React application. How should I approach this?

```

Forge will suggest the best approach based on your current codebase, explain the steps needed, and even scaffold the necessary components and styles for you.

Debugging Assistance

```

> I'm getting this error: "TypeError: Cannot read property 'map' of undefined". What might be causing it?

```

Forge will analyze the error, suggest potential causes based on your code, and propose different solutions to fix the issue.

Code Reviews

```

> Please review the code in src/components/UserProfile.js and suggest improvements

```

Forge will analyze the code, identify potential issues, and suggest improvements for readability, performance, security, and maintainability.

Learning New Technologies

```

> I want to integrate GraphQL into this Express application. Can you explain how to get started?

```

Forge will provide a tailored tutorial on integrating GraphQL with Express, using your specific project structure as context.