Install
$ agentstack add skill-digitalocean-labs-do-app-platform-skills-ai-services ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
AI Services Skill
Configure DigitalOcean Gradient AI Platform for App Platform applications.
> Tip: This is one specialized skill in the App Platform library. For complex multi-step projects, consider using the planner skill to generate a staged approach. For an overview of all available skills, see the [root SKILL.md](../../SKILL.md).
Quick Decision
What do you need?
├── Simple LLM API calls → Serverless Inference
│ OpenAI-compatible API, no agent management
│
└── Full AI agents → Agent Development Kit (ADK)
Knowledge bases, RAG, guardrails, multi-agent routing
| Need | Solution | Reference | |------|----------|-----------| | Call LLM models directly | Serverless Inference | [serverless-inference.md](reference/serverless-inference.md) | | Build agents with knowledge bases | ADK | [agent-development-kit.md](reference/agent-development-kit.md) | | Content filtering / guardrails | ADK | [agent-development-kit.md](reference/agent-development-kit.md) | | Multi-agent workflows | ADK | [agent-development-kit.md](reference/agent-development-kit.md) |
Credential Handling
Model access keys follow the standard credential hierarchy:
- GitHub Secrets (recommended): User creates key → adds to GitHub Secrets → app spec references
- App Platform Secrets: Set via
doctl apps updatewithtype: SECRET
# App Spec pattern
envs:
- key: MODEL_ACCESS_KEY
scope: RUN_TIME
type: SECRET
value: ${MODEL_ACCESS_KEY} # From GitHub Secrets
Key creation: Control Panel → Serverless Inference → Model Access Keys
> Keys shown only once after creation—store securely.
Quick Start: Serverless Inference
# .do/app.yaml
services:
- name: api
envs:
- key: MODEL_ACCESS_KEY
scope: RUN_TIME
type: SECRET
value: ${MODEL_ACCESS_KEY}
- key: INFERENCE_ENDPOINT
value: https://inference.do-ai.run
# Python SDK (OpenAI-compatible)
from openai import OpenAI
import os
client = OpenAI(
base_url=os.environ["INFERENCE_ENDPOINT"] + "/v1",
api_key=os.environ["MODEL_ACCESS_KEY"],
)
response = client.chat.completions.create(
model="llama3.3-70b-instruct",
messages=[{"role": "user", "content": "Hello!"}],
)
Full guide: See [serverless-inference.md](reference/serverless-inference.md)
Quick Start: Agent Development Kit
# Install and configure
pip install gradient-adk
gradient agent configure
# Run locally
gradient agent run
# → http://localhost:8080/run
# Deploy to DigitalOcean
gradient agent deploy
# Agent entrypoint
from gradient_adk import entrypoint
@entrypoint
def entry(payload, context):
query = payload["prompt"]
return {"response": "Hello from agent!"}
Full guide: See [agent-development-kit.md](reference/agent-development-kit.md)
Available Models
| Model | Use Case | |-------|----------| | llama3.3-70b-instruct | General purpose, high quality | | llama3-8b | Faster, lower cost | | mistral-7b | Efficient, multilingual |
# List all available models
doctl genai list-models
Check Gradient AI Models for current availability.
Reference Files
- [serverless-inference.md](reference/serverless-inference.md) — SDK setup, API parameters, examples
- [agent-development-kit.md](reference/agent-development-kit.md) — ADK workflow, knowledge bases, guardrails
Quick Troubleshooting
| Error | Cause | Fix | |-------|-------|-----| | 401 Unauthorized | Invalid model access key | Verify key in GitHub Secrets | | Model not found | Invalid model ID | Run doctl genai list-models | | Rate limit exceeded | Too many requests | Implement exponential backoff | | ADK deploy fails | Missing token scopes | Ensure genai CRUD + project read scopes |
Integration with Other Skills
- → designer: Add AI service environment variables to app spec
- → deployment: Model access key stored in GitHub Secrets
- → devcontainers: Test AI integrations locally before deployment
- → planner: Plan AI-enabled app deployments
Documentation Links
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: digitalocean-labs
- Source: digitalocean-labs/do-app-platform-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.