minor readme updates (#36)

Co-authored-by: Kartik Sarangmath <kartiksarangmath@Kartiks-MacBook-Air.local>
This commit is contained in:
ksarangmath
2025-07-28 12:53:43 -07:00
committed by GitHub
parent 70a52477d9
commit 59f791d994

View File

@@ -97,11 +97,11 @@ graph TB
## 🚀 Quick Start
### For Users
### For Claude Code Users
1. **Download the app** or visit [omnara.ai](https://omnara.ai)
2. **Create an account** and generate an API key
3. **Configure your agent** with the API key
2. **Launch the webhook server** with the command in the onboarding flow
3. **Create your agent** with the webhook endpoint and API key
4. **Start monitoring** your AI workforce!
### For Developers
@@ -180,18 +180,22 @@ graph TB
### Method 2: Python SDK
```python
from omnara import OmnaraClient
import uuid
client = OmnaraClient(api_key="your-api-key")
instance_id = str(uuid.uuid4())
# Log progress and check for user feedback
response = client.log_step(
agent_type="claude-code",
step_description="Analyzing codebase structure"
step_description="Analyzing codebase structure",
agent_instance_id=instance_id
)
# Ask for user input when needed
answer = client.ask_question(
question="Should I refactor this legacy module?"
question="Should I refactor this legacy module?",
agent_instance_id=instance_id
)
```