fix: clean YAML frontmatter output#71
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR fixes YAML frontmatter output formatting and prepares for a 1.1.0 release by bumping package versions and updating path conventions.
Key Changes:
- Implements clean YAML frontmatter output without JSON-like quoted keys or line wrapping
- Adds test coverage for frontmatter formatting
- Bumps skillport-core and skillport-mcp to version 1.1.0
- Standardizes skills directory path from
.agent/skillsto.skills - Adds new experimental skills (skill-evaluator, opus-4-5-migration, git-branch-cleanup)
- Removes deprecated .agent/skills content
Reviewed changes
Copilot reviewed 91 out of 102 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| packages/skillport-core/src/skillport/interfaces/cli/commands/meta.py | Core YAML frontmatter formatting fix with intelligent string quoting |
| tests/unit/test_meta_frontmatter_format.py | New test preventing regression of YAML formatting issues |
| packages/skillport-core/pyproject.toml | Version bump to 1.1.0 |
| packages/skillport-mcp/pyproject.toml | Version bump to 1.1.0 and dependency update |
| pyproject.toml | Root package version and workspace configuration updates |
| uv.lock | Lock file updates for version changes and workspace members |
| tests/unit/*.py | Test file updates for new .skills path convention |
| guide/*.md | Documentation updates for new path convention |
| .skills/experimental/* | New experimental skills added (evaluator, migration, cleanup) |
| .agent/skills/* | Deprecated skill files removed |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
5eb6f62 to
1cf7823
Compare
1cf7823 to
5012221
Compare
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 & Motivation
skillport meta setwas rewriting YAML frontmatter into JSON-like quoted keys (e.g.,"name":) and wrapping long strings using\\line continuations.This PR fixes the frontmatter writer so SKILL.md remains clean, readable YAML.
Also bumps non-root package versions to
1.1.0(next planned version).Changes
\\continuationspackages/skillport-coreandpackages/skillport-mcpversions to1.1.0and update pinned depsHow to Test
uv run ruff check . uv run pytest -q SKILLPORT_SKILLS_DIR=.skills SKILLPORT_EMBEDDING_PROVIDER=none uv run verify_server.pyChecklist