Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ agentcore create \
| `--no-agent` | Skip agent creation |
| `--type <type>` | `create` (default) or `import` |
| `--language <lang>` | `Python` (default) |
| `--framework <fw>` | `Strands`, `LangChain_LangGraph`, `CrewAI`, `GoogleADK`, `OpenAIAgents` |
| `--framework <fw>` | `Strands`, `LangChain_LangGraph`, `GoogleADK`, `OpenAIAgents` |
| `--model-provider <p>` | `Bedrock`, `Anthropic`, `OpenAI`, `Gemini` |
| `--build <type>` | `CodeZip` (default) or `Container` (see [Container Builds](container-builds.md)) |
| `--api-key <key>` | API key for non-Bedrock providers |
Expand Down Expand Up @@ -199,7 +199,7 @@ agentcore add agent \
| `--type <type>` | `create` (default), `byo`, or `import` |
| `--build <type>` | `CodeZip` (default) or `Container` (see [Container Builds](container-builds.md)) |
| `--language <lang>` | `Python` (create); `Python`, `TypeScript`, `Other` (BYO) |
| `--framework <fw>` | `Strands`, `LangChain_LangGraph`, `CrewAI`, `GoogleADK`, `OpenAIAgents` |
| `--framework <fw>` | `Strands`, `LangChain_LangGraph`, `GoogleADK`, `OpenAIAgents` |
| `--model-provider <p>` | `Bedrock`, `Anthropic`, `OpenAI`, `Gemini` |
| `--api-key <key>` | API key for non-Bedrock providers |
| `--memory <opt>` | `none`, `shortTerm`, `longAndShortTerm` (create and import; see [Memory Shorthand Mapping](memory.md#--memory-shorthand-mapping)) |
Expand Down
40 changes: 0 additions & 40 deletions integ-tests/create-frameworks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,46 +63,6 @@ describe.skipIf(!prereqs.npm || !prereqs.git)('integration: create with differen
expect(agents[0]!.name).toBe(agentName);
});

it('creates CrewAI project', async () => {
const name = `Crew${Date.now().toString().slice(-6)}`;
const result = await runCLI(
[
'create',
'--name',
name,
'--language',
'Python',
'--framework',
'CrewAI',
'--model-provider',
'Bedrock',
'--memory',
'none',
'--json',
],
testDir
);

expect(result.exitCode, `stderr: ${result.stderr}`).toBe(0);
const json = JSON.parse(result.stdout);
expect(json.success).toBe(true);

const agentName = json.agentName || name;
const agentDir = join(json.projectPath, 'app', agentName);

expect(await exists(agentDir), 'Agent directory should exist').toBe(true);
expect(await exists(join(agentDir, 'pyproject.toml')), 'pyproject.toml should exist').toBe(true);

// Verify pyproject.toml references crewai
const pyproject = await readFile(join(agentDir, 'pyproject.toml'), 'utf-8');
expect(pyproject.toLowerCase().includes('crewai'), 'pyproject.toml should reference crewai').toBeTruthy();

const config = await readProjectConfig(json.projectPath);
const agents = config.agents as Record<string, unknown>[];
expect(agents.length).toBe(1);
expect(agents[0]!.name).toBe(agentName);
});

it('creates GoogleADK project with Gemini provider', async () => {
const name = `Gadk${Date.now().toString().slice(-6)}`;
const result = await runCLI(
Expand Down
25 changes: 0 additions & 25 deletions integ-tests/create-protocols.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,31 +142,6 @@ describe.skipIf(!prereqs.npm || !prereqs.git)('integration: create with protocol

expect(result.exitCode).not.toBe(0);
});

it('rejects A2A with unsupported framework (CrewAI)', async () => {
const name = `A2aCrew${Date.now().toString().slice(-6)}`;
const result = await runCLI(
[
'create',
'--name',
name,
'--language',
'Python',
'--protocol',
'A2A',
'--framework',
'CrewAI',
'--model-provider',
'Bedrock',
'--memory',
'none',
'--json',
],
testDir
);

expect(result.exitCode).not.toBe(0);
});
});

describe.skipIf(!prereqs.npm || !prereqs.git)('integration: add agent with protocol modes', () => {
Expand Down
1 change: 0 additions & 1 deletion src/assets/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ assets/
├── python/ # Framework templates (one per SDK)
│ ├── strands/
│ ├── langchain_langgraph/
│ ├── crewai/
│ ├── googleadk/
│ ├── openaiagents/
│ └── autogen/
Expand Down
Loading
Loading