Skip to content

Commit a617572

Browse files
committed
feat: add GitHub Copilot CLI support
- Create .github-copilot/ with plugin.json and marketplace.json manifests - Add .agent.md symlinks for all 33 agents (Copilot CLI naming convention) - Create symlinks in .github-copilot/ pointing to agents/, skills/, hooks/, .mcp.json - Update README.md with Copilot CLI install instructions and cross-platform table - Update AGENTS.md with Copilot CLI plugin architecture docs - Update CONTRIBUTING.md with Copilot CLI contribution notes - Update docs/CATALOG.md with Copilot CLI platform entry
1 parent 3557f40 commit a617572

43 files changed

Lines changed: 194 additions & 4 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github-copilot/.mcp.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../.mcp.json

.github-copilot/agents

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../agents

.github-copilot/hooks

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../hooks

.github-copilot/marketplace.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "ai-dev-kit",
3+
"owner": {
4+
"name": "Noah Sheldon",
5+
"email": "noahsheldon06@gmail.com"
6+
},
7+
"metadata": {
8+
"description": "Production-ready AI dev workflow scaffold with 59 skills, 33 agents, hooks, rules, and MCP configs for Copilot CLI.",
9+
"version": "1.1.0"
10+
},
11+
"plugins": [
12+
{
13+
"name": "ai-dev-kit",
14+
"description": "Complete plugin suite for professional engineering workflows — TDD, code review, security, ML, infrastructure, data pipelines, and 33 specialized agents.",
15+
"version": "1.1.0",
16+
"source": "./.github-copilot"
17+
}
18+
]
19+
}

.github-copilot/plugin.json

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
{
2+
"name": "ai-dev-kit",
3+
"version": "1.1.0",
4+
"description": "Production-ready AI dev workflow scaffold with 59 skills, 33 agents, hooks, rules, and MCP configs.",
5+
"author": {
6+
"name": "Noah Sheldon",
7+
"email": "noahsheldon06@gmail.com"
8+
},
9+
"license": "MIT",
10+
"keywords": [
11+
"ai",
12+
"devops",
13+
"full-stack",
14+
"typescript",
15+
"python",
16+
"machine-learning",
17+
"llm",
18+
"openai",
19+
"fastapi",
20+
"react",
21+
"next-js",
22+
"node-js",
23+
"aws",
24+
"docker",
25+
"kubernetes",
26+
"infrastructure",
27+
"testing",
28+
"tdd",
29+
"data-engineering",
30+
"etl",
31+
"database",
32+
"postgres",
33+
"mcp",
34+
"agents",
35+
"skills",
36+
"automation",
37+
"code-review",
38+
"security",
39+
"ci-cd",
40+
"git",
41+
"plugin",
42+
"agentic-engineering",
43+
"api-design",
44+
"api-integrations",
45+
"architecture-decision-records",
46+
"autonomous-agent-harness",
47+
"autonomous-loops",
48+
"aws-deployment",
49+
"aws-devops",
50+
"backend-patterns",
51+
"ci-pipeline",
52+
"claude-api",
53+
"codebase-onboarding",
54+
"coding-standards",
55+
"context-prune",
56+
"continuous-agent-loop",
57+
"data-pipelines",
58+
"data-pipelines-ai",
59+
"database-migrations",
60+
"deep-research",
61+
"deployment-patterns",
62+
"dmux-workflows",
63+
"docker-patterns",
64+
"document-processing",
65+
"documentation-lookup",
66+
"e2e-testing",
67+
"eval-harness",
68+
"exa-search",
69+
"frontend-design",
70+
"frontend-patterns",
71+
"git-workflow",
72+
"github-ops",
73+
"hexagonal-architecture",
74+
"iterative-retrieval",
75+
"langchain-llamaindex",
76+
"mcp-server-patterns",
77+
"mlops-rag",
78+
"mlops-workflow",
79+
"multi-agent-git-workflow",
80+
"observability-telemetry",
81+
"openai-api",
82+
"postgres-patterns",
83+
"prompt-optimizer",
84+
"python-patterns",
85+
"python-testing",
86+
"pytorch-patterns",
87+
"search-first",
88+
"security-review",
89+
"security-scan",
90+
"skill-authoring",
91+
"tdd-workflow",
92+
"token-budget-advisor",
93+
"typescript-patterns",
94+
"verification-loop",
95+
"wxt-chrome-extension",
96+
"codebase-report",
97+
"technical-debt-report",
98+
"backlog-management",
99+
"workflow-status"
100+
],
101+
"agents": "agents/",
102+
"skills": ["skills/"],
103+
"hooks": "hooks/hooks.json",
104+
"mcpServers": ".mcp.json"
105+
}

.github-copilot/skills

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../skills

AGENTS.md

Lines changed: 7 additions & 1 deletion

CONTRIBUTING.md

Lines changed: 8 additions & 0 deletions

README.md

Lines changed: 16 additions & 2 deletions

agents/ai-judge.agent.md

Lines changed: 1 addition & 0 deletions

0 commit comments

Comments
 (0)