Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

10x-patterns10x 模式

Agent Skill

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

总安装

34,933

周安装

1,427

GitHub Stars

2

下载量

11,188
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:10x-patterns(10x 模式)
来源仓库:https://github.com/wpank/10x-patterns
安装命令:
openclaw skills install 10x-patterns
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install 10x-patterns

简介

显着加快开发速度的模式和实践。涵盖并行执行、自动化、反馈循环、工作流程优化和反模式避免。在启动项目、规划冲刺、优化工作流程或培训开发人员时使用。

SKILL.md

name
10x-patterns
model
standard
description
Patterns and practices that dramatically accelerate development velocity. Covers parallel execution, automation, feedback loops, workflow optimization, and anti-pattern avoidance. Use when starting projects, planning sprints, optimizing workflows, or onboarding developers.

10x Development Patterns (Meta-Skill)

Patterns that compress timelines, eliminate waste, and multiply output. These are the habits and systems that separate high-velocity teams from the rest.

Installation

OpenClaw / Moltbot / Clawbot

npx clawhub@latest install 10x-patterns

When to Use

  • Starting a new project — set up the right foundations from day one
  • Planning sprints — prioritize work that compounds
  • Optimizing workflow — identify and remove bottlenecks
  • Reviewing velocity — measure and improve throughput
  • Onboarding developers — teach high-leverage habits
  • Retrospectives — diagnose why things are slow

Core Principles

PrincipleDescriptionExample
Parallel executionDon't serialize independent tasks; run them concurrentlyRun linting, tests, and type-checking in parallel CI jobs
Early validationValidate assumptions before buildingPrototype the riskiest part first, not the easiest
Reuse over rebuildLeverage existing solutions before writing custom codeUse shadcn/ui instead of building a component library
Automation firstAutomate any repetitive task on the second occurrenceScript database seeding, not manual SQL inserts
Fail fastCatch errors at the earliest possible stageStrict TypeScript, pre-commit hooks, schema validation
Minimize context switchingBatch similar work togetherHandle all PR reviews in one block, not scattered
Shortest feedback loopReduce time between change and feedbackHot reload, preview deploys, co-located tests

Development Velocity Patterns

PatternWhat It DoesSpeed Multiplier
Hot reload / fast refreshSee changes instantly without losing state3-5x faster UI iteration
Type-driven developmentDefine types/interfaces first, then implementCatches 40%+ of bugs at write time
Test-driven developmentWrite tests for complex logic before implementationFewer regressions, faster debugging
Feature flagsShip incomplete features safely behind togglesContinuous delivery without risk
Vertical slicingBuild full-stack thin slices end-to-endFaster feedback, smaller PRs
MonorepoShare code, types, and config across packagesEliminates cross-repo sync overhead
Code generationGenerate boilerplate from schemas or templatesMinutes instead of hours for CRUD
AI-assisted developmentUse Cursor, Copilot for acceleration2-5x faster for boilerplate and exploration
Template repositoriesStart new projects from proven templatesSkip setup entirely
Shared component librariesReusable, tested UI building blocksConsistent UI, no re-implementation
Preview deploymentsEvery PR gets a live URL (Vercel, Netlify)Instant stakeholder feedback
Trunk-based developmentShort-lived branches, frequent merges to mainEliminates merge hell
Continuous deploymentEvery merge to main auto-deploysZero manual deploy overhead
Database migrations as codeVersion-controlled, repeatable schema changesNo manual DB modifications
Infrastructure as codeTerraform, Pulumi, SST for infraReproducible environments in minutes
API-first designDefine API contracts before implementationFrontend and backend work in parallel
Storybook / component devDevelop UI components in isolationNo need to navigate full app for UI work

Leverage Points

High effort-to-impact ratio — small investments that pay dividends repeatedly.

Leverage PointEffortImpactPayoff Timeline
Automation scripts (seed, reset, deploy)1-2 hoursSaves 10+ min/day per developerDays
Shared utilities (formatting, validation, logging)2-4 hoursEliminates repeated code across servicesWeeks
CI/CD pipelines4-8 hoursRemoves all manual build/deploy stepsImmediately
Documentation (ADRs, onboarding, runbooks)2-3 hoursCuts onboarding time by 50%+Weeks
Developer tooling (linters, formatters, git hooks)1-2 hoursPrevents entire categories of bugsImmediately
Database seed scripts1-2 hoursInstant realistic local environmentsDays
Error monitoring (Sentry, Axiom)1-2 hoursFind production bugs before users report themImmediately

Time Sink Detection

Common time wasters and how to eliminate them.

