Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/assemblyai/assemblyai-python-sdk/claude-mdgit clone --depth 1 https://github.com/AssemblyAI/assemblyai-python-sdkWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.05541 | $0.05541 |
| Opus 5 | $0.02771 | $0.02771 |
| Sonnet 5 | $0.01108 | $0.01108 |
| Haiku 4.5 | $0.00554 | $0.00554 |
Grade A, and why
assemblyai-python-sdk CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 433 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AssemblyAI Python SDK
Speech-to-text and audio intelligence SDK. Supports pre-recorded transcription, real-time streaming, and audio analysis features.
Quick start
pip install -U assemblyai
import os
import assemblyai as aai
aai.settings.api_key = os.environ["ASSEMBLYAI_API_KEY"]
transcript = aai.Transcriber().transcribe(
"https://example.com/audio.mp3",
config=aai.TranscriptionConfig(
speech_models=["universal-3-5-pro", "universal-2"],
speaker_labels=True,
),
)
print(transcript.text)
for utterance in transcript.utterances:
print(f"Speaker {utterance.speaker}: {utterance.text}")
Auth
Set ASSEMBLYAI_API_KEY as an environment variable, or:
aai.settings.api_key = "your-key"
Key classes
aai.Transcriber— Transcribe files, URLs, or streams. Methods:transcribe(),transcribe_async(),submit(),list_transcripts()aai.AsyncTranscriber— Asyncio counterpart ofTranscriber. Same options, every API call a coroutine. Methods:transcribe(),submit(),transcribe_group(),get_by_id(),delete_by_id(),list_transcripts(),upload_file()aai.AsyncTranscript— WhatAsyncTranscriberreturns. Same fields asTranscript, coroutine methodsaai.AsyncClient— Sharedhttpx.AsyncClientpool for one or moreAsyncTranscribersassemblyai.prerecorded.v2— Canonical module for both transcribers, matching the/v2/transcriptAPI. The top-levelaai.*names re-export itaai.TranscriptionConfig— All transcription options:speech_models,speaker_labels,sentiment_analysis,entity_detection,auto_chapters,content_safety,language_detection,summarization,word_boost,disfluenciesaai.Transcript— Result object with.text,.status,.utterances,.words,.chapters,.entities,.sentiment_analysis. Methods:get_sentences(),get_paragraphs(),export_subtitles_srt(),export_subtitles_vtt()aai.SyncTranscriber— Synchronous pre-recorded transcription: audio in, transcript out, one request (no polling). Methods:transcribe(),transcribe_async()aai.AsyncSyncTranscriber— Asyncio counterpart ofSyncTranscriber. Same input types, config, result, and errors;transcribe()andwarm()are coroutines. Owns an HTTP pool: useasync withorawait aclose(), or pass anaai.AsyncClientto share oneaai.SyncTranscriptionConfig— Sync options:model(defaultuniversal-3-5-pro),prompt,keyterms_prompt,conversation_context,language_codes,timestamps,sample_rate,channelsaai.SyncTranscriptResponse— Sync result:.text,.words(SyncWordwithconfidencealways,start/endonly whentimestamps=True),.confidence,.audio_duration_ms,.session_id,.request_time_msassemblyai.streaming.v3.RealTimeTranscriber— Real-time streaming with event-based API (threaded)assemblyai.streaming.v3.AsyncRealTimeTranscriber— Asyncio-native counterpart; same options/events
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 433 lines · 5,541 tokens per session scan A 65fa8e9a67c1
assemblyai-python-sdk CLAUDE.md is an instructions file published in the GitHub repository AssemblyAI/assemblyai-python-sdk (208 stars, last pushed 17d ago), licensed MIT. It adds 5,541 tokens to every session, about $0.0277 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
Paperlab AGENTS.md
Instructions for NourMtir0722/Paperlab, covering paperlab — for coding agents, integrating paperlab into a project, stage mode — paper as architecture, content types and lighting is data, not an enum.
markdy-com copilot-instructions.md
Instructions for HoangYell/markdy-com, a project described as: 🎬 Open-source animated architecture diagrams as code. Diagram-native DSL, 17 layout engines, Web Animations API, and MCP server for AI agents.
diffusers AGENTS.md
Instructions for huggingface/diffusers, a project described as: 🤗 Diffusers: State-of-the-art diffusion models for image, video, and audio generation in PyTorch.
comfy-prompt-studio AGENTS.md
Instructions for yxhpy/comfy-prompt-studio, covering agents.md - ai 代理配置文档, ai 提供商, 1. ollama (默认), 2. gemini and 提示词生成服务.
davinci-resolve-mcp AGENTS.md
Instructions for apvlv/davinci-resolve-mcp, covering project knowledge base, structure, where to look, code map and conventions.
lianhuanhua-skills AGENTS.md
Instructions for littlewindy123/lianhuanhua-skills, covering agents.md, project goal, architecture rules, commands and before committing.