Add Claude commands, remote-exec script, and skills
- commands/remote.md for remote execution - remote-exec.sh script - skills: claudeception, kubernetes-latest-tag-image-pull, react-hooks-order-early-return
This commit is contained in:
parent
09631b3530
commit
fde360dbdc
44 changed files with 3053 additions and 0 deletions
54
dot_claude/skills/claudeception/WARP.md
Normal file
54
dot_claude/skills/claudeception/WARP.md
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# WARP.md
|
||||
|
||||
This file provides guidance to WARP (warp.dev) when working with code in this repository.
|
||||
|
||||
## Project Overview
|
||||
|
||||
Claudeception is a **Claude Code skill** for continuous learning—it enables Claude Code to autonomously extract and preserve learned knowledge into reusable skills. It is not an application codebase but rather a skill definition with documentation and examples.
|
||||
|
||||
## Key Files
|
||||
|
||||
- `SKILL.md` — The main skill definition (YAML frontmatter + instructions). This is what Claude Code loads.
|
||||
- `resources/skill-template.md` — Template for creating new skills
|
||||
- `examples/` — Sample extracted skills demonstrating proper format
|
||||
|
||||
## Skill File Format
|
||||
|
||||
Skills use YAML frontmatter followed by markdown:
|
||||
|
||||
```yaml
|
||||
---
|
||||
name: kebab-case-name
|
||||
description: |
|
||||
Must be precise for semantic matching. Include:
|
||||
(1) exact use cases, (2) trigger conditions like error messages,
|
||||
(3) what problem this solves
|
||||
author: Claude Code
|
||||
version: 1.0.0
|
||||
allowed-tools:
|
||||
- Read
|
||||
- Write
|
||||
- Bash
|
||||
- Grep
|
||||
- Glob
|
||||
---
|
||||
```
|
||||
|
||||
The description field is critical—it determines when the skill surfaces during semantic matching.
|
||||
|
||||
## Installation Paths
|
||||
|
||||
- **User-level**: `~/.claude/skills/[skill-name]/`
|
||||
- **Project-level**: `.claude/skills/[skill-name]/`
|
||||
|
||||
## Quality Criteria for Skills
|
||||
|
||||
When modifying or creating skills, ensure:
|
||||
- **Reusable**: Helps with future tasks, not just one instance
|
||||
- **Non-trivial**: Requires discovery, not just documentation lookup
|
||||
- **Specific**: Clear trigger conditions (exact error messages, symptoms)
|
||||
- **Verified**: Solution has actually been tested and works
|
||||
|
||||
## Research Foundation
|
||||
|
||||
The approach is based on academic work on skill libraries (Voyager, CASCADE, SEAgent, Reflexion). See `resources/research-references.md` for details.
|
||||
Loading…
Add table
Add a link
Reference in a new issue