chore: update AI workflow skills#24
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s AI workflow system for the Flutter template by renaming legacy skills, adding new planning/implementation/review skills, exposing Claude commands, and adding helper scripts for verification and linting.
Changes:
- Adds PRD, techspec, task planning, implementation, PR review/comment, PR creation, lint-format, and build-verify workflows.
- Renames legacy
flutter-template-*skills to shorter workflow names and updates references. - Adds Claude command wrappers, templates, permissions, and workflow discovery documentation.
Reviewed changes
Copilot reviewed 71 out of 71 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
README.md |
Updates AI skill references in setup/workflow docs. |
AGENTS.md |
Expands canonical skill discovery and creation guidance. |
.claude/CLAUDE.md |
Documents Claude skill symlink and slash-command discovery. |
.claude/settings.json |
Adds Claude read-deny rules for secrets/build artifacts. |
.claude/commands/build-verify.md |
Adds slash command wrapper for build verification. |
.claude/commands/create-pr.md |
Adds slash command wrapper for PR creation. |
.claude/commands/feature-data-flow.md |
Adds slash command wrapper for data-flow features. |
.claude/commands/feature-screen.md |
Adds slash command wrapper for screen creation. |
.claude/commands/implement.md |
Adds slash command wrapper for single-task implementation. |
.claude/commands/implement-tasks-sequence.md |
Adds slash command wrapper for task sequence implementation. |
.claude/commands/lint-format.md |
Adds slash command wrapper for lint/format. |
.claude/commands/pr-review.md |
Adds slash command wrapper for PR review. |
.claude/commands/prd.md |
Adds slash command wrapper for PRD creation. |
.claude/commands/project-setup.md |
Adds slash command wrapper for project setup. |
.claude/commands/release-builds.md |
Adds slash command wrapper for release builds. |
.claude/commands/release-prepare.md |
Adds slash command wrapper for release prep. |
.claude/commands/review-pr-comments.md |
Adds slash command wrapper for PR comment triage. |
.claude/commands/secrets-bootstrap.md |
Adds slash command wrapper for secrets workflow. |
.claude/commands/start-job.md |
Adds slash command wrapper for end-to-end pipeline. |
.claude/commands/tasks.md |
Adds slash command wrapper for task breakdown. |
.claude/commands/techspec.md |
Adds slash command wrapper for tech specs. |
.claude/commands/upgrade.md |
Adds slash command wrapper for upgrades. |
ai/templates/prd.md |
Adds PRD template. |
ai/templates/techspec.md |
Adds technical specification template. |
ai/templates/task-list.md |
Adds implementation task-list template. |
ai/templates/task.md |
Adds individual task template. |
ai/skills/build-verify/SKILL.md |
Adds build/test/analyze/format verification workflow. |
ai/skills/build-verify/scripts/verify.sh |
Adds build verification script. |
ai/skills/create-pr/SKILL.md |
Adds PR creation/update workflow. |
ai/skills/feature-data-flow/SKILL.md |
Renames skill and updates cross-reference. |
ai/skills/feature-screen/SKILL.md |
Renames screen skill. |
ai/skills/flutter-template-pr-review/SKILL.md |
Removes old PR review skill path. |
ai/skills/implement/SKILL.md |
Adds single-task implementation workflow. |
ai/skills/implement-tasks-sequence/SKILL.md |
Adds multi-task implementation orchestration workflow. |
ai/skills/lint_format/SKILL.md |
Adds lint/format workflow. |
ai/skills/lint_format/scripts/lint_format.sh |
Adds lint/format helper script. |
ai/skills/pr-review/SKILL.md |
Adds replacement PR review workflow. |
ai/skills/prd/SKILL.md |
Adds PRD creation workflow. |
ai/skills/project-setup/SKILL.md |
Renames setup skill and updates referenced skill name. |
ai/skills/release-builds/SKILL.md |
Renames release-build skill and archive script path references. |
ai/skills/release-builds/scripts/archive_ios_ipa.sh |
Updates usage path. |
ai/skills/release-prepare/SKILL.md |
Renames release preparation skill. |
ai/skills/review-pr-comments/SKILL.md |
Adds PR comment triage/resolution workflow. |
ai/skills/secrets-bootstrap/SKILL.md |
Renames secrets workflow. |
ai/skills/start-job/SKILL.md |
Adds end-to-end implementation pipeline workflow. |
ai/skills/tasks/SKILL.md |
Adds task breakdown workflow. |
ai/skills/techspec/SKILL.md |
Adds technical specification workflow. |
ai/skills/upgrade/SKILL.md |
Renames upgrade skill. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Improvements
Chores