Summary
skills-repo submodule in main points at a missing commit, so git submodule update --init fails.
Details
On main, the repo lists:
skills-repo @ 2e3f713 (see GitHub UI)
But that SHA does not exist in the submodule remote:
- Submodule URL:
https://github.com/fast-agent-ai/skills
https://github.com/fast-agent-ai/skills/commit/2e3f713b782e6a54549876dc6beea02ba33e0149 returns 404
git ls-remote --refs https://github.com/fast-agent-ai/skills currently shows 8bebe566... refs/heads/main
Repro
git clone https://github.com/evalstate/fast-agent
cd fast-agent
git submodule update --init skills-repo
Actual
fatal: remote error: upload-pack: not our ref 2e3f713b782e6a54549876dc6beea02ba33e0149
fatal: Fetched in submodule path 'skills-repo', but it did not contain 2e3f713b782e6a54549876dc6beea02ba33e0149.
Expected
Submodule commit should exist in fast-agent-ai/skills, or the pointer in fast-agent should be updated to a valid commit.
Suggested fix
Either:
- Restore/push the missing
2e3f713b... commit to fast-agent-ai/skills, or
- Update the submodule pointer in
evalstate/fast-agent to an existing commit (e.g. current fast-agent-ai/skills main HEAD).
Summary
skills-reposubmodule inmainpoints at a missing commit, sogit submodule update --initfails.Details
On
main, the repo lists:skills-repo @ 2e3f713(see GitHub UI)But that SHA does not exist in the submodule remote:
https://github.com/fast-agent-ai/skillshttps://github.com/fast-agent-ai/skills/commit/2e3f713b782e6a54549876dc6beea02ba33e0149returns 404git ls-remote --refs https://github.com/fast-agent-ai/skillscurrently shows8bebe566... refs/heads/mainRepro
git clone https://github.com/evalstate/fast-agent cd fast-agent git submodule update --init skills-repoActual
Expected
Submodule commit should exist in
fast-agent-ai/skills, or the pointer infast-agentshould be updated to a valid commit.Suggested fix
Either:
2e3f713b...commit tofast-agent-ai/skills, orevalstate/fast-agentto an existing commit (e.g. currentfast-agent-ai/skillsmainHEAD).