Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

vibe-coding振动编码

Agent Skill

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

总安装

2,346

周安装

94

GitHub Stars

171

下载量

760
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/jamditis/claude-skills-journalism --skill vibe-coding

简介

用于关键词检索与信息筛选,快速定位候选结果。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合在任务场景下根据线索查找相关文档或资源。
  • 通过 Agent 执行搜索并返回结构化摘要,提升信息获取效率。
  • 安装前应确认是否会触发联网或文件操作,避免越权访问。
  • vibe-coding 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Vibe coding methodology

Practical strategies for building software effectively with AI coding assistants.

Planning process

Start by working with the AI to write a detailed implementation plan in a markdown file.

Scope management: Review and refine the plan—delete unnecessary items, mark complex features as "won't do," and keep a separate section for ideas to implement later. This prevents scope creep and maintains focus.

Incremental implementation: Work section by section rather than building everything at once. Have the AI mark sections complete after successful implementation, and commit each working section to git before moving to the next.

Track progress visibly: Use todo lists, markdown checklists, or inline status markers so both you and the AI can see what's done and what remains. This prevents re-implementing completed work and keeps sessions focused.

Version control strategies

Git is your safety net—don't rely solely on the AI tool's revert functionality.

Clean slate principle: Begin each new feature with a clean git state. When stuck, use git reset --hard HEAD if the AI goes down an unproductive path. Multiple failed attempts create layers of bad code that compound problems.

Clean implementation: When you finally find a working solution after several attempts, reset to a clean state and implement it fresh. Multiple failed attempts create layers and layers of bad code—don't keep the accumulated mess. A clean re-implementation of a known-good solution is faster and more maintainable than untangling spaghetti.

Testing framework

Prioritize end-to-end integration tests over unit tests. Focus on simulating user behavior—testing features by simulating someone clicking through the site or app.

Regression prevention: LLMs often make unnecessary changes to unrelated logic. Tests catch these regressions before they compound.

Tests as guardrails: Consider starting with test cases to provide clear boundaries for what the AI should and shouldn't change. Ensure tests pass before moving to the next feature.

Effective bug fixing

Error messages: Simply copy-pasting error messages is often enough context for the AI to identify and fix issues.

Analyze before coding: Ask the AI to consider multiple possible causes before jumping to implementation. This prevents chasing the wrong problem.

Reset after failures: Start with a clean slate after each unsuccessful fix attempt rather than layering fixes on top of broken code.

Strategic logging: Add logging statements to better understand what's happening when bugs are opaque.

Switch models: Try different AI models when one gets stuck on a problem.

AI tool optimization

Instruction files: Write detailed instructions for your AI in appropriate files (cursor.rules, windsurf.rules, claude.md). These provide project-specific context that improves output quality.

Local documentation: Download API documentation to your project folder. AI tools work more accurately with local docs than trying to recall API details from training.

Multiple tools: Some developers run both Cursor and Windsurf simultaneously on the same project. Cursor tends to be faster for frontend work while Windsurf thinks longer on complex problems.

Compare outputs: Generate multiple solutions and pick the best one rather than accepting the first output.

Complex feature development

Standalone prototypes: Build complex features in a clean codebase first, then integrate once working. This isolates problems and makes debugging easier.

Reference implementations: Point the AI to working examples to follow. Existing code patterns provide concrete guidance.

Clear boundaries: Maintain consistent external APIs while allowing internal changes. Service-based architectures with clear boundaries work better than monorepos for AI-assisted development.

Tech stack considerations

Established frameworks: Ruby on Rails and similar mature frameworks work well due to 20+ years of consistent conventions in training data.

Training data matters: Newer languages like Rust or Elixir may have less training data, leading to more errors or outdated patterns.

Modularity: Small, modular files are easier for both humans and AIs to work with. Avoid files with thousands of lines—they exceed context windows and create confusion.

Beyond coding

AI assistants help with more than writing code:

  • DevOps: Configuring servers, DNS, and hosting
  • Design: Generating favicons and other design elements
  • Documentation: Drafting docs and marketing materials
  • Education: Explaining implementations line by line
  • Visual input: Share screenshots for UI bugs or design inspiration
  • Voice input: Tools like Aqua enable 140 words per minute input

Continuous improvement

Regular refactoring: Once tests are in place, refactor frequently. Ask the AI to identify refactoring candidates.

Stay current: Try every new model release. Different models excel at different tasks—experiment to find which works best for your use case.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

26.67%
按下载量换算203

Antigravity

21.46%
按下载量换算163

Gemini CLI

17%
按下载量换算129

OpenCode

13.74%
按下载量换算104

Codex

8.17%
按下载量换算62

windsurf

3.85%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills