# Send Context Driven Development to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "context-driven-development",
    "name": "Context Driven Development",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/wpank/context-driven-development",
    "canonicalUrl": "https://clawhub.ai/wpank/context-driven-development",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/context-driven-development",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=context-driven-development",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "templates/product.md",
      "templates/workflow.md",
      "templates/tech-stack.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "context-driven-development",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T13:47:36.646Z",
      "expiresAt": "2026-05-06T13:47:36.646Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=context-driven-development",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=context-driven-development",
        "contentDisposition": "attachment; filename=\"context-driven-development-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "context-driven-development"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/context-driven-development"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/context-driven-development",
    "downloadUrl": "https://openagent3.xyz/downloads/context-driven-development",
    "agentUrl": "https://openagent3.xyz/skills/context-driven-development/agent",
    "manifestUrl": "https://openagent3.xyz/skills/context-driven-development/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/context-driven-development/agent.md"
  }
}
```
## Documentation

### Context-Driven Development

Treat project context as a first-class artifact managed alongside code. Instead of relying on ad-hoc prompts or scattered documentation, establish a persistent, structured foundation that informs all AI interactions.

### OpenClaw / Moltbot / Clawbot

npx clawhub@latest install context-driven-development

### WHAT This Skill Does

Creates and maintains a set of context documents that:

Define what you're building and why (product.md)
Specify technology choices and constraints (tech-stack.md)
Establish how the team works (workflow.md)
Track what's happening (tracks.md)

### WHEN to Use

Use for:

Setting up new projects with AI-assisted development
Onboarding team members to existing codebases
Ensuring consistent AI behavior across sessions
Documenting decisions that affect code generation
Managing projects with multiple contributors or AI assistants

Skip for:

Solo experiments or throwaway prototypes
Single-file scripts
Projects without AI assistance

Keywords: context, project setup, documentation, AI alignment, team workflow, product vision, tech stack

### Core Philosophy

Context precedes code.
Living documentation.
Single source of truth.
AI alignment.

Context precedes code — Define what you're building and how before implementation
Living documentation — Context artifacts evolve with the project
Single source of truth — One canonical location for each type of information
AI alignment — Consistent context produces consistent AI behavior

### The Workflow

Context → Spec & Plan → Implement

Context Phase: Establish or verify project context artifacts exist and are current
Specification Phase: Define requirements and acceptance criteria for work units
Planning Phase: Break specifications into phased, actionable tasks
Implementation Phase: Execute tasks following established workflow patterns

### product.md — WHAT and WHY

Purpose: Captures product vision, goals, target users, and business context.

Contents:

Product name and one-line description
Problem statement and solution approach
Target user personas
Core features and capabilities
Success metrics and KPIs
Product roadmap (high-level)

Update when:

Product vision or goals change
New major features are planned
Target audience shifts

### tech-stack.md — WITH WHAT

Purpose: Documents technology choices, dependencies, and architectural decisions.

Contents:

Primary languages and frameworks
Key dependencies with versions
Infrastructure and deployment targets
Development tools and environment
Testing frameworks
Code quality tools

Update when:

Adding new dependencies
Upgrading major versions
Changing infrastructure
Adopting new tools or patterns

### workflow.md — HOW to Work

Purpose: Establishes development practices, quality gates, and team workflows.

Contents:

Development methodology (TDD, trunk-based, etc.)
Git workflow and commit conventions
Code review requirements
Testing requirements and coverage targets
Quality assurance gates
Deployment procedures

Update when:

Team practices evolve
Quality standards change
New workflow patterns are adopted

### tracks.md — WHAT'S HAPPENING

Purpose: Registry of all work units with status and metadata.

Contents:

Active tracks with current status
Completed tracks with completion dates
Track metadata (type, priority, assignee)
Links to individual track specs

Update when:

New work starts
Work status changes
Work completes

### Directory Structure

context/
├── product.md            # Product vision and goals
├── tech-stack.md         # Technology choices
├── workflow.md           # Development practices
├── tracks.md             # Work unit registry
└── styleguides/          # Language-specific conventions
    ├── python.md
    ├── typescript.md
    └── ...

### Setup: New Project (Greenfield)

For new projects, create all artifacts from scratch:

Create context/product.md:

Define the problem you're solving
Describe target users
List core features for v1
Define success metrics



Create context/tech-stack.md:

Choose languages and frameworks
Document key dependencies with versions
Specify infrastructure targets
List development tools



Create context/workflow.md:

Define branching strategy
Set commit conventions
Establish testing requirements
Document deployment process



Create context/tracks.md:

Start with empty registry
Add work units as they're created

### Setup: Existing Project (Brownfield)

For existing codebases, extract context from what exists:

Analyze the codebase:

Read package.json, requirements.txt, go.mod, etc.
Look at existing README and docs
Check git history for patterns



Create context/tech-stack.md:

Document discovered dependencies
Note infrastructure from configs (Docker, CI, etc.)



Create context/product.md:

Infer product purpose from code
Document current feature set
Note any README content



Create context/workflow.md:

Document existing practices
Note any established patterns

### Keep Artifacts Synchronized

Changes in one artifact should reflect in related documents:

New feature in product.md → Update tech-stack.md if new dependencies needed
Completed track → Update product.md to reflect new capabilities
Workflow change → Update all affected track plans

### Update tech-stack.md When Adding Dependencies

Before adding any new dependency:

Check if existing dependencies solve the need
Document the rationale for new dependencies
Add version constraints
Note any configuration requirements

### Verify Context Before Implementation

Before starting any work:

Read all context artifacts
Flag any outdated information
Propose updates before proceeding
Confirm context accuracy

### Validation Checklist

Before starting implementation, validate:

Product Context:

product.md reflects current vision
 Target users are accurately described
 Feature list is up to date

Technical Context:

tech-stack.md lists all current dependencies
 Version numbers are accurate
 Infrastructure targets are correct

Workflow Context:

workflow.md describes current practices
 Quality gates are defined
 Commit conventions are documented

### Anti-Patterns

Anti-PatternProblemFixStale ContextDocuments become outdated and misleadingUpdate context as part of each track's completionContext SprawlInformation scattered across multiple locationsUse defined artifact structure; resist new document typesImplicit ContextRelying on knowledge not captured in artifactsIf referenced repeatedly, add to appropriate artifactOver-SpecificationContext so detailed it's impossible to maintainKeep focused on decisions affecting AI behavior and team alignment

### Starting a New Session

Read context/product.md to orient yourself
Check context/tracks.md for active work
Read relevant track specs for current task
Verify context artifacts are current

### Ending a Session

Update track status with current progress
Note any blockers or decisions made
Commit in-progress work with clear status
Update tracks.md if status changed

### Benefits

Team Alignment:

New team members onboard faster with explicit context
Consistent terminology across the team
Shared understanding of product goals

AI Consistency:

AI assistants produce aligned outputs across sessions
Reduced need to re-explain context
Predictable behavior based on documented standards

Institutional Memory:

Decisions and rationale are preserved
Context survives team changes
Historical context informs future decisions

### NEVER Do

NEVER start implementation without reading context — context precedes code
NEVER add dependencies without updating tech-stack.md — keep the source of truth current
NEVER let context documents get stale — update them as part of completing work
NEVER scatter context across ad-hoc documents — use the defined structure
NEVER assume AI remembers previous sessions — context must be in artifacts
NEVER skip context for "quick" changes — small changes compound into drift
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wpank
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T13:47:36.646Z
- Expires at: 2026-05-06T13:47:36.646Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/context-driven-development)
- [Send to Agent page](https://openagent3.xyz/skills/context-driven-development/agent)
- [JSON manifest](https://openagent3.xyz/skills/context-driven-development/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/context-driven-development/agent.md)
- [Download page](https://openagent3.xyz/downloads/context-driven-development)