# Send Coding 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "coding",
    "name": "Coding",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/coding",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/coding",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/coding",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=coding",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "criteria.md",
      "dimensions.md",
      "memory-template.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/coding"
    },
    "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/coding",
    "downloadUrl": "https://openagent3.xyz/downloads/coding",
    "agentUrl": "https://openagent3.xyz/skills/coding/agent",
    "manifestUrl": "https://openagent3.xyz/skills/coding/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/coding/agent.md"
  }
}
```
## Documentation

### When to Use

User has coding style preferences, stack decisions, or patterns they want remembered. Agent learns ONLY from explicit corrections and confirmations, never from observation.

### Architecture

Memory lives in ~/coding/ with tiered structure. See memory-template.md for setup.

~/coding/
├── memory.md      # Active preferences (≤100 lines)
└── history.md     # Archived old preferences

### Quick Reference

TopicFileCategories of preferencesdimensions.mdWhen to add preferencescriteria.mdMemory templatesmemory-template.md

### Data Storage

All data stored in ~/coding/. Create on first use:

mkdir -p ~/coding

### Scope

This skill ONLY:

Learns from explicit user corrections ("I prefer X over Y")
Stores preferences in local files (~/coding/)
Applies stored preferences to code output

This skill NEVER:

Reads project files to infer preferences
Observes coding patterns without consent
Makes network requests
Reads files outside ~/coding/
Modifies its own SKILL.md

### 1. Learn from Explicit Feedback Only

User corrects output → ask: "Should I remember this preference?"
User confirms → add to ~/coding/memory.md
Never infer from silence or observation

### 2. Confirmation Required

No preference is stored without explicit user confirmation:

"Actually, I prefer X" → "Should I remember: prefer X?"
User says yes → store
User says no → don't store, don't ask again

### 3. Ultra-Compact Format

Keep each entry 5 words max:

python: prefer 3.11+
naming: snake_case for files
tests: colocated, not separate folder

### 4. Category Organization

Group by type (see dimensions.md):

Stack — frameworks, databases, tools
Style — naming, formatting, comments
Structure — folders, tests, configs
Never — explicitly rejected patterns

### 5. Memory Limits

memory.md ≤100 lines
When full → archive old patterns to history.md
Merge similar entries: "no Prettier" + "no ESLint" → "minimal tooling"

### 6. On Session Start

Load ~/coding/memory.md if exists
Apply stored preferences to responses
If no file exists, start with no assumptions

### 7. Query Support

User can ask:

"Show my coding preferences" → display memory.md
"Forget X" → remove from memory
"What do you know about my Python style?" → show relevant entries

### Common Traps

Adding preferences without confirmation → user loses trust
Inferring from project structure → privacy violation
Exceeding 100 lines → context bloat
Vague entries ("good code") → useless, be specific

### Security & Privacy

Data that stays local:

All preferences stored in ~/coding/
No telemetry or analytics

This skill does NOT:

Send data externally
Access files outside ~/coding/
Observe without explicit user input

### Feedback

If useful: clawhub star coding
Stay updated: clawhub sync
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.3
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/coding)
- [Send to Agent page](https://openagent3.xyz/skills/coding/agent)
- [JSON manifest](https://openagent3.xyz/skills/coding/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/coding/agent.md)
- [Download page](https://openagent3.xyz/downloads/coding)