Skip to content

feat(skills): required_tools on all 37 skills, skill-code-create teaches required_tools, TUI WIP integrated - #359

Merged
Delqhi merged 2 commits into
mainfrom
feat/sota-skills-followup
Jun 17, 2026
Merged

feat(skills): required_tools on all 37 skills, skill-code-create teaches required_tools, TUI WIP integrated#359
Delqhi merged 2 commits into
mainfrom
feat/sota-skills-followup

Conversation

@Delqhi

@Delqhi Delqhi commented Jun 17, 2026

Copy link
Copy Markdown
Collaborator

Summary

Followup to PR #345. Completes the SOTA skill infrastructure.

Changes

required_tools on all 37 skills (28 new)

skill-code-create teaches required_tools

  • SKILL.md: new subsection explaining what/when/how for required_tools
  • frameworks/standards.md: frontmatter key list + layout + constraints updated
  • templates/prompt.md: constraint line for required_tools YAML list
  • templates/output.md: naming section includes required_tools
  • tasks/workflow.md: Task 2b for required_tools frontmatter

skill-code-graph fix

  • lifecycle moved from metadata: to top-level frontmatter (validator rejected it in strict mode)

TUI WIP integrated

  • 12 untracked WIP files integrated: model_switcher, help_overlay, file_picker, mouse, render_cache, theme_custom, crash_recovery, accessibility, plugin, dogfood_test
  • go build ./cmd/sin-code/... passes clean (including TUI)
  • go test -race -count=1 ./cmd/sin-code/tui/... passes

Doc consistency (8 → 11 targets)

  • skilldist.doc.md: 4 stale references fixed
  • docs/release-notes/v3.20.0.md: 8 → 11 agent families

Test results

go build ./cmd/sin-code/...     — PASS (including TUI)
skillmgr     — ok  1.299s
skilldist    — ok  1.466s
profile      — ok  1.865s
loopbuilder  — ok 12.553s
validator    — 37/37 skills pass --strict, 0 failed

Files changed

52 files changed, 2759 insertions(+), 19 deletions(-)

…hes required_tools, TUI WIP integrated, doc consistency

- Add required_tools frontmatter to 28 remaining skills (9 already had it)
- All 37 bundled skills now declare their SIN tool dependencies
- skill-code-create: templates/standards/workflow/prompt/output updated to
  teach required_tools field to agents scaffolding new skills
- skill-code-graph: lifecycle moved to top-level frontmatter (was nested)
- TUI WIP files integrated: model_switcher, help_overlay, file_picker,
  mouse, render_cache, theme_custom, crash_recovery — build passes clean
- skilldist.doc.md: 8 → 11 targets in 4 places
- docs/release-notes/v3.20.0.md: 8 → 11 agent families
- Validator: 37/37 skills pass --strict, 0 failed
- Build: go build ./cmd/sin-code/... passes clean (including TUI)
- Tests: skillmgr, skilldist, profile, loopbuilder all pass -race -count=1
@vercel

vercel Bot commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
sin-code Ready Ready Preview, Comment, Open in v0 Jun 17, 2026 10:17pm

…owup

# Conflicts:
#	skills/github-skills/skill-github-readme/SKILL.md
@github-actions

Copy link
Copy Markdown

🏆 CEO Audit — A+ (100.0/100)

Metric Value
Grade A+
Score 100.0/100
Critical findings 0
High findings 0
Profile QUICK
Min grade gate B

📥 Download full report (Markdown)
📊 Download SARIF (for Code Scanning)

Run ~/.config/opencode/skills/ceo-audit/scripts/audit.sh . --profile=QUICK locally to reproduce.

@github-actions

Copy link
Copy Markdown

🏆 CEO Audit — A+ (100.0/100)

Metric Value
Grade A+
Score 100.0/100
Critical findings 0
High findings 0
Medium findings 0
Profile QUICK
Min grade gate B

📥 Download full report (Markdown)

Run ID: 27723309127 · Commit: ${github.sha}

Run ~/.config/opencode/skills/ceo-audit/scripts/audit.sh . --profile=QUICK locally to reproduce.

func crashRecoveryPath() string {
home, _ := os.UserHomeDir()
dir := filepath.Join(home, ".local", "share", "sin-code")
_ = os.MkdirAll(dir, 0o755)
data, err := json.MarshalIndent(state, "", " ")
if err != nil { return err }
dir := filepath.Dir(r.path)
if err := os.MkdirAll(dir, 0o755); err != nil { return err }
dir := filepath.Dir(r.path)
if err := os.MkdirAll(dir, 0o755); err != nil { return err }
tmpPath := r.path + ".tmp"
if err := os.WriteFile(tmpPath, data, 0o644); err != nil { return err }
continue
}
manifestPath := filepath.Join(dir, entry.Name(), "plugin.json")
data, err := os.ReadFile(manifestPath)
}

func LoadCustomTheme(path string) (*Theme, error) {
data, err := os.ReadFile(path)
return fmt.Errorf("marshal theme: %w", err)
}
dir := filepath.Dir(path)
if err := os.MkdirAll(dir, 0o755); err != nil {
if err := os.MkdirAll(dir, 0o755); err != nil {
return fmt.Errorf("create theme dir: %w", err)
}
return os.WriteFile(path, data, 0o644)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants