Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

agentic-developmentAgent 发展

Agent Skill

agentic-development 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

222

周安装

9

GitHub Stars

28

下载量

70
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agentic-development(Agent 发展)
来源仓库:https://github.com/exploration-labs/nates-substack-skills
仓库路径:skills/agentic-development
安装命令:
npx skills add https://github.com/exploration-labs/nates-substack-skills --skill agentic-development
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/exploration-labs/nates-substack-skills --skill agentic-development

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息核验和用法确认。
  • 可结合来源仓库和原始 README 继续验证具体用法和适用条件。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或命令执行。
  • 使用前应确保具备授权,避免对未授权系统执行敏感操作。

SKILL.md

Agentic Development

This skill provides guidance for building software with AI agents based on real-world experience from high-volume agentic development, specifically Peter Steinberger's "Just Talk To It" methodology developed while building a ~300k LOC TypeScript React application entirely with AI agents.

Core Philosophy: Most elaborate frameworks, planning systems, and tooling are premature optimization. Treat AI agents like capable engineers—talk naturally, develop shared context, interrupt when needed, and iterate based on results rather than elaborate plans.

When to Use This Skill

Apply this skill when users ask about:

  • Setting up agentic development workflows
  • Choosing tools and models for AI-assisted coding
  • Optimizing prompt strategies and context management
  • Parallel agent workflows and git management
  • Debugging agent behavior or improving output quality
  • Evaluating whether to use MCPs, subagents, or other abstractions
  • Refactoring strategies with agents
  • Testing approaches with AI assistance

Core Principles

1. Think in Blast Radius, Not Complexity

Plan changes by file impact rather than perceived difficulty.

Application:

  • Before starting, estimate: "Will this touch 3 files or 30?"
  • Recognize that multiple large-radius changes prevent isolated commits and complicate recovery
  • When an agent takes longer than anticipated, interrupt (escape key) and ask "what's the status?"
  • Use "give me a few options before making changes" when uncertain about impact
  • Trust that file changes are atomic—agents resume well after interruption

Guidance Pattern: When a user describes a task, help gauge blast radius by asking: "How many files do you think this will touch?" This builds intuition for redirecting agents.

2. Model Selection and Economics

Subscription Economics: Running 4-5 AI subscriptions (~$1k/month) provides effectively unlimited tokens versus per-API-call pricing that costs 5-10x more. This enables context-wasteful usage and multiple parallel agents.

Model Characteristics:

  • GPT-5-Codex: Reads extensively before acting, requires shorter prompts (1-2 sentences often suffice), more cautious with pushback on questionable requests, introverted communication style
  • Claude Sonnet: More eager to start, requires more explicit direction, verbose communication ("absolutely right", "100% production ready")

Guidance Pattern: When advising on model choice, emphasize that model personality affects mental health and productivity. The difference between aggressive optimism (while tests fail) versus quiet progress-making materially impacts burnout.

3. Parallel Agents in One Folder

Run 3-8 agents simultaneously in the same directory with one dev server, rather than git worktrees or branch-per-feature.

Advantages:

  • Test multiple changes at once in running application
  • Faster than spawning multiple dev servers or switching branches
  • Agents perform atomic commits themselves
  • Trade some isolation for velocity gains

Requirements:

  • Agents must commit only their own changes (requires clear instruction file)
  • Single shared dev server for testing
  • Accept some git history messiness (clean in batches later)

Guidance Pattern: When users struggle with worktrees or branch management, suggest trying parallel agents in one folder for a week. Initial skepticism often gives way to appreciation.

4. Screenshots Are 50% of Context Engineering

Drag screenshots into terminal (showing UI, code, or errors) rather than writing lengthy text descriptions.

Effectiveness:

  • Models excel at visual context
  • Find exact strings, match patterns, jump to correct locations
  • Takes 2 seconds versus minutes of detailed typing
  • More token-efficient than text explanations

Guidance Pattern: If a user writes long descriptions of what they see, interrupt and suggest: "Just screenshot it and drag into the terminal."

5. Better Models Need Shorter Prompts

More capable models require less prompt verbosity because they compensate through better reconnaissance.

GPT-5-Codex Pattern:

  • 1-2 sentences often suffice
  • Reads extensively before acting
  • Strong world knowledge reduces explanation needs

Claude Pattern:

  • Benefits from more extensive context
  • Better comprehension with additional detail
  • Requires more explicit direction

Guidance Pattern: If a user writes elaborate prompts for GPT-5, suggest trying shorter versions. The model's file-reading behavior often makes detailed specs unnecessary.

6. Context Tax Is Real—CLIs Beat MCPs

MCPs consume context tokens on every interaction, creating permanent overhead.

CLI Advantages:

  • Shows help menu on first incorrect invocation
  • Model learns forever without recurring cost
  • Example: GitHub MCP costs ~23k tokens; gh CLI costs zero
  • Models possess strong world knowledge of popular CLIs

Exception: Chrome DevTools MCP for closing debugging loops justifies context cost in specific scenarios.

Guidance Pattern: When users discuss building an MCP, challenge: "Could this be a CLI instead?" Most tools should be CLIs unless deep integration justifies the context tax.

7. Interrupting Agents Is Standard Practice

Break the assumption inherited from traditional programming that tasks must run to completion.

Practice:

  • Hit escape mid-task and ask "what's the status?"
  • Models resume where they stopped
  • File changes are atomic
  • Enables active steering and course correction

Guidance Pattern: When users hesitate about interrupting, reassure: "Think of it like checking in with a junior engineer. They'll pick up where they left off."

8. Refactoring Is Low-Focus Work

Spend ~20% of time on agent-driven refactoring when tired or needing less focus.

Paradigm Shift: Traditional views require peak concentration for refactoring. With agents, it becomes mechanical work requiring only strategic oversight.

Refactoring Tasks:

  • Code deduplication (jscpd)
  • Dead code removal (knip)
  • ESLint plugins (react-compiler, deprecation)
  • Adding tests and comments for tricky parts
  • Dependency updates and tool upgrades
  • File restructuring
  • Rewriting slow tests
  • Modernizing patterns (e.g., removing unnecessary useEffect)

Guidance Pattern: When users feel burned out on feature work, suggest: "Try a refactoring day. Queue cleanup tasks and let agents handle mechanical work while maintaining high-level oversight."

9. Same-Context Testing Catches Fresh Bugs

After implementing features, request tests in the same context.

Effectiveness:

  • Agent has full context of what it just built
  • Often discovers bugs in its own implementation
  • Far more effective than separate test-writing sessions
  • Tests reflect actual implementation details

Exception: Purely UI tweaks may not warrant immediate testing.

Guidance Pattern: Establish this habit: "After each feature or fix, ask the model to write tests. Use the same context." While AI generally writes mediocre tests, this approach helps catch its own bugs.

10. Plan Mode Is Workaround Theater

Elaborate planning frameworks, spec-driven development, and multi-agent orchestration often work around model weaknesses rather than embracing strengths.

Better Approach with Strong Models:

  • Use "let's discuss" or "give me options"
  • Model will wait for approval
  • No harness ceremony needed

Spec-Driven Alternative: For complex features, discuss with the agent, iterate on ideas, optionally request a spec, get review from another model (GPT-5-Pro), then paste useful parts back.

UI Work Approach: Deliberately under-spec UI requests, watch the model build in real-time, iterate by morphing chaos into the right shape. Often discovers interesting solutions not initially envisioned.

Guidance Pattern: When users describe elaborate planning systems, ask: "What if you just talked to the model about what you want?" If elaborate ceremony is needed, the model probably isn't good enough yet.

11. Agent Files Are Organizational Scar Tissue

Instruction files (~800 lines) should evolve organically as problems arise, not be architected upfront.

Maintenance:

  • Request agent updates when things go wrong
  • Treat as living document of codebase quirks and preferences
  • Clean periodically as models improve
  • Expect content reduction as models gain better world knowledge

Content Examples:

  • Git instructions for multi-agent workflows
  • Product explanation and naming patterns
  • Preferred React patterns
  • Database migration management
  • Testing conventions
  • AST-grep rules
  • Text-based design system guidelines

Prompt Style Differences:

  • Claude responds to ALL-CAPS warnings and emphatic language
  • GPT-5 prefers natural human language
  • Files optimized for one model may not transfer well

Guidance Pattern: Don't help users write instruction files from scratch. Instead: "Start with basics, then ask your agent to add notes every time something goes wrong. It'll grow organically into exactly what you need."

12. Queue Messages for Lazy Automation

Instead of crafting perfect prompts to motivate continued work, queue multiple "continue" messages when stepping away.

Mechanism:

  • Model works through queued messages
  • Ignores extras when done
  • Crude but effective for long-running tasks

Platform Support: GPT-5-Codex supports message queuing; Claude Code changed to "steering" behavior instead.

Guidance Pattern: "For big refactors, queue a few 'continue' messages and step away. The model will either finish or reach a useful stopping point."

13. Intuition Compounds Faster Than Frameworks

Direct interaction with agents builds intuition faster than elaborate frameworks.

Skills Developed:

  • Blast radius estimation
  • Stopping timing
  • Under-specification appropriateness
  • Test necessity judgment
  • Effective steering

Transfer: Senior engineering skills (managing humans) apply to managing AI agents.

Guidance Pattern: Encourage direct usage over framework exploration: "The fastest path to competence is high-volume direct interaction. Tools will converge toward simplicity as models improve. What won't be commoditized is intuition."

14. Subagents and Complexity Are Often Unnecessary

Historical Context:

  • May 2024: "Subtasks" for parallelization and context reduction
  • Later: Rebranded to "subagents" with instruction packaging
  • Often used to work around model limitations

Alternative Approach: Use separate terminal panes/windows for different tasks, providing:

  • Complete control over context engineering
  • Visibility into what's sent
  • Easier steering
  • No hidden context management

Guidance Pattern: When users ask about subagents, suggest: "Try doing that work in a separate terminal window instead. More control and visibility."

15. Background Tasks and Tooling Gaps

Current Limitation: Not all tools have perfect background task management.

Workaround Example: Use tmux for persistent CLI sessions in background:

  • "run via tmux" often suffices
  • Leverages existing world knowledge
  • No custom agent instructions needed

Guidance Pattern: When users hit tool limitations, look for standard Unix/development tools that solve the problem. Models often have strong world knowledge of these.

Prompting Strategies

For GPT-5-Codex

  • Length: 1-2 sentences + screenshot often suffice
  • Tone: Natural human language without emphasis
  • Trigger words for difficult problems: "take your time", "comprehensive", "read all code that could be related", "create possible hypothesis"
  • Avoid: ALL-CAPS, excessive emphasis, threatening language

For Claude

  • Length: More extensive context beneficial
  • Tone: Can leverage emphatic language and ALL-CAPS for critical instructions
  • Style: More explicit direction helpful

Universal Techniques

  • Images: Use screenshots liberally—aim for 50% of prompts containing visual context
  • Voice input: Whispr Flow with semantic correction recommended for efficiency
  • Preservation: Request "preserve intent" and "add code comments on tricky parts"
  • Intent clarity: Be explicit about what should and shouldn't change

Tool Selection

When to Use Web Search

  • Current events or rapidly changing information
  • Verifying technical details beyond knowledge cutoff
  • Finding documentation for new tools/libraries

Harness Selection

GPT-5-Codex:

  • Daily driver for most work
  • Efficient context use (~230k usable)
  • Fast, lightweight
  • Shorter prompts needed
  • More careful file reading before acting

Claude Code:

  • When latest Sonnet capabilities needed
  • If verbose communication preferred
  • Good for tasks requiring high context (with caveats about context efficiency)

Local/Open Models:

  • Keep monitoring but not recommended as daily driver yet
  • China's models (GLM 4.6, Kimi K2.1) approaching Sonnet 3.7 quality

Slash Commands (Use Sparingly)

Most interaction should be natural language, but a few commands can be useful:

  • /commit - When clarifying multi-agent folder commits
  • /review - Occasionally useful, but review bots often superior
  • Custom commands for specific workflows

Principle: Avoid ceremony when confident in requests. Develop intuition for when commands add value.

Conversational Interaction Approach

When providing guidance:

1. Assess Current Context

  • Inquire about current workflow before suggesting changes
  • Understand frustrations (speed, clarity, cost)
  • Gauge experience level with agents

2. Prioritize High-Impact Changes

  • If using worktrees → suggest parallel agents in one folder
  • If writing long prompts → suggest shorter ones with screenshots
  • If using MCPs → challenge whether CLIs would work better
  • If building elaborate frameworks → suggest direct agent interaction

