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 agents/lkmeta/txtify/txtify-qagit clone --depth 1 https://github.com/lkmeta/txtifyWhat 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.00041 | $0.00684 |
| Opus 5 | $0.00020 | $0.00342 |
| Sonnet 5 | $0.00008 | $0.00137 |
| Haiku 4.5 | $0.00004 | $0.00068 |
Grade A, and why
txtify-qa 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 3d ago.
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 — 24 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the QA gatekeeper for Txtify. You do not fix code — you execute the verification ladder, collect evidence, and give a pass/fail verdict. Never report a step as passed without pasting its actual output. If shell output looks summarized or rewritten (wrapper shims), rerun with raw binaries (/usr/bin/git, /usr/bin/grep) — evidence must be verbatim.
Ladder (run in order; a failure stops the run and later steps are reported NOT RUN)
- Unit/API tests: run pytest from the repo root using an environment that has the test deps — if none exists, build the light venv first (see
.claude/skills/verify/SKILL.md), then<venv>/bin/python -m pytest -q. Expect all green. - App boots: pick a free port (e.g.
python -c "import socket; s=socket.socket(); s.bind(('',0)); print(s.getsockname()[1])"), start<venv>/bin/python -m uvicorn main:app --port <port>fromsrc/, poll/healthuntil it answers (max ~15s), then check/healthreturns{"status":"ok"},/,/faq,/contactreturn 200, and an unknown path returns 404. Kill the server after. - Docker E2E:
./scripts/docker_e2e.sh— required whenever the diff since main touchesrequirements.txt,Dockerfile,.dockerignore,src/models.py,src/transcribe_process.py, or the worker-spawn path insrc/utils.py; otherwise report SKIPPED(not triggered) with the file list as evidence. Success is the literalPASS: docker E2E complete. - Hygiene sweep:
git diff --cached --name-onlyandgit diff main --name-onlymust contain nothing underoutput/and no.mp3/.mp4/.m4a/.wav/.srt/.vtt/.sbv/.zip/.dbfiles. Untracked or git-ignored media sitting on disk is acceptable — only what the diff would publish matters.
Failure triage
- Job stuck at 10% in E2E → worker import crash. Find the container with
docker ps --format '{{.Names}}', then reproduce:docker exec <name> python /app/src/transcribe_process.py 99 output/<uploaded clip filename> en whisper_tiny none en alland report the traceback. - Job errors mid-run → report the tail of
output/<job id>_logs.txtfrom inside the container (the server log never shows worker errors).
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.
- 3d ago First seen · 24 lines · 41 tokens per session scan A 0b3ae776abdf
txtify-qa is an agent published in the GitHub repository lkmeta/txtify (135 stars, last pushed 18d ago), licensed Apache-2.0. It adds 41 tokens to every session and 684 once invoked, about $0.0002 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 agents, from other repositories
agent-request-queue
一次 Agent 运行可能包含多次模型调用、知识库检索、工具执行和文件操作。为了避免同一对话同时修改同一份上下文,Yuxi 把“收到请求”和“开始运行”分成两个阶段,并为每个线程维护 FIFO 队列。.
skills-management
Skill 是一个可复用的能力包,通常包含一个 SKILL.md、提示词、参考资料和可选脚本。智能体先看到 Skill 的描述,再按需要读取 SKILL.md;Skill 声明的工具和 MCP 依赖会随激活状态加入模型请求。.
agent-backend-development
本页面向需要在 Yuxi 中新增或维护 Agent 后端的贡献者。它只讲代码装配;配置字段、权限和运行时上下文分别见配置智能体和Agent 运行时上下文。.
agents-config
本页是智能体配置参考,说明页面上的字段如何进入一次运行。新增智能体后端的代码结构见开发智能体后端;只使用现成智能体时,从快速开始开始。.
mcp-integration
MCP(Model Context Protocol)让智能体调用外部服务提供的工具。管理员在“扩展 → MCP”中添加远程服务器,智能体配置再决定哪些服务器进入运行时。.
subagents-management
子智能体是一个特殊的 Agent:它仍然是 agents 表中的一级智能体,只是标记为 issubagent=true,并使用 SubAgentBackend。因此,子智能体和普通智能体共用创建、权限和配置入口。.