.agents/skills/migrate-internal-package/SKILL.md
Move a package from another TryGhost repository into Ghost without losing its history or creating a period where neither repository owns it. Keep migration mechanics separate from Ghost's lifetime package standards.
Explain every cross-repository or administrative action before it happens.
Before changing either repository, record the source repository, its default branch, the package path within it, the destination path in Ghost, and whether the package has been published to npm. Then:
workspace:*.Publication or download counts alone do not prove that a package must remain a supported public API. If supported external consumers still need new releases, stop: this internal-only workflow is the wrong publishing model.
Keep the history import and modernization separate. The import establishes ownership and provenance; later commits can modernize code without obscuring the move.
Read
references/history-and-merge.md completely
before manipulating history.
Use an unsquashed git subtree import from the recorded source repository and
package path. Do not copy the current files, pass --squash, or recreate old
commits manually.
After the subtree commit, add focused integration commits that:
workspace:*;pnpm;Verify that the subtree commit has two parents and that representative file history crosses into the source repository before opening the PR.
This is the exceptional PR. It must use GitHub's Create a merge commit method:
Make CI green, then stop at the merge checkpoint. If the merge-commit option is disabled, an authorized org admin should run:
.agents/skills/migrate-internal-package/scripts/merge-history-pr \
TryGhost/Ghost \
<pr-number> \
<source-split-tip> \
--confirm
An agent without admin authority should provide that exact handoff rather than attempting a workaround. The script performs preflight checks, records and temporarily changes the setting, uses the correct merge form, restores the setting, and verifies the resulting history.
Afterward, independently fetch main and confirm the source split tip is an
ancestor before starting source-repository cleanup.
Branch from the latest source default branch only after the Ghost import is
verified on main. Remove:
Search with both the npm name and directory name. The source-repository PR should link to the merged Ghost PR and state that Ghost now owns the implementation. Use that repository's normal merge policy; this PR does not contain imported ancestry.
If the package was published and new direct use is now unsupported, deprecate all historical versions rather than unpublishing them:
npm deprecate '@tryghost/<package>@*' \
'This package is now maintained as an internal Ghost workspace package. Existing versions remain available for older Ghost releases; direct use is unsupported.'
npm view @tryghost/<package> deprecated
This preserves installation for old Ghost releases. Authentication and OTP are human checkpoints; verify the public metadata after the authorized user runs the mutation.
Search .github/renovate.json5 and related release automation for rules that
still treat the package as sourced or released from the former repository or
npm. Prefer a small,
standalone cleanup PR so the later conversion remains focused.
Compare the package against packages/_template, current comparable internal
packages, and any canonical package guidance in the repository. Do not turn
this one-time migration skill into the source of lifetime package standards.
For a legacy lib/*.js package, preserve file lineage with three focused
commits:
Moved ... sources from lib to src — paths and path references only.Changed ... file extensions to TypeScript — mechanical renames and the
minimum compilation scaffolding.Converted ... to TypeScript — types, ESM semantics and cleanup.Use git diff --summary after mechanical commits and confirm Git recognizes
the files as renames. A small CommonJS forwarding shim may correctly appear as
a deletion when a real ESM export replaces it.
This modernization PR may be rebase-merged when the commits are independently valid and intentionally ordered. That does not alter the merge-commit requirement for the earlier subtree import.
Do not call the migration complete until:
main;At each boundary, distinguish what is merged from what is merely prepared and report the exact verification performed.
Do not use this workflow for packages that remain public, independently versioned, or supported for third-party use. This skill describes privileged operations but does not authorize them.