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
16 changes: 16 additions & 0 deletions sdk/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Codon SDK Documentation

Complete guide to building observable AI agents with the Codon SDK.

## Documentation Sections
- [**What is the Codon SDK**](https://codon-ops.github.io/codon-sdk/what-is-codon/) - Design philosophy and core concepts
- [**Getting Started**](https://codon-ops.github.io/codon-sdk/getting-started/) - Installation and basic setup
- [**Building from Scratch**](https://codon-ops.github.io/codon-sdk/building-from-scratch/) - Create agents with CodonWorkload
- [**Instrumentation**](https://codon-ops.github.io/codon-sdk/instrumentation/) - Framework-specific integrations (LangGraph, OpenAI, etc.)
- [**API Reference**](https://codon-ops.github.io/codon-sdk/api-reference/) - Complete API documentation

## Quick Start

1. [**Getting Started**](https://codon-ops.github.io/codon-sdk/getting-started/) - Installation and environment setup
2. **New to agent frameworks**: Create agents with [Building from Scratch](https://codon-ops.github.io/codon-sdk/getting-started/)
3. **LangGraph users**: Integrate existing code with [LangGraph Integration](https://codon-ops.github.io/codon-sdk/getting-started/)
15 changes: 8 additions & 7 deletions sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ build-backend = "setuptools.build_meta"
[project]
# This is the main SDK package name
name = "codon_sdk"
version = "0.1.0a1"
license = "Apache-2.0"
version = "0.1.0a2"
license = {text = "Apache-2.0"}
authors = [
{ name="Sheldon Gilbert", email="sheldon@codonops.ai"},
{ name="Martin Arroyo", email="martin@codonops.ai" },
{ name="Sheldon Gilbert", email="sheldon@codonops.ai"},
]
description = "The core SDK for Codon project components, including agents and data schemas."
readme = "README.md"
Expand All @@ -29,9 +29,9 @@ dependencies = [
where = ["src"]

# This section defines the "extras" for optional features of the core SDK
[project.optional-dependencies]
# [project.optional-dependencies]
# Defines `pip install codon-sdk[nodespec]`
nodespec = []
# nodespec = []

# Defines `pip install codon-sdk[agents]`
# List any dependencies needed ONLY by the agent framework here.
Expand All @@ -40,5 +40,6 @@ nodespec = []
# ]

[project.urls]
"Homepage" = "https://github.com/your-username/codon-sdk"
"Bug Tracker" = "https://github.com/your-username/codon-sdk/issues"
"Homepage" = "https://github.com/Codon-Ops/codon-sdk"
"Bug Tracker" = "https://github.com/Codon-Ops/codon-sdk/issues"
"Documentation" = "https://codon-ops.github.io/codon-sdk/"