feat(template): support agk template remove by name#19
Open
kunalkushwaha wants to merge 1 commit into
Open
Conversation
Previously `template remove` only accepted the full source path; passing a manifest name (e.g. "rag-agent") failed. This was a documented TODO. - Add CacheManager.FindByName / RemoveByName: match cached templates by manifest name or source, removing all cached versions. - `template remove <ref>` now tries name/source lookup first, then falls back to source-path removal, with a clear "not found" error. - Adds the registry package's first unit tests (find/remove/not-found). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
agk template removepreviously only accepted the full source path; passing a manifest name likerag-agentfailed. This was a documentedTODOincmd/template.go. Now you can remove a cached template by its name.This is feature A3 from the
FEATURES.mdroadmap.Changes
CacheManager.FindByName(ref)/RemoveByName(ref)— match cached templates by manifest name or source, removing all cached versions and reporting how many were removed.template remove <ref>tries the name/source lookup first, then falls back to source-path removal, with a cleartemplate "<ref>" not found in cacheerror.Before / After
Testing
go build,go vet,go test ./...,gofmtall green.FindByNameby name and by source, multi-versionRemoveByName, not-found).HOME: list → remove by name → empty, plus the not-found error path.🤖 Generated with Claude Code