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 skills add tellang/triflux --skill tfx-findgit clone --depth 1 https://github.com/tellang/trifluxWrote 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/tellang/triflux/tfx-find)<a href="https://agentmods.dev/skills/tellang/triflux/tfx-find"><img src="https://agentmods.dev/badge/skills/tellang/triflux/tfx-find/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/tellang/triflux/tfx-find"><img src="https://agentmods.dev/badge/skills/tellang/triflux/tfx-find.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00087 | $0.01164 |
| Opus 5 | $0.00044 | $0.00582 |
| Sonnet 5 | $0.00017 | $0.00233 |
| Haiku 4.5 | $0.00009 | $0.00116 |
Grade A, and why
tfx-find 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 — 126 lines — stays where its author put it; the contents beside it link to each section on GitHub.
tfx-find — Fast Codebase Explorer
ARGUMENTS 처리: 이 스킬이
ARGUMENTS: <값>과 함께 호출되면, 해당 값을 사용자 입력으로 취급하여 워크플로우의 첫 단계 입력으로 사용한다. ARGUMENTS가 비어있거나 없으면 기존 절차대로 사용자에게 입력을 요청한다.
OMC explore agent 오마주. Haiku의 속도 + Glob/Grep/Read의 정밀도. "찾는 건 빠르게, 읽는 건 정확하게."
용도
- 파일 위치를 모를 때 빠르게 찾기
- 특정 함수/클래스/변수가 어디서 사용되는지 추적
- 문자열 패턴으로 코드 검색
- 프로젝트 구조 빠르게 파악
- 설정 파일, 진입점, 테스트 파일 탐색
워크플로우
Step 1: 검색 의도 파싱
사용자 입력에서 검색 유형을 판별한다:
검색 유형:
file_pattern — "*.test.ts 파일 찾아" → Glob
symbol — "createBridge 함수 어디?" → Grep (정규식)
string — "TODO 주석 찾아" → Grep (리터럴)
structure — "프로젝트 구조 보여줘" → Glob + tree
usage — "Router 클래스 사용처" → Grep (import/require + 참조)
definition — "handleAuth 정의 찾아" → Grep (function/class/const 패턴)
Step 2: 검색 실행
검색 유형에 따라 최적 도구 조합을 선택한다:
file_pattern:
Glob("**/{pattern}") → 매칭 파일 목록
symbol:
Grep(pattern="{symbol}", type="{lang}") → 파일 목록
→ 상위 5개 파일 Read (정의부 중심, 각 ±10줄)
string:
Grep(pattern="{string}", output_mode="content", context=2) → 매칭 라인 + 컨텍스트
structure:
Glob("**/*.{ts,js,mjs,py,go}") → 파일 트리 구성
→ 디렉토리별 파일 수 + 역할 요약
usage:
Grep(pattern="import.*{symbol}|require.*{symbol}", output_mode="content") → import 위치
Grep(pattern="{symbol}", output_mode="content") → 실제 사용 위치
→ 중복 제거 후 사용처 목록
definition:
Grep(pattern="(function|class|const|let|var|export)\\s+{symbol}", output_mode="content")
→ 정의 위치 + 파일 경로
Step 3: 결과 정리
검색 결과를 구조화하여 보고한다:
## 검색 결과: {query}
### 매칭 파일 ({count}개)
| # | 파일 | 라인 | 컨텍스트 |
|---|------|------|---------|
| 1 | src/hub/bridge.mjs | 42 | export function createBridge(...) |
| 2 | src/hub/router.mjs | 15 | import { createBridge } from './bridge' |
### 코드 스니펫
{핵심 코드 (필요 시)}
### 관련 파일
- src/hub/bridge.test.mjs (테스트)
- src/hub/index.mjs (re-export)
검색 최적화 규칙
- Glob 먼저, Grep 나중: 파일 위치를 알면 Glob, 내용 검색은 Grep.
- type 필터 사용:
type: "js"등으로 불필요 파일 제외. - head_limit 사용: 결과가 많을 때 상위 N개만 반환.
- 병렬 검색: 독립적인 검색은 동시에 실행.
- 점진적 확장: 좁은 범위 → 넓은 범위.
src/→**/*.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 126 lines · 87 tokens per session scan A 72d21b97e44e
tfx-find is a skill published in the GitHub repository tellang/triflux (7 stars, last pushed 2d ago), licensed MIT. It adds 87 tokens to every session and 1,164 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 skills, from other repositories
debug
Debug a stubborn bug with a deterministic reproduction, hypothesis ledger, one-variable fixes, and a regression test. Use after the first obvious look fails, reproduction is unclear, or a fix attempt failed. Not for routine obvious failures; use for "ไล่บั๊ก".
bisect
Pinpoint the first bad commit for a reproducible regression in a safe temporary worktree. Use when HEAD is bad, a known revision is good, and one unattended command distinguishes them; handles flaky endpoints and git-bisect skip exit 125.
bug-detective
This skill should be used when the user asks to "debug this", "fix this error", "investigate this bug", "troubleshoot this issue", "find the problem", "something is broken", "this isn't working", "why is this failing", or reports errors/exceptions/bugs. Provides systematic debugging workflow and common error patterns.
do-it-code-quality
Use when designing, changing, or debugging code to locate causal ownership and close the affected behavior.
lucia-chat
Set two agent sessions talking through the Luciazero Agent Bus and watch it live in a terminal: pick the pair, open the windows, read the transcript. Use for "ให้ codex กับ claude คุยกัน" or "watch the bus".
system-health
Suggest whether the machine needs a DISK or MEMORY cleanup — and catch the case where Heimdall ITSELF is the hog (runaway orphaned python from the presence keeper). Use when the machine is slow / swapping / laggy, disk or "System Data" is full, memory is exhausted, at the start of a long session, or when the user asks…