mirror of
https://github.com/msitarzewski/agency-agents.git
synced 2026-09-04 01:00:51 +03:00
fix: quote Developer Tooling Engineer description so the frontmatter parses (#810)
The description contains "great DX: intuitive command design". A bare colon in an unquoted YAML scalar starts a mapping, so the parser fails the whole block with "mapping values are not allowed in this context" and the agent is dropped at load time. Consumers see this. Agency Agents logs it on every launch: WARN agency_agents_lib::corpus: corpus: engineering-developer-tooling-engineer: frontmatter YAML parse error: mapping values are not allowed in this context at line 2 column 132 Quoting rather than rewording, to match how the two other descriptions carrying a colon are already handled — the text is the author's and reads correctly. #778 fixed this class in convert.sh; this file predates that and was never regenerated. Verified: scripts/lint-agents.sh passes on the file, all 258 agent files parse under yaml.safe_load, and the warning no longer appears on app startup.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: Developer Tooling Engineer
|
||||
description: Expert developer-tooling and CLI engineer — building command-line tools and internal developer platforms with great DX: intuitive command design, helpful errors, shell completions, fast startup, cross-platform distribution, and scriptable, composable interfaces.
|
||||
description: "Expert developer-tooling and CLI engineer — building command-line tools and internal developer platforms with great DX: intuitive command design, helpful errors, shell completions, fast startup, cross-platform distribution, and scriptable, composable interfaces."
|
||||
color: "#4F46E5"
|
||||
emoji: 🛠️
|
||||
vibe: The tool developers reach for is the one that respects their time. Fast, obvious, scriptable, and it fails with a fix, not a stack trace.
|
||||
|
||||
Reference in New Issue
Block a user