Skip to content

someonegg/devkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

devkit

中文

A lightweight AI developer assistant toolkit containing reusable skills and agent configurations for Claude and Codex.

Contents

  • skills/ — Reusable skill definitions shared across AI assistants
  • claude/agents/ — Agent configurations for Claude Code
  • codex/agents/ — Agent configurations for Codex

Skills

Skill Description
feature-dev Structured feature development workflow: codebase exploration, requirement clarification, architecture comparison, ExecPlan authoring, milestone-driven implementation, and quality review. Emphasizes design-before-code and treats the ExecPlan as the single source of truth during execution.
playwright-cli Browser automation and page debugging. Supports page interaction, data scraping, and regression testing via advanced Playwright scripts.
content-research-writer Collaborative content writing with research support, citation management, outline iteration, and real-time section feedback.
document-retrieval Lightweight dispatch rule for delegating focused lookup tasks to the document-retriever subagent when source-backed matches are needed from explicitly provided documents.
open-task-explorer Lightweight exploration workflow for open-ended strategy, analysis, writing, and synthesis tasks where comparing distinct frames or options improves the final answer.

Agents

Claude (claude/agents/)

Agent Description
code-architect Designs feature architectures by analyzing existing patterns, producing implementation blueprints with file lists, component designs, and build sequences.
code-explorer Traces execution paths and maps architecture layers to deeply understand an existing feature before new development begins.
code-reviewer Reviews code for bugs, logic errors, security vulnerabilities, and style issues, reporting only high-confidence findings.
document-retriever Searches explicitly provided documents or URLs for source-backed matches, returning source locations, snippets, match reasons, and retrieval gaps without making task-level judgments.
code-simplifier Refines recently modified code for clarity, consistency, and maintainability without changing behavior.

Codex (codex/agents/)

Same agents (code-architect, code-explorer, code-reviewer, code-simplifier, document-retriever) configured for the Codex runtime.

Directory Structure

.
├── claude/
│   └── agents/
├── codex/
│   └── agents/
└── skills/
    ├── content-research-writer/
    ├── feature-dev/
    ├── open-task-explorer/
    └── playwright-cli/

Installation

Claude Code

Copy agents and skills to your local Claude directory:

mkdir -p ~/.claude/agents ~/.claude/skills
cp -R claude/agents/* ~/.claude/agents/
cp -R skills/* ~/.claude/skills/

Codex

Copy agents and skills to your local Codex directory:

mkdir -p ~/.codex/agents ~/.codex/skills
cp -R codex/agents/* ~/.codex/agents/
cp -R skills/* ~/.codex/skills/

License

This repository is licensed under the MIT License.

About

A lightweight AI developer assistant toolkit containing reusable skills and agent configurations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors