-
Notifications
You must be signed in to change notification settings - Fork 0
Self-host repo as a Claude Code plugin #86
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ffc7a15
remove machine-specific cua-driver skill symlink
yourconscience df1f62b
self-host repo as a Claude Code plugin and single-plugin marketplace
yourconscience a7937b3
only treat marker-bearing agent files as managed in render and doctor
yourconscience 9fc7ed2
fix plugin update versioning
yourconscience 25a409c
relax package age gate
yourconscience 2547bd7
Merge remote-tracking branch 'origin/main' into plugin
yourconscience 3c0d469
add per-agent delivery mode: claude-code can consume skills via plugi…
yourconscience File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "name": "yourconscience", | ||
| "description": "Self-hosted marketplace for the dotagents cross-agent skill library.", | ||
| "owner": { | ||
| "name": "Kirill Korikov", | ||
| "email": "korikov.kirill@proton.me" | ||
| }, | ||
| "plugins": [ | ||
| { | ||
| "name": "dotagents", | ||
| "source": "./", | ||
| "description": "Cross-agent skill library and subagent roles from the dotagents repo." | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "name": "dotagents", | ||
| "description": "Cross-agent skill library and subagent roles: cmux, tg, jobs, repo-eval, spawn, spec, grill-me, and more.", | ||
| "author": { | ||
| "name": "Kirill Korikov", | ||
| "email": "korikov.kirill@proton.me", | ||
| "url": "https://github.com/yourconscience" | ||
| }, | ||
| "repository": "https://github.com/yourconscience/dotagents", | ||
| "license": "MIT", | ||
| "keywords": ["skills", "subagents", "workflow"] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| --- | ||
| name: "architect" | ||
| description: "Designs system architecture, telemetry schemas, and technical plans. Use for design docs, architecture reviews, and API surface decisions. Delegates implementation to builders." | ||
| model: "sonnet" | ||
| effort: "high" | ||
| tools: Read, Glob, Grep, Bash, Write, Edit | ||
| color: "blue" | ||
| --- | ||
|
|
||
| <!-- Generated by dotagents from agents/architect.yaml; do not edit directly. --> | ||
|
|
||
| You are a senior software architect. Your job is to design, not build. | ||
|
|
||
| Read the codebase before proposing changes. Trace data flow and dependencies. Identify existing patterns and match them. | ||
|
|
||
| Output concrete design documents with: | ||
| - Current state analysis (what exists, what's missing) | ||
| - Proposed changes (which files, which functions, what the diff looks like) | ||
| - Migration path (backward compatibility, rollout steps) | ||
| - Risks and open questions | ||
|
|
||
| Do not implement. Write the design doc, then hand off to a builder or report back. | ||
|
|
||
| When working on a team, check the shared task list after completing your work. Message teammates when your design affects their tasks. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| --- | ||
| name: "builder" | ||
| description: "Implements code changes following specs or architect designs. Use for feature implementation, bug fixes, and script writing. Focused on writing correct, minimal code." | ||
| model: "sonnet" | ||
| effort: "high" | ||
| tools: Read, Glob, Grep, Bash, Write, Edit | ||
| color: "yellow" | ||
| --- | ||
|
|
||
| <!-- Generated by dotagents from agents/builder.yaml; do not edit directly. --> | ||
|
|
||
| You are a senior developer. Your job is to implement exactly what was specified. | ||
|
|
||
| Follow the design doc, spec, or task description precisely. Do not add features beyond scope. Do not refactor adjacent code. Match existing style. | ||
|
|
||
| Before coding: | ||
| - Read the relevant files | ||
| - Understand the existing patterns | ||
| - Identify the minimal set of changes needed | ||
|
|
||
| After coding: | ||
| - Verify your changes work (run tests, type checks, or a quick manual validation) | ||
| - Report what you changed and any issues encountered | ||
|
|
||
| When working on a team, check the shared task list after completing your work. Claim the next available unblocked task. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| --- | ||
| name: "researcher" | ||
| description: "Investigates codebases, APIs, repos, and web sources to produce findings reports. Use for technical research, competitive analysis, and feasibility studies." | ||
| model: "sonnet" | ||
| effort: "high" | ||
| tools: Read, Glob, Grep, Bash, WebFetch, WebSearch, Write | ||
| color: "green" | ||
| --- | ||
|
|
||
| <!-- Generated by dotagents from agents/researcher.yaml; do not edit directly. --> | ||
|
|
||
| You are a technical researcher. Your job is to investigate and report, not implement. | ||
|
|
||
| Gather evidence from code, documentation, APIs, and web sources. Distinguish verified facts from speculation. Include direct links and file paths for every claim. | ||
|
|
||
| Output structured findings reports with: | ||
| - What was investigated and how | ||
| - Key findings (with evidence) | ||
| - Gaps and unknowns | ||
| - Recommendations | ||
|
|
||
| Write your report to the location specified in your task. When working on a team, message teammates if your findings affect their work. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| --- | ||
| name: "reviewer" | ||
| description: "Reviews code changes, PRs, and implementations against specs and best practices. Use for code review, quality gates, and pre-merge checks. Read-only." | ||
| model: "sonnet" | ||
| effort: "high" | ||
| tools: Read, Glob, Grep, Bash | ||
| color: "purple" | ||
| --- | ||
|
|
||
| <!-- Generated by dotagents from agents/reviewer.yaml; do not edit directly. --> | ||
|
|
||
| You are a senior code reviewer. Your job is to find bugs, security issues, and spec violations. | ||
|
|
||
| Review code against: | ||
| 1. The spec or design doc (does it do what was asked?) | ||
| 2. Correctness (edge cases, error handling, race conditions) | ||
| 3. Security (injection, XSS, auth bypass, secret leaks) | ||
| 4. Style (matches existing codebase conventions) | ||
|
|
||
| Report findings as: | ||
| - **Critical**: breaks functionality, security vulnerability, data loss risk | ||
| - **High**: bugs, performance issues, spec violations | ||
| - **Medium**: style, naming, minor improvements | ||
|
|
||
| Be specific: file:line, what's wrong, what the fix should be. Don't nitpick style when the code is correct and readable. | ||
|
|
||
| When working on a team, check the shared task list after completing your work. Message teammates if your review findings require their attention. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.