Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

**The package manager for AI agents.**

> [!WARNING]
> agr is no longer maintained. Use [skills.sh](https://skills.sh/) and its
> [`skills` CLI](https://skills.sh/docs/cli) for skill management instead.

For teams who want to manage agent skills like software packages — the way npm,
PyPI, and uv manage code. Install skills from any Git repo into Claude Code,
Cursor, Codex, and more, then share them across your team like real dependencies.
Expand Down
56 changes: 0 additions & 56 deletions agr.lock

This file was deleted.

36 changes: 0 additions & 36 deletions agr.toml

This file was deleted.

36 changes: 36 additions & 0 deletions docs/diary/2026-07-12-migrate-skills-sh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Diary: Migrate agr repository skills to skills.sh

Move the repository's own agent skills off its legacy self-hosted configuration.

## Step 1: Convert active skills

**Author:** main

### Prompt Context
**Verbatim prompt:** you should also do it for the other projects and repos.
**Interpretation:** Include the agr repository in the cross-repo migration.
**Inferred intent:** Stop relying on agr even for agr's development workspace.

### What I did
Installed `agr-release`, `code-review`, and `playwright-cli` for Claude Code and Codex, created `/skills-lock.json`, removed `/agr.toml` and `/agr.lock`, and removed the public README warning at the user's request.

### Why
The repository should use the same active skill manager as the other workspaces without publicly declaring the project unmaintained.

### What worked
The three available skills validated and installed successfully.

### What didn't work
`github-issue-triage` was no longer present in `computerlovetech/skills`. Remote ralph dependencies are not supported by skills.sh.

### What I learned
Several legacy manifest entries no longer resolve to published resources.

### What was tricky
The migration and the explicit reversal of the README notice needed to land together without rewriting product documentation about agr itself.

### What warrants review
Review `/skills-lock.json`, the README warning removal, and the omitted stale/ralph dependencies.

### Future work
Decide separately whether any remote ralph dependencies still need another installation mechanism.
22 changes: 22 additions & 0 deletions skills-lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"version": 1,
"skills": {
"agr-release": {
"source": "/Users/kasperjunge/Agent/Code/computerlovetech/public/agr/skills/agr-release",
"sourceType": "local",
"computedHash": "400f539ac595d37ea338e4b673cead73e8d050ec9ef775980f5fd2cd4e619005"
},
"code-review": {
"source": "maragudk/skills",
"sourceType": "github",
"skillPath": "code-review/SKILL.md",
"computedHash": "991fc1c0e2917a1077bddca62e78c598666f6aa9b09c733c36b5ecb42e3aa68d"
},
"playwright-cli": {
"source": "microsoft/playwright-cli",
"sourceType": "github",
"skillPath": "skills/playwright-cli/SKILL.md",
"computedHash": "f602822b51bcb6d033749c60731b8f1e80f308222fcb2e4af551905a817c6e08"
}
}
}
Loading