agentsclimarketplace

Adaline providers

Skill adaline/skills/skills/adaline-providers

Skills that guide AI coding agents to integrate with the Adaline platform — send traces, manage prompts, run evaluations, fetch deployments, and more. Compatible with Cursor, Claude Code, Codex, Windsurf, and 40+ other agents.

Install
npx -y skills add adaline/skills --skill adaline-providers

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

List configured AI providers and models in Adaline. Use when discovering available LLM providers, filtering models, or checking provider configuration.

SKILL.md

2.2 KB, as published. Nobody here has run it

Adaline Providers

Concepts

Providers are configured LLM connections in an Adaline workspace. Models are provider-specific model records available to prompts and deployments.

Key terms:

  • Provider — configured connection to a model provider
  • providerId — provider record ID used to filter models
  • provider — provider identifier such as openai, anthropic, or google
  • Model — model record with model name and enabled flag

Configuration

Set ADALINE_API_KEY. Base URL: https://api.adaline.ai/v2.

Quick Triage

SymptomFirst Fix
Provider name missingRead provider, not legacy name
Model name missingRead model, not legacy name
Need provider models inlineCall GET /providers/{providerId}?includeModels=true
Model unavailableFilter to enabled: true

REST API

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"

SDK Usage

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)

Best Practices

  1. Discover provider IDs at startup instead of hardcoding them.
  2. Filter models by providerId when building prompt/model selectors.
  3. Use modelSettings only as capability metadata; pass actual runtime values in prompt/deployment config settings.
  4. Cache provider/model lists briefly; they change less often than prompt traffic.

References

See references/api.md for schemas and examples.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.