Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"dependencies": {
"@aoagents/ao-core": "workspace:*",
"@aoagents/ao-plugin-agent-aider": "workspace:*",
"@aoagents/ao-plugin-agent-amp": "workspace:*",
"@aoagents/ao-plugin-agent-claude-code": "workspace:*",
"@aoagents/ao-plugin-agent-codex": "workspace:*",
"@aoagents/ao-plugin-agent-cursor": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/lib/detect-agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export interface DetectedAgent {
const AGENT_PLUGINS: Array<{ name: string; pkg: string }> = [
{ name: "claude-code", pkg: "@aoagents/ao-plugin-agent-claude-code" },
{ name: "aider", pkg: "@aoagents/ao-plugin-agent-aider" },
{ name: "amp", pkg: "@aoagents/ao-plugin-agent-amp" },
{ name: "codex", pkg: "@aoagents/ao-plugin-agent-codex" },
{ name: "cursor", pkg: "@aoagents/ao-plugin-agent-cursor" },
{ name: "kimicode", pkg: "@aoagents/ao-plugin-agent-kimicode" },
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/src/lib/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import type { Agent, OrchestratorConfig, PluginRegistry, SCM } from "@aoagents/a
import claudeCodePlugin from "@aoagents/ao-plugin-agent-claude-code";
import codexPlugin from "@aoagents/ao-plugin-agent-codex";
import aiderPlugin from "@aoagents/ao-plugin-agent-aider";
import ampPlugin from "@aoagents/ao-plugin-agent-amp";
import cursorPlugin from "@aoagents/ao-plugin-agent-cursor";
import kimicodePlugin from "@aoagents/ao-plugin-agent-kimicode";
import opencodePlugin from "@aoagents/ao-plugin-agent-opencode";
Expand All @@ -11,6 +12,7 @@ const agentPlugins: Record<string, { create(): Agent }> = {
"claude-code": claudeCodePlugin,
codex: codexPlugin,
aider: aiderPlugin,
amp: ampPlugin,
cursor: cursorPlugin,
kimicode: kimicodePlugin,
opencode: opencodePlugin,
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/plugin-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ const BUILTIN_PLUGINS: Array<{ slot: PluginSlot; name: string; pkg: string }> =
{ slot: "agent", name: "claude-code", pkg: "@aoagents/ao-plugin-agent-claude-code" },
{ slot: "agent", name: "codex", pkg: "@aoagents/ao-plugin-agent-codex" },
{ slot: "agent", name: "aider", pkg: "@aoagents/ao-plugin-agent-aider" },
{ slot: "agent", name: "amp", pkg: "@aoagents/ao-plugin-agent-amp" },
{ slot: "agent", name: "cursor", pkg: "@aoagents/ao-plugin-agent-cursor" },
{ slot: "agent", name: "kimicode", pkg: "@aoagents/ao-plugin-agent-kimicode" },
{ slot: "agent", name: "opencode", pkg: "@aoagents/ao-plugin-agent-opencode" },
Expand Down
46 changes: 46 additions & 0 deletions packages/plugins/agent-amp/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "@aoagents/ao-plugin-agent-amp",
"version": "0.1.0",
"description": "Agent plugin: Amp CLI",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ComposioHQ/agent-orchestrator.git",
"directory": "packages/plugins/agent-amp"
},
"homepage": "https://github.com/ComposioHQ/agent-orchestrator",
"bugs": {
"url": "https://github.com/ComposioHQ/agent-orchestrator/issues"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"clean": "rm -rf dist"
},
"dependencies": {
"@aoagents/ao-core": "workspace:*",
"which": "^6.0.1"
},
"devDependencies": {
"@types/which": "^3.0.4",
"@types/node": "^25.2.3",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}
Loading
Loading