Time SinkHours Wasted/WeekSolution
Manual testing3-8 hoursAutomated tests, Playwright for E2E, CI checks
Environment setup2-5 hours (new devs)Docker Compose, devcontainers, seed scripts
Manual deployment1-3 hoursCI/CD pipeline, one-click deploys
Code review bottlenecks2-6 hours waitingSmall PRs, async reviews, max 24h SLA
Meeting overload5-10 hoursAsync standups, written updates, office hours
Debugging without logs2-4 hoursStructured logging, error tracking, source maps
Dependency conflicts1-3 hoursLock files, renovate bot, monorepo tooling
Unclear requirements3-8 hours reworkSpike tickets, design docs, early prototypes

Workflow Optimization

Daily Workflow Template

Morning (high energy)
  1. Review overnight CI results and alerts
  2. Tackle the hardest problem first (deep work)
  3. Batch code reviews (one block, not scattered)

Midday
  4. Meetings and collaboration (if unavoidable)
  5. Respond to async threads

Afternoon
  6. Implementation work (flow state)
  7. Write tests for today's code
  8. Open PRs, update tickets, write context for tomorrow

Essential IDE Shortcuts

ActionmacOSWhy It Matters
Go to fileCmd+PNever browse the file tree
Go to symbolCmd+Shift+OJump directly to functions/classes
Find in projectCmd+Shift+FFind anything across the codebase
Rename symbolF2Safe, project-wide renaming
Quick fixCmd+.Auto-import, auto-fix linter issues
Toggle terminal` Ctrl+ ``Stay in the editor
Multi-cursorCmd+DEdit multiple occurrences at once
Move lineAlt+Up/DownReorder code without cut/paste

CLI Aliases & Scripts

# Git acceleration
alias gs='git status'
alias gc='git commit'
alias gp='git push'
alias gl='git log --oneline -20'
alias gco='git checkout'
alias gcb='git checkout -b'
alias gpr='gh pr create --fill'

# Development
alias dev='npm run dev'
alias build='npm run build'
alias lint='npm run lint'
alias test='npm run test'

# Docker
alias dc='docker compose'
alias dcu='docker compose up -d'
alias dcd='docker compose down'
alias dcl='docker compose logs -f'

# Project navigation
alias repo='cd ~/dev/myproject'

Shell Scripts Worth Writing

ScriptPurposeTime Saved
./scripts/setup.shOne-command local environment setupHours per new dev
./scripts/seed.shReset and seed database with test data10 min/day
./scripts/deploy.shBuild, test, and deploy in sequence15 min/deploy
./scripts/new-feature.shScaffold feature (route, component, test)20 min/feature
./scripts/db-reset.shDrop, recreate, migrate, seed database10 min/occurrence

Anti-Patterns

Patterns that feel productive but destroy velocity.

Anti-PatternWhat HappensInstead Do
Over-engineeringBuild abstractions for problems you don't haveSolve today's problem; refactor when patterns emerge
Premature optimizationOptimize code that isn't a bottleneckProfile first, optimize the measured bottleneck
Gold platingPolish features beyond requirementsShip the 80% solution, iterate based on feedback
Yak shavingFix tangential problems endlesslyTime-box tangents to 15 min, then create a ticket
Not-invented-hereRebuild what open source already solvedEvaluate existing solutions before writing custom code
BikesheddingDebate trivial decisions at lengthSet a 5-min timer; if no consensus, the proposer decides
Cargo cultingCopy patterns without understanding whyUnderstand the problem before adopting a solution

Measurement — DORA Metrics

Track these four metrics to objectively measure engineering velocity.

MetricEliteHighMediumLow
Deployment frequencyOn-demand (multiple/day)WeeklyMonthlyQuarterly
Lead time for changes< 1 hour< 1 week< 1 month> 1 month
Change failure rate< 5%< 10%< 15%> 15%
Mean time to recovery< 1 hour< 1 day< 1 week> 1 week

How to Improve Each

  • Deployment frequency — CI/CD, feature flags, trunk-based development
  • Lead time — Small PRs, automated testing, preview deploys
  • Change failure rate — Type safety, comprehensive tests, canary deploys
  • MTTR — Observability, runbooks, feature flag kill switches

NEVER Do

  1. NEVER manually deploy to production — always use CI/CD pipelines
  2. NEVER merge without automated checks — require passing CI before merge
  3. NEVER keep long-lived feature branches — merge within 1-2 days or break it smaller
  4. NEVER skip writing types/interfaces — the 30 seconds you save costs hours later
  5. NEVER copy-paste code more than once — extract to a shared utility immediately
  6. NEVER ignore flaky tests — fix or delete them; flaky tests erode trust in the suite
  7. NEVER optimize without measuring — profile first, gut feelings are usually wrong

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.53%
按下载量换算9,345

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills