chore: migrate git host from git.dev.rkdr.net to git.rkdr.net

Why
The repo's git host moved from git.dev.rkdr.net to git.rkdr.net. The
`origin` remote was already repointed; this commit brings every
in-repo reference in line so cloning, submodule init, and apm install
all resolve against the new host.

Implementation Notes
- .gitmodules: docs/wiki submodule URL repointed (tests/* submodules
  stay on github.com, untouched).
- Root apm.yml: 7 dependency entries and marketplace.owner.url
  repointed; executables.allow key updated to kyberforge#2.0.1 to
  match kyberforge's bump below (scripts/check-executables-allow-sync.sh
  enforces this pairing).
- Each plugin's apm.yml (bin, core, git, gitea, kyberforge, lint,
  onedev): author.url/homepage/repository repointed. Per this repo's
  apm versioning policy, these fields compile verbatim into
  plugin.json, so each package took a patch version bump alongside
  the URL change.
- Root apm.yml version and marketplace.version bumped 0.5.0 -> 0.5.1
  to match (a marketplace-block field and every listed package's
  version moved).
- apm.lock.yaml regenerated via `apm install`; .claude-plugin/marketplace.json
  regenerated via `apm pack --marketplace=claude` so compiled output
  stays in sync with the manifests.

Impact
docs/adr/0015, 0017, and 0018 intentionally keep the old host in their
issue links and examples — they are historical decision records, not
live config. Verified clean: apm pack --check-clean, apm audit --ci,
check-executables-allow-sync.sh, and pre-commit --all-files all pass.
This commit is contained in:
2026-09-25 13:15:25 +00:00
parent d654dca056
commit 025ad4a5af
15 changed files with 684 additions and 684 deletions

View File

@@ -1,59 +1,59 @@
{ {
"name": "holocron", "name": "holocron",
"description": "AI development skills for Claude Code, and for GitHub Copilot through apm — factory, design, implement, review, and cross-cutting workflows.", "description": "AI development skills for Claude Code, and for GitHub Copilot through apm — factory, design, implement, review, and cross-cutting workflows.",
"version": "0.5.0", "version": "0.5.1",
"owner": { "owner": {
"name": "Defame1297", "name": "Defame1297",
"email": "defame1297@rkdr.net", "email": "defame1297@rkdr.net",
"url": "https://git.dev.rkdr.net/Defame1297/" "url": "https://git.rkdr.net/Defame1297/"
}, },
"plugins": [ "plugins": [
{ {
"name": "kyberforge", "name": "kyberforge",
"description": "Skills and agents for creating, maintaining, and managing an apm plugin marketplace for Claude Code and GitHub Copilot.", "description": "Skills and agents for creating, maintaining, and managing an apm plugin marketplace for Claude Code and GitHub Copilot.",
"version": "2.0.0", "version": "2.0.1",
"category": "Developer Tools", "category": "Developer Tools",
"source": "./plugins/kyberforge" "source": "./plugins/kyberforge"
}, },
{ {
"name": "bin", "name": "bin",
"description": "Skills for everyday AI-assisted development work that is not tied to a single tool, forge or language, and has not yet been split into a focused plugin.", "description": "Skills for everyday AI-assisted development work that is not tied to a single tool, forge or language, and has not yet been split into a focused plugin.",
"version": "1.1.8", "version": "1.1.9",
"category": "Utilities", "category": "Utilities",
"source": "./plugins/bin" "source": "./plugins/bin"
}, },
{ {
"name": "git", "name": "git",
"description": "Skills and agents for working with a local Git clone over the git wire protocol, and for authoring and running the pre-commit hooks that guard it.", "description": "Skills and agents for working with a local Git clone over the git wire protocol, and for authoring and running the pre-commit hooks that guard it.",
"version": "1.3.8", "version": "1.3.9",
"category": "Version Control", "category": "Version Control",
"source": "./plugins/git" "source": "./plugins/git"
}, },
{ {
"name": "gitea", "name": "gitea",
"description": "Skills and agents for working with a Gitea forge through its HTTP API — the forge's own objects, as distinct from the local git clone.", "description": "Skills and agents for working with a Gitea forge through its HTTP API — the forge's own objects, as distinct from the local git clone.",
"version": "1.3.9", "version": "1.3.10",
"category": "Version Control", "category": "Version Control",
"source": "./plugins/gitea" "source": "./plugins/gitea"
}, },
{ {
"name": "onedev", "name": "onedev",
"description": "Skills and agents for working with a OneDev forge through the TOD CLI — the forge's own objects, as distinct from the local git clone.", "description": "Skills and agents for working with a OneDev forge through the TOD CLI — the forge's own objects, as distinct from the local git clone.",
"version": "0.1.0", "version": "0.1.1",
"category": "Version Control", "category": "Version Control",
"source": "./plugins/onedev" "source": "./plugins/onedev"
}, },
{ {
"name": "core", "name": "core",
"description": "Skills for authoring and auditing a repo's AGENTS.md and the provider adapter files that defer to it.", "description": "Skills for authoring and auditing a repo's AGENTS.md and the provider adapter files that defer to it.",
"version": "1.1.3", "version": "1.1.4",
"category": "Productivity", "category": "Productivity",
"source": "./plugins/core" "source": "./plugins/core"
}, },
{ {
"name": "lint", "name": "lint",
"description": "Skills and agents for configuring and running linters.", "description": "Skills and agents for configuring and running linters.",
"version": "1.1.8", "version": "1.1.9",
"category": "Developer Tools", "category": "Developer Tools",
"source": "./plugins/lint" "source": "./plugins/lint"
} }

2
.gitmodules vendored
View File

@@ -12,4 +12,4 @@
ignore = dirty ignore = dirty
[submodule "docs/wiki"] [submodule "docs/wiki"]
path = docs/wiki path = docs/wiki
url = git@git.dev.rkdr.net:Defame1297/holocron.wiki.git url = git@git.rkdr.net:Defame1297/holocron.wiki.git

File diff suppressed because it is too large Load Diff

22
apm.yml
View File

@@ -1,5 +1,5 @@
name: holocron name: holocron
version: 0.5.0 version: 0.5.1
description: AI development skills for Claude Code, and for GitHub Copilot through apm — factory, design, implement, review, and cross-cutting workflows. description: AI development skills for Claude Code, and for GitHub Copilot through apm — factory, design, implement, review, and cross-cutting workflows.
license: MIT license: MIT
@@ -16,17 +16,17 @@ targets:
- claude - claude
dependencies: dependencies:
apm: apm:
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/bin path: plugins/bin
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/core path: plugins/core
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/git path: plugins/git
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/gitea path: plugins/gitea
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/kyberforge path: plugins/kyberforge
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/lint path: plugins/lint
# TOD's skills arrive transitively through this wrapper rather than as a # TOD's skills arrive transitively through this wrapper rather than as a
# direct entry, so the marketplace and this repo consume onedev by the same # direct entry, so the marketplace and this repo consume onedev by the same
@@ -38,7 +38,7 @@ dependencies:
# `apm install` fails, which includes the copy kyberforge's SessionStart # `apm install` fails, which includes the copy kyberforge's SessionStart
# hook runs on launch. Accepted deliberately: this branch is merging # hook runs on launch. Accepted deliberately: this branch is merging
# immediately. # immediately.
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/onedev path: plugins/onedev
mcp: [] mcp: []
@@ -61,7 +61,7 @@ dependencies:
# an apm mechanic. # an apm mechanic.
executables: executables:
allow: allow:
kyberforge#2.0.0: kyberforge#2.0.1:
hooks: true hooks: true
bin: true bin: true
@@ -71,11 +71,11 @@ marketplace:
# top-level apm.yml description:/version: above are NOT inherited into the # top-level apm.yml description:/version: above are NOT inherited into the
# compiled output despite being used elsewhere (e.g. by `apm audit`). # compiled output despite being used elsewhere (e.g. by `apm audit`).
description: AI development skills for Claude Code, and for GitHub Copilot through apm — factory, design, implement, review, and cross-cutting workflows. description: AI development skills for Claude Code, and for GitHub Copilot through apm — factory, design, implement, review, and cross-cutting workflows.
version: 0.5.0 version: 0.5.1
owner: owner:
name: Defame1297 name: Defame1297
email: defame1297@rkdr.net email: defame1297@rkdr.net
url: https://git.dev.rkdr.net/Defame1297/ url: https://git.rkdr.net/Defame1297/
# Default tag pattern used to resolve version ranges for each package. # Default tag pattern used to resolve version ranges for each package.
build: build:

View File

@@ -9,7 +9,7 @@ apm is the only supported install path (ADR-0024). Declare this package in the c
```yaml ```yaml
dependencies: dependencies:
apm: apm:
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/bin path: plugins/bin
``` ```
@@ -19,7 +19,7 @@ Then:
apm install apm install
``` ```
The entry above is unpinned and tracks the remote's default branch — add `ref: <tag>` to pin a release. Registering the catalogue instead (`apm marketplace add git@git.dev.rkdr.net:Defame1297/holocron.git --name holocron`) gets you the `bin@holocron` short name, but writes to `~/.apm/marketplaces.json` at user scope; the git+path object needs nothing beyond the manifest. The entry above is unpinned and tracks the remote's default branch — add `ref: <tag>` to pin a release. Registering the catalogue instead (`apm marketplace add git@git.rkdr.net:Defame1297/holocron.git --name holocron`) gets you the `bin@holocron` short name, but writes to `~/.apm/marketplaces.json` at user scope; the git+path object needs nothing beyond the manifest.
**Native plugin installs do not work.** This package ships no per-plugin manifest and no flat content directories, so a host that installs it natively gets zero skills — and Claude Code raises no error while doing it (ADR-0024). **Native plugin installs do not work.** This package ships no per-plugin manifest and no flat content directories, so a host that installs it natively gets zero skills — and Claude Code raises no error while doing it (ADR-0024).

View File

@@ -1,13 +1,13 @@
name: bin name: bin
version: 1.1.8 version: 1.1.9
description: Skills for everyday AI-assisted development work that is not tied to a single tool, forge or language, and has not yet been split into a focused plugin. description: Skills for everyday AI-assisted development work that is not tied to a single tool, forge or language, and has not yet been split into a focused plugin.
author: author:
name: Defame1297 name: Defame1297
email: defame1297@rkdr.net email: defame1297@rkdr.net
url: https://git.dev.rkdr.net/Defame1297/ url: https://git.rkdr.net/Defame1297/
license: MIT license: MIT
homepage: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/bin homepage: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/bin
repository: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/bin repository: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/bin
keywords: keywords:
- utility - utility
- diagnostics - diagnostics

View File

@@ -9,7 +9,7 @@ apm is the only supported install path (ADR-0024). Declare this package in the c
```yaml ```yaml
dependencies: dependencies:
apm: apm:
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/core path: plugins/core
``` ```
@@ -19,7 +19,7 @@ Then:
apm install apm install
``` ```
The entry above is unpinned and tracks the remote's default branch — add `ref: <tag>` to pin a release. Registering the catalogue instead (`apm marketplace add git@git.dev.rkdr.net:Defame1297/holocron.git --name holocron`) gets you the `core@holocron` short name, but writes to `~/.apm/marketplaces.json` at user scope; the git+path object needs nothing beyond the manifest. The entry above is unpinned and tracks the remote's default branch — add `ref: <tag>` to pin a release. Registering the catalogue instead (`apm marketplace add git@git.rkdr.net:Defame1297/holocron.git --name holocron`) gets you the `core@holocron` short name, but writes to `~/.apm/marketplaces.json` at user scope; the git+path object needs nothing beyond the manifest.
**Native plugin installs do not work.** This package ships no per-plugin manifest and no flat content directories, so a host that installs it natively gets zero skills — and Claude Code raises no error while doing it (ADR-0024). **Native plugin installs do not work.** This package ships no per-plugin manifest and no flat content directories, so a host that installs it natively gets zero skills — and Claude Code raises no error while doing it (ADR-0024).

View File

@@ -1,13 +1,13 @@
name: core name: core
version: 1.1.3 version: 1.1.4
description: Skills for authoring and auditing a repo's AGENTS.md and the provider adapter files that defer to it. description: Skills for authoring and auditing a repo's AGENTS.md and the provider adapter files that defer to it.
author: author:
name: Defame1297 name: Defame1297
email: defame1297@rkdr.net email: defame1297@rkdr.net
url: https://git.dev.rkdr.net/Defame1297/ url: https://git.rkdr.net/Defame1297/
license: MIT license: MIT
homepage: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/core homepage: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/core
repository: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/core repository: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/core
keywords: keywords:
- agents-md - agents-md
- documentation - documentation

View File

@@ -9,7 +9,7 @@ apm is the only supported install path (ADR-0024). Declare this package in the c
```yaml ```yaml
dependencies: dependencies:
apm: apm:
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/git path: plugins/git
``` ```
@@ -19,7 +19,7 @@ Then:
apm install apm install
``` ```
The entry above is unpinned and tracks the remote's default branch — add `ref: <tag>` to pin a release. Registering the catalogue instead (`apm marketplace add git@git.dev.rkdr.net:Defame1297/holocron.git --name holocron`) gets you the `git@holocron` short name, but writes to `~/.apm/marketplaces.json` at user scope; the git+path object needs nothing beyond the manifest. The entry above is unpinned and tracks the remote's default branch — add `ref: <tag>` to pin a release. Registering the catalogue instead (`apm marketplace add git@git.rkdr.net:Defame1297/holocron.git --name holocron`) gets you the `git@holocron` short name, but writes to `~/.apm/marketplaces.json` at user scope; the git+path object needs nothing beyond the manifest.
**Native plugin installs do not work.** This package ships no per-plugin manifest and no flat content directories, so a host that installs it natively gets zero skills and zero agents — and Claude Code raises no error while doing it (ADR-0024). **Native plugin installs do not work.** This package ships no per-plugin manifest and no flat content directories, so a host that installs it natively gets zero skills and zero agents — and Claude Code raises no error while doing it (ADR-0024).

View File

@@ -1,13 +1,13 @@
name: git name: git
version: 1.3.8 version: 1.3.9
description: Skills and agents for working with a local Git clone over the git wire protocol, and for authoring and running the pre-commit hooks that guard it. description: Skills and agents for working with a local Git clone over the git wire protocol, and for authoring and running the pre-commit hooks that guard it.
author: author:
name: Defame1297 name: Defame1297
email: defame1297@rkdr.net email: defame1297@rkdr.net
url: https://git.dev.rkdr.net/Defame1297/ url: https://git.rkdr.net/Defame1297/
license: MIT license: MIT
homepage: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/git homepage: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/git
repository: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/git repository: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/git
keywords: keywords:
- git - git
- vcs - vcs

View File

@@ -1,13 +1,13 @@
name: gitea name: gitea
version: 1.3.9 version: 1.3.10
description: Skills and agents for working with a Gitea forge through its HTTP API — the forge's own objects, as distinct from the local git clone. description: Skills and agents for working with a Gitea forge through its HTTP API — the forge's own objects, as distinct from the local git clone.
author: author:
name: Defame1297 name: Defame1297
email: defame1297@rkdr.net email: defame1297@rkdr.net
url: https://git.dev.rkdr.net/Defame1297/ url: https://git.rkdr.net/Defame1297/
license: MIT license: MIT
homepage: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/gitea homepage: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/gitea
repository: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/gitea repository: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/gitea
keywords: keywords:
- gitea - gitea
- issues - issues

View File

@@ -9,7 +9,7 @@ apm is the only supported install path (ADR-0024). Declare this package in the c
```yaml ```yaml
dependencies: dependencies:
apm: apm:
- git: git@git.dev.rkdr.net:Defame1297/holocron.git - git: git@git.rkdr.net:Defame1297/holocron.git
path: plugins/kyberforge path: plugins/kyberforge
``` ```
@@ -19,7 +19,7 @@ Then:
apm install apm install
``` ```
The entry above is unpinned and tracks the remote's default branch — add `ref: <tag>` to pin a release. Registering the catalogue instead (`apm marketplace add git@git.dev.rkdr.net:Defame1297/holocron.git --name holocron`) gets you the `kyberforge@holocron` short name, but writes to `~/.apm/marketplaces.json` at user scope; the git+path object needs nothing beyond the manifest. The entry above is unpinned and tracks the remote's default branch — add `ref: <tag>` to pin a release. Registering the catalogue instead (`apm marketplace add git@git.rkdr.net:Defame1297/holocron.git --name holocron`) gets you the `kyberforge@holocron` short name, but writes to `~/.apm/marketplaces.json` at user scope; the git+path object needs nothing beyond the manifest.
**Native plugin installs do not work.** This package ships no per-plugin manifest and no flat content directories, so a host that installs it natively gets zero skills, agents and hooks — and Claude Code raises no error while doing it (ADR-0024). **Native plugin installs do not work.** This package ships no per-plugin manifest and no flat content directories, so a host that installs it natively gets zero skills, agents and hooks — and Claude Code raises no error while doing it (ADR-0024).

View File

@@ -1,13 +1,13 @@
name: kyberforge name: kyberforge
version: 2.0.0 version: 2.0.1
description: Skills and agents for creating, maintaining, and managing an apm plugin marketplace for Claude Code and GitHub Copilot. description: Skills and agents for creating, maintaining, and managing an apm plugin marketplace for Claude Code and GitHub Copilot.
author: author:
name: Defame1297 name: Defame1297
email: defame1297@rkdr.net email: defame1297@rkdr.net
url: https://git.dev.rkdr.net/Defame1297/ url: https://git.rkdr.net/Defame1297/
license: MIT license: MIT
homepage: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/kyberforge homepage: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/kyberforge
repository: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/kyberforge repository: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/kyberforge
keywords: keywords:
- marketplace - marketplace
- plugin - plugin

View File

@@ -1,13 +1,13 @@
name: lint name: lint
version: 1.1.8 version: 1.1.9
description: Skills and agents for configuring and running linters. description: Skills and agents for configuring and running linters.
author: author:
name: Defame1297 name: Defame1297
email: defame1297@rkdr.net email: defame1297@rkdr.net
url: https://git.dev.rkdr.net/Defame1297/ url: https://git.rkdr.net/Defame1297/
license: MIT license: MIT
homepage: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/lint homepage: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/lint
repository: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/lint repository: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/lint
keywords: keywords:
- lint - lint
- style - style

View File

@@ -1,13 +1,13 @@
name: onedev name: onedev
version: 0.1.0 version: 0.1.1
description: Skills and agents for working with a OneDev forge through the TOD CLI — the forge's own objects, as distinct from the local git clone. description: Skills and agents for working with a OneDev forge through the TOD CLI — the forge's own objects, as distinct from the local git clone.
author: author:
name: Defame1297 name: Defame1297
email: defame1297@rkdr.net email: defame1297@rkdr.net
url: https://git.dev.rkdr.net/Defame1297/ url: https://git.rkdr.net/Defame1297/
license: MIT license: MIT
homepage: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/onedev homepage: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/onedev
repository: https://git.dev.rkdr.net/Defame1297/holocron/src/branch/main/plugins/onedev repository: https://git.rkdr.net/Defame1297/holocron/src/branch/main/plugins/onedev
keywords: keywords:
- onedev - onedev
- tod - tod