بنقرة واحدة
ponytail
AI agent skill that enforces minimal code output — 80-94% less code, prevents over-engineering
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
AI agent skill that enforces minimal code output — 80-94% less code, prevents over-engineering
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
| name | ponytail |
| description | AI agent skill that enforces minimal code output — 80-94% less code, prevents over-engineering |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["ai-agent","code-quality","minimal-code","skill"],"related_skills":["claude-code","opencode"]}} |
An AI agent skill that enforces "lazy senior dev" thinking — your agent writes 80-94% less code by preferring zero-code solutions and minimal implementations.
# Install via npm
npm install -g ponytail
# Or clone and use directly
git clone https://github.com/DietrichGebert/ponytail.git
cd ponytail
Add to your agent's skill configuration. Ponytail modifies the system prompt to enforce minimal-code thinking.
Before Ponytail:
# Agent generates a 200-line custom parser
def parse_data(input):
# ... 200 lines of custom parsing logic
After Ponytail:
# Agent suggests using existing library
import json
data = json.loads(input) # 1 line instead of 200
# Test the skill loads correctly
ponytail --version
# Compare agent output with and without the skill
# Measure lines of code before/after