Coding
Coding style memory that adapts to your preferences, conventions, and patterns for consistent coding.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-coding-1-0-3
Repository
Skill path: skills/chayjan/coding-1-0-3
Coding style memory that adapts to your preferences, conventions, and patterns for consistent coding.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install Coding into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding Coding to shared team environments
- Use Coding for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: Coding
slug: coding
version: 1.0.3
homepage: https://clawic.com/skills/coding
description: Coding style memory that adapts to your preferences, conventions, and patterns for consistent coding.
changelog: Improve discoverability, add homepage and feedback section
metadata: {"clawdbot":{"emoji":"π»","requires":{"bins":[]},"os":["linux","darwin","win32"]}}
---
## 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
| Topic | File |
|-------|------|
| Categories of preferences | `dimensions.md` |
| When to add preferences | `criteria.md` |
| Memory templates | `memory-template.md` |
## Data Storage
All data stored in `~/coding/`. Create on first use:
```bash
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
## Core Rules
### 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
1. Load `~/coding/memory.md` if exists
2. Apply stored preferences to responses
3. 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`
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "chayjan",
"slug": "coding-1-0-3",
"displayName": "Coding 1.0.3",
"latest": {
"version": "1.0.0",
"publishedAt": 1772731331346,
"commit": "https://github.com/openclaw/skills/commit/6f2cac3825d0bef175124002f60a063dabc28344"
},
"history": []
}
```