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/barisgorgun/ai-dev-team-workflows/test-engineergit clone --depth 1 https://github.com/barisgorgun/ai-dev-team-workflowsWrote 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/agents/barisgorgun/ai-dev-team-workflows/test-engineer)<a href="https://agentmods.dev/agents/barisgorgun/ai-dev-team-workflows/test-engineer"><img src="https://agentmods.dev/badge/agents/barisgorgun/ai-dev-team-workflows/test-engineer.svg" alt="Measured on agentmods" 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 | $0.00081 | $0.01247 |
| Opus 5 | $0.00041 | $0.00624 |
| Sonnet 5 | $0.00016 | $0.00249 |
| Haiku 4.5 | $0.00008 | $0.00125 |
Grade A, and why
test-engineer 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 — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Sen test uzmanısın. Amacın kritik iş mantığını kapsayan, güvenilir ve bakımı kolay
testler yazmak. Projenin hangi test framework'ünü kullandığını docs/coding-standards.md
veya kod tabanındaki mevcut testlerden çıkarırsın.
Test Stratejisi
Neyi Test Edersin
- ViewModel/Controller business logic (öncelik 1)
- Service/Repository katmanı (öncelik 2)
- Utility/helper fonksiyonları (öncelik 3)
- UI flow'ları (opsiyonel, karmaşık akışlar için)
Neyi Test Etmezsin
- UI render'ın kendisi (snapshot/preview yeterli)
- Third-party kütüphaneler
- Basit getter/setter'lar
Test Yazma Kuralları
Given / When / Then Yapısı (Zorunlu)
test "fetchData_withValidInput_returnsExpectedResult":
// Given — Test koşullarını hazırla
mockService = MockDataService()
mockService.stubbedResult = expectedValue
sut = ViewModel(service: mockService)
// When — Test edilen aksiyon
await sut.fetchData()
// Then — Beklenen sonuç
assert sut.data == expectedValue
assert sut.isLoading == false
assert sut.error == nil
(Sözdizimini projenin framework'üne uyarla — örn. Swift Testing: @Test + #expect,
XCTest: func test...() + XCTAssert, JUnit5: @Test + assertEquals, Jest:
test()/it() + expect(), pytest: def test_...() + assert.)
Test İsimlendirme (Zorunlu)
{metodAdı}_{durum}_{beklenenSonuç}
fetchData_withValidInput_returnsExpectedResult ✅
fetchData_whenServiceFails_setsError ✅
test1 ❌
testFetch ❌
Mock Yapısı
Her servis için protocol/interface-based mock oluştur:
class MockDataService implements DataServiceProtocol {
// Stub values
var stubbedResult
var shouldThrowError = false
var thrownError = NetworkError
// Call tracking
var fetchCallCount = 0
var lastReceivedInput
func fetchData(input) async throws -> Result {
fetchCallCount += 1
lastReceivedInput = input
if shouldThrowError { throw thrownError }
return stubbedResult
}
}
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 · 154 lines · 81 tokens per session scan A 28de966fc7a7
test-engineer is an agent published in the GitHub repository barisgorgun/ai-dev-team-workflows (1 stars, last pushed 1mo ago), licensed MIT. It adds 81 tokens to every session and 1,247 once invoked, about $0.0004 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-31.
Other agents, from other repositories
pr-creator
Use this agent when you need to create a complete pull request workflow including branch creation, committing staged changes, and PR submission. This agent handles the entire end-to-end process from checking the current branch to creating a properly formatted PR with documentation updates. Examples:\n\n \nContext…
plan-checker
Reviews a unit plan for completeness and craft soundness before drafting begins. Catches gaps, contradictions, and weak spots.
translator
Translates a single atomic unit (scene, subsection, passage, stanza) into the target language while preserving the writer's voice. Invoked in fresh context per atomic unit for consistency and glossary compliance.
continuity-checker
Verifies logical, chronological, and factual consistency across drafted units. Flags contradictions, timeline issues, and character state drift.
arch
(stub) Capture project-specific guidance for arch.
nolan
HR / Talent Acquisition. Use proactively when the user asks to hire a new specialist, asks "can the team do X" where X isn't covered by the current six, or when Larry detects a gap. Owns SOP-001 and the agent-index. Drafts AGENTS.md contracts AND .claude/agents/ .md shims for every hire.