Skip to content
Draft
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
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,32 @@ See the individual SDK READMEs for installation, usage examples, and API referen

## Getting Started

For a complete walkthrough, see the **[Getting Started Guide](./docs/getting-started.md)**.
### πŸš€ Quick Setup

**New to Copilot SDK?** Use our automated setup:

```bash
# Run automated environment setup
bash scripts/setup-dev-env.sh

# Or validate your existing setup
bash scripts/validate-env.sh
```

**Start from a template:**

```bash
# Copy a quickstart template
cp -r templates/typescript-quickstart my-app # or python-quickstart
cd my-app
# Follow the template README
```

See **[Environment Setup Guide](./docs/environment-setup.md)** for detailed instructions.

### πŸ“– Complete Walkthrough

For a complete tutorial, see the **[Getting Started Guide](./docs/getting-started.md)**.

Quick steps:

Expand Down Expand Up @@ -91,7 +116,9 @@ Please use the [GitHub Issues](https://github.com/github/copilot-sdk/issues) pag

## Quick Links

- **[Environment Setup](./docs/environment-setup.md)** – Complete environment configuration guide
- **[Getting Started](./docs/getting-started.md)** – Tutorial to get up and running
- **[Project Templates](./templates/README.md)** – Ready-to-use starter templates
- **[Cookbook](./cookbook/README.md)** – Practical recipes for common tasks across all languages
- **[Samples](./samples/README.md)** – Video walkthroughs and sample projects

Expand Down
Loading