chore: document skill workflows, replace tessl with skill-check#16
Merged
Conversation
- README: add Workflows section (ADR planning, build loop, refactoring, issue management, utilities) - CI: remove tessl lint/review/publish jobs (no-ops — no skill has a tile.json; publishing not wanted), add skill-check lint step - Remove tessl install from setup-env.sh and session-start hook - Add skill-check.config.json (unknown_fields rule off — model and argument-hint are valid Claude Code fields beyond the agentskills spec; security scan off — snyk-agent-scan needs a Snyk token) - explain skill: add 'Use when' phrasing to description Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (6)
💤 Files with no reviewable changes (1)
📝 WalkthroughWalkthroughThis PR replaces Tessl CLI linting with skill-check. A new configuration file enables skill-check validation, the CI workflow integrates the new linting step, local setup scripts remove Tessl references, and documentation is updated to describe the new workflow and validation toolchain. ChangesTessl to Skill-Check Linting Migration
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
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
Documents the skill workflows in the README and replaces the unused tessl integration with skill-check for skill validation.
Key changes
/draft-adr→/review-adr→/plan-adr), the build loop (/pick-issue→/review-code→/done→/resolve-pr), parallel epic execution, refactoring, issue management, and utilities.tessl-lint,tessl-review, andtessl-publishjobs. Lint/review were silently no-ops (they only process skills with atile.json, and none exist) and publishing isn't wanted. Added askill-checklint step (--fail-on-warning, GitHub annotations) to the validate job.scripts/setup-env.shand the session-start hook (was runningnpm install -g tesslon every session start).skill-check.config.json: disablesfrontmatter.unknown_fields(Claude Code supportsmodel/argument-hintbeyond the agentskills.io spec). Security scan stays off — its backend (snyk-agent-scan) now requires a Snyk account token; deliberate omission for a personal repo.All 19 skills score 100/100 on skill-check; validate.sh, markdownlint, and shellcheck all pass locally.
🤖 Generated with Claude Code
Summary by CodeRabbit
New Features
Documentation
Chores