squad(224): consolidate identity/now.md — move metadata to YAML front-matter - #230
Merged
Conversation
…-matter Removes the quasi-YAML key:value pairs (focus_area, active_issues) from the Markdown body and moves them into the proper YAML front-matter block alongside updated_at. This eliminates the format inconsistency where some fields were in front-matter and others were in markdown body. Also updates focus_area and active_issues to reflect current work queue. Closes #224 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
🏗️ PR Added to Squad Triage QueueThis PR has been labeled with Next steps:
|
There was a problem hiding this comment.
Pull request overview
This PR consolidates .squad/identity/now.md by making updated_at, focus_area, and active_issues exclusively YAML front-matter metadata, removing the duplicated “quasi-YAML” fields from the Markdown body to restore a single machine-readable source of truth.
Changes:
- Moved
focus_areaandactive_issuesinto the YAML front-matter alongsideupdated_at. - Removed the duplicated key/value metadata lines from the Markdown body.
- Updated metadata values to reflect the current work queue and today’s timestamp.
Comment on lines
7
to
8
| # Focus Area | ||
|
|
Contributor
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #230 +/- ##
=======================================
Coverage 78.64% 78.64%
=======================================
Files 43 43
Lines 721 721
Branches 112 112
=======================================
Hits 567 567
Misses 108 108
Partials 46 46 🚀 New features to boost your workflow:
|
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
Resolves the format inconsistency in
.squad/identity/now.mdwhereupdated_atlived in the YAML front-matter whilefocus_areaandactive_issueswere formatted as quasi-YAML in the Markdown body.Closes #224
Changes
focus_areaandactive_issuesinto the YAML front-matter block alongsideupdated_atfocus_areaandactive_issuesvalues to reflect current work queue (Squad maintenance: consolidate identity/now.md (remove YAML/Markdown duplication) #224, Squad maintenance: audit all member charters for completeness (Identity/Expertise/Boundaries/Critical Rules) #226, docs: fix markdown format and link violations across all *.md files #227)updated_atto todayDecision
Chose YAML front-matter only for machine-readable fields —
updated_at,focus_area,active_issuesare all metadata and belong in the front-matter. The Markdown body retains only human-readable narrative content.Co-authored-by: Copilot 223556219+Copilot@users.noreply.github.com