Init skills#368
Merged
Merged
Conversation
Contributor
Reviewer's GuideDefines initial agent skills and domain language docs for the repo, wiring them into AGENTS.md, and bumps a few Charm ecosystem dependencies to newer patch/minor versions. Entity relationship diagram for GitHub issues and triage labelserDiagram
GITHUB_ISSUE ||--o{ TRIAGE_LABEL : has_label
GITHUB_ISSUE {
int number
string title
}
TRIAGE_LABEL {
string name
string canonical_role
}
Flow diagram for agent skills using domain docs and issue trackerflowchart TD
AgentSkill[Agent skill] --> Context[CONTEXT.md]
AgentSkill --> ADRs[docs/adr/]
AgentSkill --> AgentDocs[docs/agents/*]
AgentSkill --> IssueTracker[GitHub issue tracker]
IssueTracker --> GitHubIssues[GitHub Issues in lets-cli/lets]
GitHubIssues --> TriageLabels[Triage labels needs-triage, needs-info, ready-for-agent, ready-for-human, wontfix]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Contributor
There was a problem hiding this comment.
Hey - I've found 1 issue, and left some high level feedback:
- There’s quite a bit of overlap between
CONTEXT.mdandUBIQUITOUS_LANGUAGE.md; consider making one the single source of truth (with links or brief summaries in the other) to reduce the risk of terminology drifting out of sync over time.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- There’s quite a bit of overlap between `CONTEXT.md` and `UBIQUITOUS_LANGUAGE.md`; consider making one the single source of truth (with links or brief summaries in the other) to reduce the risk of terminology drifting out of sync over time.
## Individual Comments
### Comment 1
<location path="UBIQUITOUS_LANGUAGE.md" line_range="10" />
<code_context>
+| **Settings** | Per-user lets behavior stored in `~/.config/lets/config.yaml`. | Config, `lets.yaml`, project config |
+| **Project config** | Repository command and runtime configuration stored in `lets.yaml`. | Settings, user config |
+| **Theme** | A named visual style for lets help and styled error output. | Color scheme, palette |
+| **Default theme** | The standard lets theme. | Normal theme, builtin colors |
+| **ANSI theme** | A theme limited to broadly supported ANSI terminal colors. | Plain theme, basic colors |
+| **Synthwave theme** | A high-contrast neon lets theme. | Vaporwave, purple theme |
</code_context>
<issue_to_address>
**suggestion (typo):** Consider hyphenating “builtin” to “built-in” for clarity.
In the **Default theme** aliases, please change “builtin colors” to “built-in colors” to avoid it looking like a typo and to match common usage.
```suggestion
| **Default theme** | The standard lets theme. | Normal theme, built-in colors |
```
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
| | **Settings** | Per-user lets behavior stored in `~/.config/lets/config.yaml`. | Config, `lets.yaml`, project config | | ||
| | **Project config** | Repository command and runtime configuration stored in `lets.yaml`. | Settings, user config | | ||
| | **Theme** | A named visual style for lets help and styled error output. | Color scheme, palette | | ||
| | **Default theme** | The standard lets theme. | Normal theme, builtin colors | |
Contributor
There was a problem hiding this comment.
suggestion (typo): Consider hyphenating “builtin” to “built-in” for clarity.
In the Default theme aliases, please change “builtin colors” to “built-in colors” to avoid it looking like a typo and to match common usage.
Suggested change
| | **Default theme** | The standard lets theme. | Normal theme, builtin colors | | |
| | **Default theme** | The standard lets theme. | Normal theme, built-in colors | |
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 by Sourcery
Define and document agent skills, domain context, and issue workflows for the repo while updating UI-related dependencies.
New Features:
Enhancements: