Skip to content

Commit 0a11457

Browse files
authored
Merge pull request #531 from computerlovetech/migrate-skills-sh
Migrate skill management to skills.sh
2 parents 45a8693 + bd62a5c commit 0a11457

5 files changed

Lines changed: 58 additions & 96 deletions

File tree

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44

55
**The package manager for AI agents.**
66

7-
> [!WARNING]
8-
> agr is no longer maintained. Use [skills.sh](https://skills.sh/) and its
9-
> [`skills` CLI](https://skills.sh/docs/cli) for skill management instead.
10-
117
For teams who want to manage agent skills like software packages — the way npm,
128
PyPI, and uv manage code. Install skills from any Git repo into Claude Code,
139
Cursor, Codex, and more, then share them across your team like real dependencies.

agr.lock

Lines changed: 0 additions & 56 deletions
This file was deleted.

agr.toml

Lines changed: 0 additions & 36 deletions
This file was deleted.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Diary: Migrate agr repository skills to skills.sh
2+
3+
Move the repository's own agent skills off its legacy self-hosted configuration.
4+
5+
## Step 1: Convert active skills
6+
7+
**Author:** main
8+
9+
### Prompt Context
10+
**Verbatim prompt:** you should also do it for the other projects and repos.
11+
**Interpretation:** Include the agr repository in the cross-repo migration.
12+
**Inferred intent:** Stop relying on agr even for agr's development workspace.
13+
14+
### What I did
15+
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.
16+
17+
### Why
18+
The repository should use the same active skill manager as the other workspaces without publicly declaring the project unmaintained.
19+
20+
### What worked
21+
The three available skills validated and installed successfully.
22+
23+
### What didn't work
24+
`github-issue-triage` was no longer present in `computerlovetech/skills`. Remote ralph dependencies are not supported by skills.sh.
25+
26+
### What I learned
27+
Several legacy manifest entries no longer resolve to published resources.
28+
29+
### What was tricky
30+
The migration and the explicit reversal of the README notice needed to land together without rewriting product documentation about agr itself.
31+
32+
### What warrants review
33+
Review `/skills-lock.json`, the README warning removal, and the omitted stale/ralph dependencies.
34+
35+
### Future work
36+
Decide separately whether any remote ralph dependencies still need another installation mechanism.

skills-lock.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"version": 1,
3+
"skills": {
4+
"agr-release": {
5+
"source": "/Users/kasperjunge/Agent/Code/computerlovetech/public/agr/skills/agr-release",
6+
"sourceType": "local",
7+
"computedHash": "400f539ac595d37ea338e4b673cead73e8d050ec9ef775980f5fd2cd4e619005"
8+
},
9+
"code-review": {
10+
"source": "maragudk/skills",
11+
"sourceType": "github",
12+
"skillPath": "code-review/SKILL.md",
13+
"computedHash": "991fc1c0e2917a1077bddca62e78c598666f6aa9b09c733c36b5ecb42e3aa68d"
14+
},
15+
"playwright-cli": {
16+
"source": "microsoft/playwright-cli",
17+
"sourceType": "github",
18+
"skillPath": "skills/playwright-cli/SKILL.md",
19+
"computedHash": "f602822b51bcb6d033749c60731b8f1e80f308222fcb2e4af551905a817c6e08"
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)