Feat/issue 93 cli visual redesign#129
Open
rizzoMartin wants to merge 7 commits into
Open
Conversation
…ription and truncate it if necessary
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.
Description
Implements the CLI visual redesign requested in #93.
Short descriptions in manifests
Added
short_descriptionfield to all 9 existing skill manifests.skillware listdisplays
short_descriptionwhen present, falling back to the first sentence ofdescriptiontruncated at 80 chars. No breaking changes to existing manifests.Pastel color theme
Applied the project's pastel palette to the
richtable using constants definedat module level for reuse: lavender headers and borders (
#C7CEEA), peach categorycolumn (
#FFDAC1), mint skill ID column (#B5EAD7). Table usesbox.SIMPLE_HEAVY.Interactive menu
Added
cmd_interactive()— launched whenskillwareis run with no arguments.Displays an ASCII splash screen with the version number, followed by a numbered
menu. Accepts both number (
1) and command name (list) input. Exits cleanlyon
q, empty input, orCtrl+C.pathsandtestare stubbed with a"not yet implemented" message for follow-on issues.
Type of Change (Matches Issue Templates)
manifest.yaml,skill.py, andinstructions.md)base_skill.py,loader.py, etc.)Checklist (all PRs)
python -m flake8 .andpytest tests/locally (or the subset relevant to this change).examples/README.mdis updated if this PR adds, renames, or removes a runnable script underexamples/.New or updated skill (complete only if this PR adds or changes a skill under
skills/)Skip this section for framework-only, documentation-only, or other PRs that do not touch the skill registry.
Bundle & metadata
skills/<category>/<skill_name>/(copied fromtemplates/python_skill/or equivalent).manifest.yamlhasname,version,description, validparameters, andconstitution.manifest.yamlincludesissuerwith realnameandemail(not template placeholders).issuer.githubandissuer.orgset when applicable.requirementsandenv_varsare documented when the skill needs them.Logic, cognition, and UI
skill.pyis deterministic Python (no arbitrary LLM-generated code paths).instructions.mdexplains when and how to use the skill.card.jsonis present and itsissuermatchesmanifest.yaml(nameandemailat minimum).Tests & loader
test_skill.pycovers execution and schema expectations.SkillLoader.load_skill("<category>/<skill_name>")succeeds (or missing deps are documented).Documentation & catalog
docs/skills/<skill_name>.mdexists or is updated (ID, Issuer, usage).docs/skills/README.mdlists the skill with ID and Issuer.Constitution & Safety (if adding or modifying a skill)
Related Issues
Fixes #93