用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oyi77/1ai-skills --skill debt命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Android and mobile application security testing — emulators, rooting, traffic interception, dynamic instrumentation. Use when testing mobile apps for vulnerabilities, reversing APKs, or bypassing security controls on Android.
Self-reflection + Self-criticism + Auto-learning from corrections + Self-organizing memory. Agent evaluates its own work, catches mistakes, and improves permanently. Use when working with self improving.
Plan and execute a comprehensive red team engagement covering reconnaissance through post-exploitation using MITRE ATT&CK-aligned TTPs to evaluate an organization's detection and response capabilities. Use when working with conducting full scope red team engagement.
基于 SOC 职业分类
正在显示 SKILL.md
| name | debt |
| description | Use when harvest ponytail shortcut comments into one debt ledger so deferrals get tracked instead of forgotten. |
| domain | mindset |
| author | oyi77 |
| license | Apache-2.0 |
| subdomain | mindset |
| tags | ["debt","mindset","ponytail","tracking"] |
| version | 1.0.0 |
Every ponytail: shortcut comment in the codebase gets harvested into one tracked ledger. Deferrals cannot quietly become permanent. One-shot report anytime.
Debt mode finds every ponytail: annotation in source files, collects them into a structured ledger, and tracks each deferral with a ceiling (when it breaks) and an upgrade path (what fixes it). Unlike TODOs that drift into noise, the debt ledger is a living document you review weekly. If a ceiling is approaching, you fix it before it breaks.
Scope: ponytail: comments in codebase. Output: ledger of all deferrals. Best outcome: no forgotten shortcut.
ponytail debt --scan — harvests every ponytail: comment into .ponytail/debt.mdponytail debt --scan --output .ponytail/debt.md && grep -c "TODO|FIXME|HACK|ponytail:" .ponytail/debt.md
#!/bin/bash
# Collect every ponytail: comment into a structured ledger
SEARCH_DIR="${1:-.}"
OUTPUT="${2:-.ponytail/debt.md}"
mkdir -p "$(dirname "$OUTPUT")"
echo "# Ponytail Debt Ledger" > "$OUTPUT"
echo "Generated: $(date)" >> "$OUTPUT"
grep -rn "ponytail:" "$SEARCH_DIR" --include="*.py" --include="*.ts" \
--include="*.js" --include="*.go" --include="*.rs" \
| grep -v ".ponytail/" | sort > /tmp/ponytail-comments.txt
# Count by directory
echo "## By Directory" >> "$OUTPUT"
awk -F: '{print $1}' /tmp/ponytail-comments.txt \
| xargs -I{} dirname {} | sort | uniq -c | sort -rn >> "$OUTPUT"
echo "## All Entries" >> "$OUTPUT"
while IFS=: read -r file line rest; do
echo "- **$file:** — " >>
< /tmp/ponytail-comments.txt
ponytail: comments collected into single ledger fileUse when harvest ponytail shortcut comments into one debt ledger so deferrals get tracked instead of forgotten.
Execute these steps sequentially:
ponytail debt --scan — harvests every ponytail: comment into .ponytail/debt.md| Rationalization | Reality |
|---|---|
| "I'll remember to fix this later" | You won't. Without a ledger, every temporary hack is permanent. Write the ceiling and upgrade path now |
| "Tracking debt is overhead" | One weekly 5-minute scan prevents one production incident per quarter. The ROI is 100:1 |
| "My TODO comments are enough" | TODOs have no ceiling, no upgrade path, and no accountability. Debt ledger forces structure |