Add Healthcare SEO Metadata agent and validation script - #2
Open
dariank38 wants to merge 1 commit into
Open
Conversation
- New agent: generates page title, meta description, URL slug, and H1
for healthcare web pages, with hard character bounds and the {PIPE}
token convention for Copilot Studio.
- scripts/validate.py: checks every agent for the 8K instruction-text
limit (counting only the instruction section, unlike wc -c which
over-counts frontmatter and organizational headings), literal pipe
characters, markdown tables, and frontmatter completeness.
- CLAUDE.md: point the post-edit check at the validator and document
why it replaces wc -c.
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 this adds
New agent:
agents/healthcare-seo-metadata.md(draft status)Generates SEO metadata — page title, meta description, URL slug, and H1 — for healthcare web pages from pasted copy, a draft, or an outline. It complements the Healthcare Web Content agent by covering the metadata step before Sitecore publication:
{PIPE}token convention for the vertical bar in title tags, converted to the literal character only at output time.New script:
scripts/validate.pyRun
python scripts/validate.pyto check every agent inagents/for:## Instructionssection, which is what actually gets pasted into Copilot Studio.wc -ccounts the whole file (frontmatter, Purpose section, organizational headings) and over-counts.|characters (should be{PIPE}— Copilot Studio strips/corrupts pipes).All four agents currently pass.
CLAUDE.mdis updated to point the post-edit check at the validator and document why it replaceswc -c.