adaline-providers — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited adaline-providers (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Providers are configured LLM connections in an Adaline workspace. Models are provider-specific model records available to prompts and deployments.
Key terms:
openai, anthropic, or googlemodel name and enabled flagSet ADALINE_API_KEY. Base URL: https://api.adaline.ai/v2.
| Symptom | First Fix |
|---|---|
| Provider name missing | Read provider, not legacy name |
| Model name missing | Read model, not legacy name |
| Need provider models inline | Call GET /providers/{providerId}?includeModels=true |
| Model unavailable | Filter to enabled: true |
curl "https://api.adaline.ai/v2/providers" \
-H "Authorization: Bearer $ADALINE_API_KEY"
curl "https://api.adaline.ai/v2/providers/provider_abc123?includeModels=true" \
-H "Authorization: Bearer $ADALINE_API_KEY"
curl "https://api.adaline.ai/v2/models?providerId=provider_abc123" \
-H "Authorization: Bearer $ADALINE_API_KEY"const providers = await adaline.providers.list();
const provider = await adaline.providers.get({ providerId, includeModels: true });
const models = await adaline.models.list({ providerId });providers = await adaline.providers.list()
provider = await adaline.providers.get(provider_id=provider_id, include_models=True)
models = await adaline.models.list(provider_id=provider_id)providerId when building prompt/model selectors.modelSettings only as capability metadata; pass actual runtime values in prompt/deployment config settings.See references/api.md for schemas and examples.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.