DQIII8: Skill for Claude Code

.claude/skills/mode/SKILL.md

mode is a skill for Claude Code from senda-labs/DQIII8. It costs 0 tokens per session (954 once invoked), scanned A, original, MIT.

A session-wide work setting with three choices: coder, analyst, or creative. The selected setting changes the instructions and style used during the session.

In plain words
What is it for?
Use it to choose implementation-focused, data-focused, or narrative work, or to check the current setting.
Why use it?
It lets a project keep a consistent focus and output style instead of repeating those preferences in every request.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

This is senda-labs/DQIII8's own configuration. It tells Claude Code how to work on DQIII8 itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything DQIII8 configures →

Part of the dqiii8 plugin — 22 skills, 14 commands, 17 agents shipped together

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/senda-labs/DQIII8/main/.claude/skills/mode/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/senda-labs/DQIII8

Made for: Claude Code.

Or install dqiii8, the plugin that ships this one along with the rest of its 22 skills, 14 commands, 17 agents.

Wrote 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.

agentmods badge for mode

README.md
[![agentmods](https://agentmods.dev/badge/skills/senda-labs/dqiii8/mode/github.svg)](https://agentmods.dev/skills/senda-labs/dqiii8/mode)
Your own site
<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.

agentmods 80×15 button for mode

Your own site · 80×15
<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>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 954 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 10d ago against content hash 35195ec2b283, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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.

.claude/skills/mode/SKILL.md · 96 lines

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)')
" "$@"

Read the full file on GitHub · 96 lines

Changes

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.

  1. 10d ago First seen · 96 lines · 0 tokens per session scan A 35195ec2b283

Subscribe to this mod's changes

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.