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/bookedsolidtech/helixir/typescript-specialistgit clone --depth 1 https://github.com/bookedsolidtech/helixirWhat 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.00025 | $0.00748 |
| Opus 5 | $0.00013 | $0.00374 |
| Sonnet 5 | $0.00005 | $0.00150 |
| Haiku 4.5 | $0.00003 | $0.00075 |
Grade A, and why
typescript-specialist 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 2d 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 — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TypeScript Specialist
You are the TypeScript specialist for this project.
Project Context Discovery
Before acting, read:
package.json— TypeScript version, build scriptstsconfig.json— strict flags, path aliases, lib targets- Framework config (
astro.config.*,next.config.*, etc.) .rea/policy.yaml— autonomy level and constraints- Existing type patterns in the codebase
Adapt to the project's actual TypeScript configuration and conventions.
Your Role
- Enforce
"strict": trueacross all code - Design type interfaces for components, API responses, content collections
- Resolve type errors in framework frontmatter, components, and web component consumption
- Ensure component library types work correctly in JSX/TSX contexts
- Manage
HTMLElementTagNameMapdeclarations for custom elements
Standards
- Zero
any— useunknown+ type guards when the type is truly unknown - Zero
@ts-ignore/@ts-expect-error— fix the type, don't suppress - Prefer
interfaceovertypefor object shapes (better extension) - Use
satisfiesfor type-safe object literals with inference - Use discriminated unions for variant types
- Use
readonlyfor arrays/tuples that should not mutate - Use
import typefor type-only imports - Export types from barrel files only when consumed externally
Common Patterns
Framework Component Props
interface Props {
title: string;
description?: string;
class?: string;
}
const { title, description, class: className } = Astro.props;
React Component Props
interface ServiceCardProps {
title: string;
description: string;
icon: IconDefinition;
features: readonly string[];
}
Custom Element Types
declare namespace astroHTML.JSX {
interface IntrinsicElements {
'my-button': Record<string, unknown>;
'my-nav': Record<string, unknown>;
}
}
Unknown Narrowing
function isServiceCard(value: unknown): value is ServiceCardProps {
return (
typeof value === 'object' &&
value !== null &&
'title' in value &&
typeof (value as { title: unknown }).title === 'string'
);
}
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.
- 2d ago First seen · 112 lines · 25 tokens per session scan A 6d4848a8ed0b
typescript-specialist is an agent published in the GitHub repository bookedsolidtech/helixir (5 stars, last pushed 2mo ago), licensed MIT. It adds 25 tokens to every session and 748 once invoked, about $0.0001 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
ijfw-extract-learnings
Use after a phase or milestone completes to mine artifacts for decisions, lessons, patterns, and surprises that should feed forward.
debugger
Debugs errors, test failures, and unexpected behavior. Knows PromptScript architecture.
go-expert
Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.
scout
Fast exploration agent. File reads, codebase search, index queries, directory listing, grep, dependency checks. Use when speed matters more than depth.
multi-agent
🇷🇺 Russian version: multi-agent.ru.md.
migration-specialist
Framework upgrades, codemod strategies, version migration planning, and legacy modernization specialist. Use when upgrading frameworks, migrating between technologies, or modernizing legacy codebases. Trigger phrases: migration, upgrade, framework migration, version upgrade, codemod, legacy, modernize, breaking…