Borrowing it
Nothing to install: this file belongs to 0xSoftBoi/suwappubot. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/0xSoftBoi/suwappubot/main/.claude/skills/aegis-goal/SKILL.mdgit clone --depth 1 https://github.com/0xSoftBoi/suwappubotWrote 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/0xsoftboi/suwappubot/aegis-goal)<a href="https://agentmods.dev/skills/0xsoftboi/suwappubot/aegis-goal"><img src="https://agentmods.dev/badge/skills/0xsoftboi/suwappubot/aegis-goal/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/0xsoftboi/suwappubot/aegis-goal"><img src="https://agentmods.dev/badge/skills/0xsoftboi/suwappubot/aegis-goal.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00069 | $0.03517 |
| Opus 5 | $0.00034 | $0.01758 |
| Sonnet 5 | $0.00014 | $0.00703 |
| Haiku 4.5 | $0.00007 | $0.00352 |
Grade A, and why
aegis-goal 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 12d 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 — 61 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/aegis-goal — Ship the AEGIS integration, all phases
Standing goal: every phase of docs/plans/aegis-fork-extend.md implemented, verified, and merged. The plan (2026-08-02) adopts gaiarobotics/aegis (MIT, fork-pinned) as Suwappu's agent immune system: Python scanner at the LLM/message choke points, quarantine federated with BlacklistService, a minimal TypeScript port for the api-ts agent surfaces, plus standalone hardening fixes the research surfaced. Upstream reference commit: e3e87b3.
How to use
/aegis-goal— pick the next unchecked item in phase order, re-verify its file:line anchor against current code (the plan is a point-in-time audit; lines drift), implement it, run the phase's verification, check it off, and commit the edit to this file in the same PR as the work./aegis-goal <phase|item>— jump to that phase or item (e.g./aegis-goal 2or/aegis-goal 3.3).- One phase ≈ one PR via
/ship. Don't batch phases. Items within a phase may split into smaller PRs if independently shippable. - When implementation reveals a new gap (like Phase 4's items were found), ADD it here under the right phase.
- Goal is DONE when every box is checked; then archive this skill (delete the directory in a final commit noting completion).
The backlog
Phase 1 — Python scanner at LLM + message choke points (observe mode)
SHIPPED: PR #685 merged to main (58b24f0), CI green, 58 tests, cubic review findings addressed. Deploy to Railway is still pending — auto-deploy is broken (billing) and the CCR session has no Railway credentials; run /deploy prod python-api from a machine with the Railway CLI, then python3 scripts/status.py to verify boot. 1.7b's telemetry clock starts at that deploy.
- 1.1 Pinned
aegis-shieldto immutable upstream commite3e87b3791fb…in requirements.in + pip-compile'd lockfile (minimal diff; all 3 hard deps already present). Verified clean-venv install + scan smoke test. Manual follow-up: session repo-scoping blocked creating the0xsoftboi/aegisfork — fork on GitHub when convenient and repoint the requirements.in URL (same SHA). - 1.2
bot/config/aegis.yaml(observe, scanner-only modules, block_on_threat: false) +bot/config/aegis_signatures/crypto.yaml(14 SW-* signatures) +bot/services/aegis_service.py(fail-open singleton wrapper, WARNING-log mirror for Railway) +AEGIS_ENABLEDsetting. Verified: pack loads (52 sigs total), 14/14 detection cases pass, p50 0.22ms. - 1.3 DONE (commit 3618d9b) — LLM pre-flight:
Shield.scan_input()inparse_trade_intent(bot/services/nl_intent_service.py:404, before the Anthropic call); provenance-delimit untrusted text in_build_user_content(:214-216); sanitize thepending_intentecho (:182-192— injection persistence loop). - 1.4 DONE (commit f8d896b) — WhatsApp seam: scan in
_wa_dispatch(api/main.py:2512-2531) — must cover text, button payloads,nfm_replyJSON, and post-Whisper voice transcripts (:2522-2524). - 1.5 DONE (commit ee4747b, group -1 at top of add_handlers) — Telegram seam: group
-1scanner handler inbot/main.pyadd_handlers(before:740) or wrapPerUserSerializingProcessor.do_process_update(bot/utils/update_processor.py:25). Scan-and-log only — never blocks normal commands. - 1.6 DONE (commit f8d896b, 30/60s per-key limit + scan) — Agent NL API
api/main.py:2163-2183: add scanner + per-key rate limit (today it has neither between the API-key check andhandle_command). - 1.7a Code gate DONE (commit 59a0bc2): 57 tests pass (19 AEGIS + 38 NL incl. 6 new prompt-hardening), p50 scan latency 0.12ms. Suite caught+fixed a real bug (ThreatMatch flat-field access blanked signature_ids telemetry).
- 1.7b Telemetry review: after Phase 1 deploys, review observe-mode detections (Railway logs
AEGIS threat detected+.aegis/telemetry.jsonl) after ~1 week of prod traffic before any enforce flip anywhere.
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.
- 12d ago First seen · 61 lines · 69 tokens per session scan A ee5e355ffa63
aegis-goal is a skill published in the GitHub repository 0xSoftBoi/suwappubot (3 stars, last pushed yesterday), licensed Apache-2.0. It adds 69 tokens to every session and 3,517 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-08-30.
Other skills, from other repositories
oneinch-aggregator
1inch DEX aggregator skill — swap tokens across 400+ DEXes, get quotes, check token approvals, Fusion+ cross-chain swaps, portfolio tracking. Requires API key from 1inch Developer Portal.
defi-protocols
DeFi protocol authority — flashloans, AMM design, lending markets, concentrated liquidity, MEV, triangular and cross-DEX arbitrage, stablecoin depeg dynamics, and on-chain capital routing across Uniswap V3, Aerodrome, Balancer, Curve, and Aave V3 on Ethereum, Base, Arbitrum, Optimism, and Polygon.
across-bridge
Bridge ETH and ERC-20 tokens across EVM chains via Across Protocol v3. One function for a quote, one function for the entire end-to-end bridge (approval + deposit + arrival verification). Use when the user wants to move tokens between chains (e.g. "bridge 50 USDC from Base to Arbitrum", "send ETH from Ethereum to…
ophis
Use this skill when the user asks to swap tokens, get a swap quote, check or cancel an order, or report the surplus their trades earned, via Ophis, the intent-based MEV-protected DEX aggregator. Triggers on phrases like "swap X for Y", "best price", "quote", "order status", "cancel my order", "how much surplus did I…
swap-via-ophis
Swap or bridge tokens through Ophis, an intent-based DEX aggregator. Parse a natural-language request, get a best-execution quote, build an EIP-712 order, sign it in the user's own wallet, and submit it. Non-custodial: the agent never holds keys or funds.
analyzing-ethereum-smart-contract-vulnerabilities
Perform static and symbolic analysis of Solidity smart contracts using Slither and Mythril to detect reentrancy, integer overflow, access control, and other vulnerability classes before deployment to Ethereum mainnet.