plugins marketplace
← All plugins

skill-forge-essentials

v1.0.0

Three behavioral skills addressing AI-specific failure patterns: hidden code debt from agent generation, context compaction amnesia, and imprecise Design Mode edits

CodexClaude Code3 skills

by Adit JainMIT38.6kupdated 4 days ago

Source

git clone https://github.com/wshobson/agents

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/skill-forge-essentials/ inside the repository.

Layout

plugins/skill-forge-essentials/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/ai-debt-detector/SKILL.md
├── skills/session-guard/SKILL.md
└── skills/visual-edit-precision/SKILL.md

Skills3

ai-debt-detectorskills/ai-debt-detector/SKILL.md

Use after generating code, after accepting AI suggestions, or when reviewing AI-written modules. Also use when code works but feels brittle, when error handling seems thin, when orphaned resources or missing cleanup are suspected, or when the agent claims done but hidden debt may exist. Catches the specific failure patterns AI agents produce that humans would not.

session-guardskills/session-guard/SKILL.md

Use when working on complex multi-step tasks, when a session is getting long (40+ tool calls), when the agent starts ignoring rules it followed earlier, when conventions drift, when output quality seems to degrade, or after any context compaction event. Prevents long-session corruption AND context compaction amnesia through behavioral self-enforcement.

visual-edit-precisionskills/visual-edit-precision/SKILL.md

Use when making UI/frontend changes guided by visual context, when the user selects elements visually, draws annotations, or provides screenshots alongside change requests. Also use when editing components where spatial context (element identity, DOM references, layout data) supplements text instructions.

Manifests2

plugins/skill-forge-essentials/.codex-plugin/plugin.json
{
  "name": "skill-forge-essentials",
  "version": "1.0.0",
  "description": "Three behavioral skills addressing AI-specific failure patterns: hidden code debt from agent generation, context compaction amnesia, and imprecise Design Mode edits",
  "skills": "./skills/",
  "author": {
    "name": "Adit Jain",
    "email": "aditjain2005@gmail.com"
  },
  "license": "MIT",
  "interface": {
    "displayName": "Skill Forge Essentials",
    "shortDescription": "Three behavioral skills addressing AI-specific failure patterns: hidden code debt from agent generation, context…",
    "category": "Coding"
  }
}
plugins/skill-forge-essentials/.claude-plugin/plugin.json
{
  "name": "skill-forge-essentials",
  "version": "1.0.0",
  "description": "Three behavioral skills addressing AI-specific failure patterns: hidden code debt from agent generation, context compaction amnesia, and imprecise Design Mode edits",
  "author": {
    "name": "Adit Jain",
    "email": "aditjain2005@gmail.com"
  },
  "license": "MIT"
}