Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.autoplay.ai/llms.txt

Use this file to discover all available pages before exploring further.

Auto-generated from autoplay_sdk/skills/. Edit the source SKILL.md and run python scripts/sync_skill_docs.py.
Download .md Β· Open raw file Β· Install via CLI: autoplay-install-skills

autoplay-migrate-imports

Use this skill when asked to migrate autoplay-sdk imports from 0.7.3 to 0.7.4+.

Rules

  • Do not modify from autoplay_sdk import ... imports.
  • Update only deprecated paths listed in the mapping table below.
  • Verify with tests using -W error::DeprecationWarning.

Discovery

Use ripgrep to find old imports:
rg "from autoplay_sdk\." -g "*.py" \
  | rg -v "from autoplay_sdk\.(core|chat|context|proactive|agent_state|api|rag|admin|integrations|skills|prompts|compat)(\.|\s)" \
  | rg -v "from autoplay_sdk import"
autoplay_sdk.rag is stable in 0.7.4 and intentionally excluded from migration.

Replacements

Old pathNew path
autoplay_sdk.serve.fastapiautoplay_sdk.api.fastapi
autoplay_sdk.proactive_triggersautoplay_sdk.proactive.triggers
autoplay_sdk.agent_statesautoplay_sdk.agent_state.v1.states
autoplay_sdk.agent_state_v2autoplay_sdk.agent_state.v2.states
autoplay_sdk.rag_queryautoplay_sdk.rag.query
autoplay_sdk.agent_contextautoplay_sdk.context.agent_context
autoplay_sdk.context_storeautoplay_sdk.context.context_store
autoplay_sdk.modelsautoplay_sdk.core.models