3. Foster Intuition Development

  • Share principles while emphasizing that intuition develops through practice
  • Encourage experimentation with time-boxed trials
  • Help develop sense of blast radius, interruption timing, and context management

4. Common Frustration Responses

Git history concerns → Add commit instructions to agent file, or accept messiness and clean in batches

Instruction adherence issues → Could be model choice (GPT-5 follows better), or instructions need refinement

Cost concerns → Consider subscriptions vs API pricing; subscriptions are 5-10x cheaper for heavy use

Output quality issues → Schedule regular refactoring time (20% of work) as low-focus maintenance

Stopping uncertainty → Develops with intuition; start by interrupting frequently and checking status

5. Discourage Over-Engineering

  • Most elaborate systems represent premature optimization
  • Direct conversation often outperforms complex frameworks
  • Tools converge to simplicity as models improve

6. Emphasize Direct Experience

  • High-volume direct interaction beats framework mastery
  • Fastest learning comes from actual usage, not reading
  • Senior engineering skills transfer: managing agents parallels managing humans

Anti-Patterns to Address

When users describe these approaches, gently suggest alternatives:

  1. Elaborate planning documents before starting → Suggest discussion-based approach
  2. Complex RAG systems for code → GPT-5 searches adequately
  3. Multiple layers of subagents → Suggest separate terminal windows
  4. Long instruction files from day one → Should evolve organically
  5. Excessive MCPs → Most should be CLIs
  6. Treating agents as non-interruptible → Emphasize atomicity
  7. Waiting for perfect prompts → Queue "continue" messages and iterate
  8. Writing all code manually still → Suggest letting agents handle more, including refactoring
  9. Using elaborate frameworks → Often unnecessary with good models
  10. Not using screenshots → Missing 50% of effective context engineering

Skill Development Progression

As users gain experience, guide them through refinement stages:

Early Stage (Weeks 1-4)

  • Focus on basic workflow: model choice, terminal setup, git management
  • Practice interrupting agents and checking status
  • Start small instruction file, allow organic growth
  • Get comfortable with parallel agents (if applicable)

Intermediate (Months 2-3)

  • Develop blast radius intuition
  • Optimize prompting for chosen model
  • Establish refactoring rhythm
  • Build personal slash commands (if needed)

Advanced (Months 4+)

  • Fine-tune agent instruction file for codebase
  • Develop strong intuition for stopping/redirecting timing
  • Master context engineering with screenshots
  • Experiment with under-specification for creative solutions
  • Optimize subscription/API economics

Model-Specific Patterns

GPT-5-Codex Behaviors

  • Reads extensively before acting
  • Sometimes panics mid-refactor and reverts (re-run with soothing language)
  • Occasionally forgets bash commands are available
  • Rarely replies in wrong language
  • May lose lines when scrolling quickly
  • Generally honors instruction file well

Claude Sonnet Behaviors

  • More eager to start working
  • Benefits from emphatic instruction style
  • Creates random markdown files (older versions)
  • May need stronger direction to follow instructions
  • Better at context comprehension than file location

Implementation Principles

  1. Reduce Ceremony: Most "best practices" are premature optimization
  2. Just Talk To It: Natural interaction beats elaborate systems
  3. Develop Intuition: Compounds faster than framework mastery
  4. Embrace Simplicity: Tools will converge; intuition won't be commoditized
  5. Iterate on Results: What you see > what you planned
  6. Context Is King: Screenshots, short prompts, CLI tools over MCPs
  7. Mental Health Matters: Model personality affects productivity through burnout prevention
  8. Refactoring Is Maintenance: Regular cleanup at low-focus times keeps codebase healthy
  9. Tests Catch Agent Bugs: Write them in same context after implementation
  10. Trust the Process: File changes are atomic, interruption is fine, chaos can be shaped

Source Attribution

This skill is based on Peter Steinberger's "Just Talk To It - the no-bs Way of Agentic Engineering": https://steipete.me/posts/just-talk-to-it

Also references his "Optimal AI Workflow" post for foundational concepts: https://steipete.me/posts/2025/optimal-ai-development-workflow

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.7%
按下载量换算24

Claude

30.33%
按下载量换算21

Cursor

18.14%
按下载量换算13

Gemini CLI

9.01%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/exploration-labs/nates-substack-skills --skill agentic-development 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills