-
Notifications
You must be signed in to change notification settings - Fork 0
basic readme and fixed some markdown linting errors #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| # Agent Library | ||
|
|
||
| A collection of reusable agents and skills for Claude Code and VSCode Copilot. Provides autonomous workers for complex tasks like testing, code review, CI/CD debugging, refactoring, and more. | ||
|
|
||
| ## Quick Start | ||
|
|
||
| Symlink the folders to your project: | ||
|
|
||
| ```bash | ||
| ln -s ~/AgentLibrary/.claude/agents ~/yourproject/.claude/agents | ||
| ln -s ~/AgentLibrary/.claude/skills ~/yourproject/.claude/skills | ||
| ln -s ~/AgentLibrary/.claude/rules ~/yourproject/.claude/rules | ||
| ``` | ||
|
Comment on lines
+7
to
+13
|
||
|
|
||
| Or for a single folder: | ||
|
|
||
| ```bash | ||
| ln -s ~/AgentLibrary/.claude ~/yourproject/.claude | ||
| ``` | ||
|
|
||
| Then in Claude Code or VSCode Copilot: | ||
|
|
||
| - Agents appear in the `/agents` menu | ||
| - Skills appear in the `/skills` menu | ||
| - Rules auto-load into context | ||
|
|
||
| ## What's Included | ||
|
|
||
| **14 Agents** for autonomous multi-step work: | ||
|
|
||
| - `test-runner`, `pr-reviewer`, `code-architect`, `bug-fixer`, `feature-implementer` | ||
| - `release-manager`, `dependency-manager`, `project-setup` | ||
| - Plus specialized agents for CI/CD, code simplification, pattern evaluation, and more | ||
|
|
||
| **20+ Skills** for targeted capabilities: | ||
|
|
||
| - Development: test execution, linting, code analysis, test generation | ||
| - Git/Release: commit management, PR creation, release notes, advanced workflows | ||
| - Context: dependency management, environment validation, API documentation | ||
|
|
||
| ## Usage | ||
|
|
||
| ### Agents (Complex Multi-Step Tasks) | ||
|
|
||
| ```text | ||
| "Use code-architect to review the architecture" | ||
| "Use bug-fixer to diagnose and fix [bug description]" | ||
| "Use feature-implementer to implement [feature description]" | ||
| ``` | ||
|
|
||
| ### Skills (Quick Capabilities) | ||
|
|
||
| ```text | ||
| /run-tests | ||
| /lint-code | ||
| /commit-push | ||
| /create-pr | ||
| ``` | ||
|
|
||
| ## Context System | ||
|
|
||
| Add `CLAUDE.md` files to your project to provide instructions: | ||
|
|
||
| ```text | ||
| yourproject/ | ||
| CLAUDE.md # Root instructions (always read) | ||
| src/ | ||
| CLAUDE.md # Feature-specific instructions | ||
| ``` | ||
|
|
||
| Instructions are discovered and applied automatically based on task context. | ||
|
|
||
| ## Documentation | ||
|
|
||
| See [CLAUDE.md](./CLAUDE.md) for detailed agent/skill documentation, capabilities, and context system details. | ||
|
|
||
| ## Requirements | ||
|
|
||
| - Claude Code or VSCode Copilot with Claude model | ||
| - Git repository in your project | ||
|
Comment on lines
+79
to
+80
|
||
| - Symlinks must point to the correct paths | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The README refers to "VSCode Copilot", but the product name is typically "GitHub Copilot" (often used within "VS Code"). Consider rephrasing to avoid implying a separate product and to make the requirement unambiguous for readers.