-
Notifications
You must be signed in to change notification settings - Fork 15
feat: fix skill frontmatter for tessl validation #283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,29 +1,30 @@ | ||||||||||||||||||||||||||||||||||
| --- | ||||||||||||||||||||||||||||||||||
| name: ring:interviewing-user | ||||||||||||||||||||||||||||||||||
| name: interviewing-user | ||||||||||||||||||||||||||||||||||
| description: | | ||||||||||||||||||||||||||||||||||
| Proactive requirements gathering - systematically interviews the user to uncover | ||||||||||||||||||||||||||||||||||
| ambiguities, preferences, and constraints BEFORE implementation begins. | ||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||
| trigger: | | ||||||||||||||||||||||||||||||||||
| - User invokes /ring:interview-me command | ||||||||||||||||||||||||||||||||||
| - Claude detects significant ambiguity in requirements | ||||||||||||||||||||||||||||||||||
| - Multiple valid implementation paths exist with no clear winner | ||||||||||||||||||||||||||||||||||
| - User says "interview me", "ask me questions", "clarify with me" | ||||||||||||||||||||||||||||||||||
| - Task involves architecture decisions without clear direction | ||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||
| skip_when: | | ||||||||||||||||||||||||||||||||||
| - Requirements are already crystal clear | ||||||||||||||||||||||||||||||||||
| - User has provided detailed specifications | ||||||||||||||||||||||||||||||||||
| - Following an existing plan with explicit instructions | ||||||||||||||||||||||||||||||||||
| - Doubt can be resolved via doubt-triggered-questions (single question) | ||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||
| sequence: | ||||||||||||||||||||||||||||||||||
| before: [brainstorming, ring:writing-plans] | ||||||||||||||||||||||||||||||||||
| after: [] | ||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||
| related: | ||||||||||||||||||||||||||||||||||
| similar: [brainstorming] | ||||||||||||||||||||||||||||||||||
| uses: [doubt-triggered-questions] | ||||||||||||||||||||||||||||||||||
| metadata: | ||||||||||||||||||||||||||||||||||
| related: | ||||||||||||||||||||||||||||||||||
| similar: | ||||||||||||||||||||||||||||||||||
| - brainstorming | ||||||||||||||||||||||||||||||||||
| uses: | ||||||||||||||||||||||||||||||||||
| - doubt-triggered-questions | ||||||||||||||||||||||||||||||||||
| sequence: | ||||||||||||||||||||||||||||||||||
| before: | ||||||||||||||||||||||||||||||||||
| - brainstorming | ||||||||||||||||||||||||||||||||||
| - ring:writing-plans | ||||||||||||||||||||||||||||||||||
|
Comment on lines
+8
to
+15
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Normalize referenced skill names to This block mixes namespaced and non-namespaced skill identifiers. Use Suggested fix related:
similar:
- - brainstorming
+ - ring:brainstorming
uses:
- - doubt-triggered-questions
+ - ring:doubt-triggered-questions
sequence:
before:
- - brainstorming
+ - ring:brainstorming
- ring:writing-plansAs per coding guidelines, "Skill definitions MUST include YAML frontmatter and use proper skill invocation format (ring:skill-name) in documentation and examples". π Committable suggestion
Suggested change
π€ Prompt for AI Agents |
||||||||||||||||||||||||||||||||||
| after: [] | ||||||||||||||||||||||||||||||||||
| skip_when: | | ||||||||||||||||||||||||||||||||||
| - Requirements are already crystal clear | ||||||||||||||||||||||||||||||||||
| - User has provided detailed specifications | ||||||||||||||||||||||||||||||||||
| - Following an existing plan with explicit instructions | ||||||||||||||||||||||||||||||||||
| - Doubt can be resolved via doubt-triggered-questions (single question) | ||||||||||||||||||||||||||||||||||
| trigger: | | ||||||||||||||||||||||||||||||||||
| - User invokes /ring:interview-me command | ||||||||||||||||||||||||||||||||||
| - Claude detects significant ambiguity in requirements | ||||||||||||||||||||||||||||||||||
| - Multiple valid implementation paths exist with no clear winner | ||||||||||||||||||||||||||||||||||
| - User says "interview me", "ask me questions", "clarify with me" | ||||||||||||||||||||||||||||||||||
| - Task involves architecture decisions without clear direction | ||||||||||||||||||||||||||||||||||
| --- | ||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||
| # Interviewing User for Requirements | ||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move sequence keys out of
relatedto a dedicatedmetadata.sequenceblock.sequence_before/sequence_afterare currently nested undermetadata.related, which conflates two different concerns and can break schema-based consumers.Suggested fix
metadata: related: similar: - dispatching-parallel-agents - systematic-debugging - sequence_after: - - brainstorming - sequence_before: - - ring:writing-plans - - ring:executing-plans + sequence: + after: + - ring:brainstorming + before: + - ring:writing-plans + - ring:executing-plansAs per coding guidelines, "Skill definitions MUST include YAML frontmatter and use proper skill invocation format (ring:skill-name) in documentation and examples".
π Committable suggestion
π€ Prompt for AI Agents