fix(skills): add YAML frontmatter delimiters to 29 SKILL.md files#178
Open
mkhalif-xyz wants to merge 1 commit into
Open
fix(skills): add YAML frontmatter delimiters to 29 SKILL.md files#178mkhalif-xyz wants to merge 1 commit into
mkhalif-xyz wants to merge 1 commit into
Conversation
29 skills across private-equity, equity-research, investment-banking, and wealth-management plugins were shipping without YAML frontmatter delimiters. The files opened with a Markdown heading followed by a literal "description:" line in the body, so Claude Code could not reliably index name/description and the skills did not auto-trigger. This commit wraps the existing name (derived from the directory) and description in proper "---" delimiters and removes the in-body description line. No semantic content changes. scripts/sync-agent-skills.py then propagated the fix into 12 bundled copies under agent-plugins/. scripts/check.py passes. Affected verticals: - private-equity (10): ai-readiness, dd-checklist, dd-meeting-prep, deal-screening, deal-sourcing, ic-memo, portfolio-monitoring, returns-analysis, unit-economics, value-creation-plan - equity-research (7): catalyst-calendar, earnings-preview, idea-generation, model-update, morning-note, sector-overview, thesis-tracker - investment-banking (6): buyer-list, cim-builder, deal-tracker, merger-model, process-letter, teaser - wealth-management (6): client-report, client-review, financial-plan, investment-proposal, portfolio-rebalance, tax-loss-harvesting Co-Authored-By: Claude Opus 4.7 (1M context) <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.
Summary
private-equity,equity-research,investment-banking, andwealth-managementship without YAML frontmatter delimiters. The files start with a Markdown heading followed by a literal `description:` line in the body, so Claude Code cannot reliably index `name`/`description` and the skills don't auto-trigger.Affected verticals
Before / after
Before (e.g. `private-equity/skills/ic-memo/SKILL.md`):
```
Investment Committee Memo
description: Draft a structured investment committee memo for PE deal approval...
```
After:
```
name: ic-memo
description: "Draft a structured investment committee memo for PE deal approval..."
Investment Committee Memo
```
Test plan
🤖 Generated with Claude Code