Skip to content

Development Workflow using LLM

We can use Bedrock or Claude to generate a topology, instead of defining it manually.

Terminal window
tc scaffold --provider bedrock -e <profile> --llm default
> Architecture Description: Generate a topology to compute sum of two numbers. Notify result via channel

To use Anthropic/Claude, set CLAUDE_API_KEY env variable and

Terminal window
tc scaffold --provider bedrock -e <profile> --llm default

This generates a topology.yml using default Skills/prompt that describes the principles and design in entity abstraction, composition, orchestration and namespacing. We can generate the function stubs for the functions defined in the topology:

Terminal window
tc scaffold --functions

We can also use custom prompts or Skills. These skills can be specific to projects, design consideration and costing.

cat Skills.md | tc scaffold --provider bedrock -e <profile> --llm --

llm image