Borrowing it
Nothing to install: this file belongs to senda-labs/DQIII8. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/senda-labs/DQIII8/main/.claude/skills/mode/SKILL.mdgit clone --depth 1 https://github.com/senda-labs/DQIII8Wrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/senda-labs/dqiii8/mode)<a href="https://agentmods.dev/skills/senda-labs/dqiii8/mode"><img src="https://agentmods.dev/badge/skills/senda-labs/dqiii8/mode/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/senda-labs/dqiii8/mode"><img src="https://agentmods.dev/badge/skills/senda-labs/dqiii8/mode.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.00000 | $0.00954 |
| Opus 5 | $0.00000 | $0.00477 |
| Sonnet 5 | $0.00000 | $0.00191 |
| Haiku 4.5 | $0.00000 | $0.00095 |
Grade A, and why
mode 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 10d 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 — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/mode — Activar Modo de Trabajo
Escribe el modo en var/dqiii8_mode.conf. El hook session_start.py lo lee
al inicio de cada sesion e inyecta las instrucciones de comportamiento correspondientes.
Uso
/mode coder
/mode analyst
/mode creative
/mode status
Modos disponibles
| Modo | Foco | Estilo |
|---|---|---|
coder |
Implementacion y correctitud | Codigo primero, prosa minima, Black siempre, show diffs |
analyst |
Datos, metricas, outputs estructurados | Tablas, verificar numeros, sin especulacion |
creative |
Narrativa, exploracion, alternativas | Long-form, espanol literario, sin formato tecnico |
Sin modo activo: comportamiento estandar neutro (hereda del proyecto activo).
Implementacion
python3 -c "
import os, sys
from pathlib import Path
ROOT = Path(os.environ.get('DQIII8_ROOT', '/root/dqiii8'))
MODE_FILE = ROOT / 'var' / 'dqiii8_mode.conf'
LEGACY_FILE = Path('/tmp/dqiii8_mode.txt')
VALID_MODES = {'coder', 'analyst', 'creative'}
def current_mode():
env = os.environ.get('DQIII8_MODE', '').strip().lower()
if env in VALID_MODES:
return f'{env} (via DQIII8_MODE env var — tiene prioridad sobre el fichero)'
for path in (MODE_FILE, LEGACY_FILE):
try:
if path.exists():
value = path.read_text(encoding='utf-8').strip()
if value:
return f'{value} ({path})'
except OSError:
pass
return 'neutro'
args = sys.argv[1:]
if not args or args[0] == 'status':
print(f'Modo activo: {current_mode()}')
sys.exit(0)
mode = args[0].lower()
if mode not in VALID_MODES:
print(f'Modo invalido: {mode!r}')
print('Opciones: analyst | coder | creative')
sys.exit(1)
MODE_FILE.parent.mkdir(parents=True, exist_ok=True)
MODE_FILE.write_text(mode + chr(10), encoding='utf-8')
print(f'Modo activado: {mode} -> {MODE_FILE}')
print('Persiste entre sesiones y reinicios (/mode status para verificar)')
" "$@"
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.
- 10d ago First seen · 96 lines · 0 tokens per session scan A 35195ec2b283
mode is a skill published in the GitHub repository senda-labs/DQIII8 (11 stars, last pushed 21d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 954 tokens. 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 skills, from other repositories
using-adaptive-harness
Auto-mode bootstrap for adaptive-harness. Intercepts tasks, routes to optimal harness, evaluates results. Use on every task when adaptive-harness auto-mode is active.
task-taxonomy
Reference for the 6-axis task taxonomy used by adaptive-harness routing. Use when user asks how tasks are classified.
harness-registry
Manage the adaptive-harness pool: list, inspect, promote, demote harnesses. Use when user asks about harness status or wants to manage the pool.
skill-review-response
Use when a reviewer, CI bot, or another AI leaves feedback to address.
sys-configure
Configure Claude Octopus — redirects to /octo:setup interactive wizard.
continuum-tools-mcp
Connect MCP servers (Stdio/SSE/StreamableHTTP) to a Continuum agent, configure tool filtering, set up tool-context capture/injection (e.g. sessionid), and read run artifacts (UI widgets, structured tool data). Invoke when the user asks "connect MCP", "filesystem tool", "remote API tool", "auto-capture sessionid"…