Standardize and accelerate AI-assisted development across teams
A curated collection of prompts, skills, plugins, and best practices for AI coding agents. The ATC Agentic Toolkit provides production-ready configurations and reusable components for Claude Code and GitHub Copilot, with a focus on .NET development and enterprise patterns.
AI coding assistants like Claude Code and GitHub Copilot are transforming software development, but without standardized configurations, teams face:
- Inconsistent agent behavior across projects and developers
- Repeated context setup for common tasks
- Lost productivity gains from reinventing prompts and workflows
- Knowledge silos where effective patterns aren't shared
ATC Agentic Toolkit solves this by providing:
- Reusable Components - Skills, commands, and plugins that work out of the box
- Team Consistency - Standardized configurations that ensure predictable AI behavior
- Enterprise-Ready - Production patterns for .NET, Azure, and enterprise development
- Extensible Framework - Custom marketplace system for distributing internal tooling
1. Add the ATC-Net Marketplace
Add the atc-net marketplace from atc-net/atc-agentic-toolkit
2. Install Plugins
Install the azure-iot plugin from the atc-net marketplace
An updater CLI tool will be available to fetch configuration files for GitHub Copilot integration.
| Plugin | Description |
|---|---|
| code-refactoring | Code formatting and style tools for C# projects |
| common | Base utilities and skill creation tools |
| azure-iot | Azure IoT Edge module scaffolding and automation |
| git | Git workflow utilities and commit message helpers |
graph TD
A[atc-agentic-toolkit] --> B[.claude/plugins/]
A --> C[.claude-plugin/]
A --> D[docs/]
B --> E["plugin-name/"]
E --> F[commands/]
E --> G[skills/]
E --> H[agents/]
E --> I[.claude-plugin/]
C --> J[marketplace.json]
D --> K[guides/]
D --> L[best-practices/]
D --> M[reference/]
style A fill:#e1f5ff
style B fill:#fff4e1
style C fill:#f0e1ff
style D fill:#e1ffe1
Key Directories:
.claude/plugins/- Plugin implementations (skills, agents, commands, configs).claude-plugin/- Marketplace configuration and metadatadocs/- Comprehensive documentation (guides, best practices, reference)
Want to create your own plugins? The toolkit provides a complete framework for developing, testing, and distributing custom plugins.
- Use the skill-creator skill to generate plugin structure
- Define your plugin in
.claude-plugin/marketplace.json - Create skills and commands in
.claude/plugins/[your-plugin]/ - Test locally in your project
- Distribute via marketplace or direct installation
Documentation:
- .NET SDK (9.0 or higher) - Download
- Python 3.x - Download
- Claude Code CLI - Installation Guide
- Git - Download
dotnet --version # Should show 9.0 or higher
python --version # Should show 3.x
claude --version # Should show Claude Code CLI version
git --version # Should show Git version- Plugin Development - Creating plugins
- Skill Creation - Building skills
- Agent Creation - Building specialized agents
- Command Creation - Writing slash commands
- Claude Code Fundamentals - Core concepts
- Effective Prompts - Prompt engineering
- Context Management - Advanced techniques
- Team Standards - ATC-Net conventions
- Plugin Structure - Directory layout
- Skill Anatomy - SKILL.md format
- Marketplace Config - marketplace.json schema
Plugin Not Found: Verify the marketplace was added correctly, check that the plugin was installed, and restart Claude Code CLI.
Command Not Available: Verify the plugin containing the command is installed and restart Claude Code CLI.
Installation Issues: Ensure Claude Code CLI is up to date, check network connection, and verify the marketplace URL is correct.