testing-guidelines

testing-guidelines is an agent for Claude Code from bl1nk-bot/bl1nk-agents-manager. It costs 20 tokens per session (1,632 once invoked), scanned A, original, MIT.

A set of testing instructions for checking an application’s Azure connection, main Python system, FastAPI server, and prompt and context components.

In plain words
What is it for?
Use it to test the Azure endpoint and API key, run the main system tests, inspect FastAPI documentation, and check context and prompt-template loading.
Why use it?
It provides named test files, commands, and checks for verifying that the application and its AI-related components work as expected.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: mentions subagents; names the AskUserQuestion tool; positional $N argument.

Good fit Use it to test the Azure endpoint and API key, run the main system tests, inspect FastAPI documentation, and check context and prompt-template loading.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/bl1nk-bot/bl1nk-agents-manager/testing-guidelines
Install

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.

Clone the repo
git clone --depth 1 https://github.com/bl1nk-bot/bl1nk-agents-manager

Made for: Claude Code.

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 testing-guidelines

README.md
[![agentmods](https://agentmods.dev/badge/agents/bl1nk-bot/bl1nk-agents-manager/testing-guidelines.svg)](https://agentmods.dev/agents/bl1nk-bot/bl1nk-agents-manager/testing-guidelines)
Your own site
<a href="https://agentmods.dev/agents/bl1nk-bot/bl1nk-agents-manager/testing-guidelines"><img src="https://agentmods.dev/badge/agents/bl1nk-bot/bl1nk-agents-manager/testing-guidelines.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,632 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00020 $0.01632
Opus 5 $0.00010 $0.00816
Sonnet 5 $0.00004 $0.00326
Haiku 4.5 $0.00002 $0.00163

Measured 8d ago against content hash 28f00e988e02, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

testing-guidelines scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl http://localhost:8000/health
agents/testing-guidelines.md · 287 lines

How it starts

The opening of the file, as written. The whole thing — 287 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Testing Guidelines

การทดสอบระบบ

ไฟล์ทดสอบหลัก

ขั้นตอนการทดสอบ

  1. ทดสอบ Azure Connection:
# ทดสอบ endpoint
Invoke-WebRequest -Uri "https://billl-mer7xd8i-eastus2.openai.azure.com/" -Method Head

# ทดสอบ API key
python -c "import openai; client = openai.AzureOpenAI(api_key='YOUR_KEY', api_version='2024-02-15-preview', azure_endpoint='YOUR_ENDPOINT'); print('Success')"
  1. ทดสอบระบบหลัก:
python test_system.py
  1. ทดสอบ FastAPI Server:
python run_chonost.py
# เปิด http://localhost:8000/docs

การทดสอบ Prompt Template System

ทดสอบ Context Manager

from src.core.context_manager import context_manager

# ทดสอบการโหลด context
story_context = context_manager.story_context
project_status = context_manager.project_status
user_preferences = context_manager.user_preferences

print(f"Story context loaded: {len(story_context)} items")
print(f"Project status: {project_status}")

ทดสอบ Prompt Templates

from src.core.prompt_templates import prompt_template_manager, PromptType
from src.core.context_manager import context_manager

# ทดสอบ Scene Architect prompt
context = context_manager.get_context_for_prompt()
prompt = prompt_template_manager.get_prompt(
    PromptType.SCENE_ARCHITECT,
    context=context
)
print("Scene Architect prompt generated successfully")

ทดสอบ Model Router

from src.core.model_router import model_router

# ทดสอบการ route request
model_name, task_category, model_tier = await model_router.route_request(
    user_input="ช่วยเขียนฉากต่อสู้"
)
print(f"Selected model: {model_name}, Category: {task_category.value}")

การทดสอบ API Endpoints

ทดสอบ Health Check

curl http://localhost:8000/health

ทดสอบ AI Completion

curl -X POST "http://localhost:8000/api/ai/enhanced/completion" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "ช่วยเขียนฉากต่อสู้ระหว่าง Ignis และ Mia",
    "intent": "creative_writing",
    "max_tokens": 500,
    "temperature": 0.7
  }'

Read the full file on GitHub · 287 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. 8d ago First seen · 287 lines · 20 tokens per session scan A 28f00e988e02

Subscribe to this mod's changes

testing-guidelines is an agent published in the GitHub repository bl1nk-bot/bl1nk-agents-manager (8 stars, last pushed 1mo ago), licensed MIT. It adds 20 tokens to every session and 1,632 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.