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
7 changes: 1 addition & 6 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -926,9 +926,4 @@ Resources:
**Python SDK:**

- [SDK Repository](https://github.com/aws/aws-durable-execution-sdk-python)
- [Documentation Index](https://github.com/aws/aws-durable-execution-sdk-python/blob/main/docs/index.md)
- [Getting Started](https://github.com/aws/aws-durable-execution-sdk-python/blob/main/docs/getting-started.md)
- [Steps](https://github.com/aws/aws-durable-execution-sdk-python/blob/main/docs/core/steps.md)
- [Wait Operations](https://github.com/aws/aws-durable-execution-sdk-python/blob/main/docs/core/wait.md)
- [Callbacks](https://github.com/aws/aws-durable-execution-sdk-python/blob/main/docs/core/callbacks.md)
- [Testing Patterns](https://github.com/aws/aws-durable-execution-sdk-python/blob/main/docs/testing-patterns/basic-tests.md)
- [AWS Durable Execution Documentation](https://docs.aws.amazon.com/durable-execution/)
31 changes: 4 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,33 +68,10 @@ def handler(event: dict, context: DurableContext) -> dict:

## 📚 Documentation

- **[AWS Documentation](https://docs.aws.amazon.com/lambda/latest/dg/durable-functions.html)** - Official AWS Lambda durable functions guide
- **[Documentation index](docs/index.md)** - SDK Overview and navigation

**New to durable functions?**
- [Getting started guide](docs/getting-started.md) - Build your first durable function

**Core operations:**
- [Steps](docs/core/steps.md) - Execute code with automatic checkpointing and retry support
- [Wait operations](docs/core/wait.md) - Pause execution without blocking Lambda resources
- [Callbacks](docs/core/callbacks.md) - Wait for external systems to respond
- [Invoke operations](docs/core/invoke.md) - Call other durable functions and compose workflows
- [Child contexts](docs/core/child-contexts.md) - Organize complex workflows into isolated units
- [Parallel operations](docs/core/parallel.md) - Run multiple operations concurrently
- [Map operations](docs/core/map.md) - Process collections in parallel with batching
- [Logger integration](docs/core/logger.md) - Add structured logging to track execution

**Advanced topics:**
- [Error handling](docs/advanced/error-handling.md) - Handle failures and implement retry strategies
- [Testing modes](docs/advanced/testing-modes.md) - Run tests locally or against deployed Lambda functions
- [Testing patterns](docs/testing-patterns/basic-tests.md) - Practical testing examples
- [Serialization](docs/advanced/serialization.md) - Customize how data is serialized in checkpoints

**Architecture:**
- [Architecture diagrams](docs/architecture.md) - Class diagrams and concurrency flows

**API reference:**
- API reference docs are in progress. Use the core operation docs above for now.
The complete documentation for the AWS Durable Execution SDK for Python lives on the AWS Documentation site:

- **[AWS Durable Execution Documentation](https://docs.aws.amazon.com/durable-execution/)** - Concepts, getting started, core operations, advanced topics, and API reference
- **[AWS Lambda Durable Functions Guide](https://docs.aws.amazon.com/lambda/latest/dg/durable-functions.html)** - How durable functions work on Lambda

## 💬 Feedback & Support

Expand Down
Loading
Loading