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 andregusman-raiz/a-gusman-claude --skill ag-teleportargit clone --depth 1 https://github.com/andregusman-raiz/a-gusman-claudeWrote 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/andregusman-raiz/a-gusman-claude/ag-teleportar)<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/ag-teleportar"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-teleportar/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/andregusman-raiz/a-gusman-claude/ag-teleportar"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-teleportar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 5 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 21 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Privilege Escalation · line 118 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Privilege Escalation · line 146 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- high Privilege Escalation · line 119 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
- medium Excessive Agency · line 4 Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
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.00050 | $0.01378 |
| Opus 5 | $0.00025 | $0.00689 |
| Sonnet 5 | $0.00010 | $0.00276 |
| Haiku 4.5 | $0.00005 | $0.00138 |
Grade A, and why
ag-teleportar 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 9d 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 — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ag-teleportar — Context-Aware Project Switching
Spawn the ag-teleportar agent for intelligent project switching with context preservation.
Diferenca vs cd
cd ~/Claude/GitHub/projeto |
ag-teleportar projeto | |
|---|---|---|
| Muda diretorio | Sim | Sim |
| Carrega CLAUDE.md | Nao | Sim |
| Detecta stack | Nao | Sim |
| Verifica .env | Nao | Sim |
| Mostra branch/status | Nao | Sim |
| Resume estado | Nao | Sim |
Invocation
Use the Agent tool with:
subagent_type:general-purposemodel:haikumode:autorun_in_background:falseprompt: Compose from template below + $ARGUMENTS
Prompt Template
Modo: [nome-do-projeto | path | --list]
Voce e o agente de teleporte. Faz switch inteligente entre projetos.
## Para --list
Listar todos os projetos conhecidos:
```bash
# Projetos em GitHub/
for dir in ~/Claude/GitHub/*/; do
if [ -d "$dir/.git" ]; then
name=$(basename "$dir")
branch=$(cd "$dir" && git branch --show-current 2>/dev/null || echo "?")
status=$(cd "$dir" && git status --short 2>/dev/null | wc -l | tr -d ' ')
echo "- $name (branch: $branch, changes: $status)"
fi
done
# Projetos em projetos/
for dir in ~/Claude/projetos/*/; do
name=$(basename "$dir")
echo "- $name (projetos/)"
done
Incluir portas conhecidas da tabela do CLAUDE.md:
| Porta | Projeto |
|---|---|
| 3000 | raiz-platform |
| 3001 | profdigital |
| 3002 | automata |
| 3003 | totvs-educacional-frontend |
| 3004 | sophia-educacional-frontend |
| 3005 | fgts-platform |
| 4200 | raiz-agent-dashboard |
Para nome-do-projeto ou path
1. Resolver path
Procurar em ordem:
- ~/Claude/GitHub/[nome]/
- ~/Claude/projetos/[nome]/
- Path absoluto (se fornecido)
- Fuzzy match no nome (se nao encontrar exato)
2. Context Snapshot (estado atual antes de sair)
Salvar estado do projeto ATUAL antes de trocar:
echo "## Context Snapshot — $(basename $PWD) — $(date)" >> /tmp/teleport-context.md
echo "Branch: $(git branch --show-current 2>/dev/null)" >> /tmp/teleport-context.md
echo "Changes: $(git status --short 2>/dev/null | wc -l)" >> /tmp/teleport-context.md
echo "Last commit: $(git log --oneline -1 2>/dev/null)" >> /tmp/teleport-context.md
3. Switch
cd [resolved-path]
4. Context Load (carregar contexto do destino)
Executar e reportar:
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.
- 9d ago First seen · 157 lines · 50 tokens per session scan A 893b792fee54
ag-teleportar is a skill published in the GitHub repository andregusman-raiz/a-gusman-claude (19 stars, last pushed 3d ago), licensed MIT. It adds 50 tokens to every session and 1,378 once invoked, about $0.0003 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-09-03.
Other skills, from other repositories
daily-brief
Surfaces recent updates relevant to you from GitHub, Linear, Slack, and other configured sources — PR reviews, new assignments, ticket changes, mentions, and CI failures. Use when starting work, catching up after being away, or prepping for standup.
todo
Quick task capture with priority detection and batch support.
product-manager-toolkit
Use when the user needs product management workflows such as RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, go-to-market strategy, feature prioritization, research synthesis, or requirements documentation.
weekly
A weekly-report workflow that combines Git history with records from Claude Code and Codex sessions. It turns work from a selected date range into a report for two related software repositories.
relay
Session relay — compresses what's been done so far (writes a one-liner for /compact) and generates a "next task" prompt (a baton) for the user to hand off. Use on requests like "relay / hand off / next session / continue after compact / baton / handoff / clean up context and continue next task." Does not run /compact…
n8n-pto-pipeline
Create n8n workflow for daily task assignment from PTO engineer to foreman via Telegram bot with status reporting.