← All skills
Tencent SkillHub · Developer Tools

Buildwright

Autonomous development workflow — research codebase, generate spec, get one human approval, then implement with TDD, security scan, and code review without i...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Autonomous development workflow — research codebase, generate spec, get one human approval, then implement with TDD, security scan, and code review without i...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.0.3

Documentation

ClawHub primary doc Primary doc: SKILL.md 18 sections Open source page

Buildwright

Spec-driven autonomous development. Humans approve intent; agents handle everything else.

What this skill does

When activated, Buildwright directs the agent to: Read your codebase and steering documents Write a one-page spec (docs/specs/[feature]/spec.md) Stop for human approval — unless BUILDWRIGHT_AUTO_APPROVE=true Implement the feature with TDD Run quality gates: typecheck, lint, test, build Run optional security scans (if semgrep / gitleaks / trufflehog are installed) Run a Staff Engineer prompt-based code review Commit, push, and open a PR via gh

Credentials (required)

CredentialPurposeScopeHow to provideGITHUB_TOKENPush commits and open PRs via ghrepo scope (read/write)export GITHUB_TOKEN=ghp_... or configure in OpenClaw config under skills.entries.buildwright.apiKey The token must have repo scope to push branches and create pull requests. For minimal privilege, use a fine-grained personal access token scoped to a single repository with "Contents: Read and write" and "Pull requests: Read and write" permissions. Alternatively, if you use SSH for git push, the GITHUB_TOKEN is still needed for gh pr create. You can use gh auth login to authenticate the GitHub CLI separately.

Binaries (required)

BinaryPurposegitCommits and pushesghOpens PRs via GitHub CLI

Optional tools

BinaryPurposesemgrepSAST security scangitleaks / trufflehogSecrets detection

Agent Personas (prompt-based, no binaries)

Staff Engineer and Security Engineer are prompt-engineering personas — instructions loaded from .buildwright/agents/ files in the workspace. They are not external tools or binaries. The agent adopts these personas to review specs and code using defined criteria and confidence thresholds. These files contain only prompt instructions and review checklists — no secrets or credentials.

BUILDWRIGHT_AUTO_APPROVE (optional, not a credential)

This is an optional boolean flag that controls whether the agent waits for human approval at the spec stage. It is not a secret and not declared in requires.env because it is not required to run the skill. ValueBehaviorNot setInteractive (default) — stops and waits for "approved" before buildingfalseInteractive — same as defaulttrueAutonomous — commits spec to git (audit trail) and proceeds without waiting Recommendation for first use: Leave BUILDWRIGHT_AUTO_APPROVE unset until you have reviewed a few specs and are comfortable with the workflow. Start with interactive mode in a sandbox repository to observe behavior before enabling autonomous commits and PRs.

/bw-new-feature <description>

Full pipeline for new features. Auto-detects greenfield vs existing projects. /bw-new-feature "Add OAuth2 login" Flow: Detect (greenfield or existing?) → Research → Spec → Staff Engineer validates → Human approves → TDD build → Verify → Security scan → Code review → PR Artifacts produced: docs/specs/[feature]/research.md — what the agent found in your codebase docs/specs/[feature]/spec.md — implementation plan with approaches considered

/bw-claw <feature>

Multi-agent pipeline using the Claw Architecture. Architect decomposes the feature into domain-specific claw tasks (UI, API, DB), defines interface contracts, and coordinates execution. /bw-claw "Add profile photo upload for team members" Flow: Architect analyzes → Decomposes into claw tasks → Defines interface contract → Claws execute per domain (TDD) → Architect integrates → Buildwright quality gates → PR Best for: Features that cross domain boundaries (e.g., need DB schema + API endpoint + UI component). Artifacts produced: docs/specs/[feature]/claw-plan.md — decomposition plan with interface contracts docs/specs/[feature]/claw-[domain].md — per-claw execution report

/bw-quick <task>

Fast path for bug fixes and small tasks (<2 hrs). No spec, no approval step. /bw-quick "Fix the login timeout bug"

/bw-ship [message]

Quality pipeline for existing work: verify → security → review → PR. /bw-ship "feat(auth): add OAuth2 support"

/bw-verify

Quick checks only: typecheck → lint → test → build.

/bw-analyse

Analyse an existing codebase and write structured docs to .buildwright/codebase/. Updates tech.md with the discovered stack and commands. Run this first on any brownfield project to give every subsequent session real context. /bw-analyse Produces: STACK.md, ARCHITECTURE.md, CONVENTIONS.md, CONCERNS.md under .buildwright/codebase/.

/bw-help

Show all available commands.

Failure Behavior

If any gate fails after retries, the agent commits completed work, pushes, and opens a PR with a structured failure report. It does not leave orphaned branches or silent failures.

Retry Policy

GateRetriesRationaleVerify (typecheck, lint, test, build)2xFixable by the agentSecurity scanNoneRequires human judgmentCode reviewNoneArchitectural decisions need humans

Security Considerations

This skill performs autonomous code changes, commits, and pull requests. Understand what it does before enabling it on repositories with sensitive or production code. What the skill reads: Your repository source code, .buildwright/agents/ persona files (prompt instructions only, no secrets), and .buildwright/steering/ context files. What the skill writes: Spec files under docs/specs/, source code changes, git commits on feature branches, and pull requests via gh. What the skill does NOT do: It does not modify .env files, access secrets stores, run destructive git operations (force push, reset), or merge PRs. All changes go to feature branches with PRs for human review. Recommended setup for first use: Start with a fork or sandbox repository, not production code Leave BUILDWRIGHT_AUTO_APPROVE unset (interactive mode) to review specs before builds Use a fine-grained GitHub token scoped to a single repository with minimal permissions Rotate tokens regularly and revoke when no longer needed Review generated PRs before merging — the skill creates PRs, it does not merge them

More Information

Full documentation, source code, and setup instructions: https://github.com/raunakkathuria/buildwright

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc