This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a set of internal delivery/workflow Agent Skills plus a custom orchestrator agent under .github/ to standardize how changes are validated, delivered (dev -> main), and released (tag-based), including Dependabot and docs audits.
Changes:
- Introduces five internal workflow skills under
.github/skills/(repo context, change delivery, release tagging, Dependabot review, documentation audit). - Adds reference documents capturing repo structure, branch/release rules, and local validation (
gradlew, pre-push hook,act) commands. - Adds a custom agent (
applogger-delivery-engineer) that loads these skills and enforces the intended delivery/release process.
Reviewed changes
Copilot reviewed 19 out of 19 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| .github/skills/applogger-repo-context/SKILL.md | Skill definition for learning repo structure/branch/CI/release rules. |
| .github/skills/applogger-repo-context/references/repo-map.md | Repo top-level map and key SDK modules list. |
| .github/skills/applogger-repo-context/references/delivery-matrix.md | Branch policy + CI/release trigger matrix summary. |
| .github/skills/applogger-repo-context/references/command-baseline.md | Local validation + act + release tag command baseline. |
| .github/skills/applogger-release-tagging/SKILL.md | Skill definition for safe tag-based releases from main. |
| .github/skills/applogger-release-tagging/references/release-verification.md | Post-tag verification checklist for release workflow outputs. |
| .github/skills/applogger-release-tagging/references/release-sequence.md | Canonical release sequence and typical git commands. |
| .github/skills/applogger-documentation-audit/SKILL.md | Skill definition for auditing/updating docs after code/workflow changes. |
| .github/skills/applogger-documentation-audit/references/documentation-scope.md | Docs areas to review when auditing. |
| .github/skills/applogger-documentation-audit/references/audit-checklist.md | Checklist for identifying documentation drift. |
| .github/skills/applogger-dependabot-review/SKILL.md | Skill definition for structured Dependabot PR reviews. |
| .github/skills/applogger-dependabot-review/references/review-criteria.md | Criteria for assessing dependency-update risk. |
| .github/skills/applogger-dependabot-review/references/merge-policy.md | Merge/defer/close policy guidance for Dependabot PRs. |
| .github/skills/applogger-change-delivery/SKILL.md | Skill definition for end-to-end delivery flow (local validate → push dev → PR main). |
| .github/skills/applogger-change-delivery/references/local-validation.md | Baseline local validation + pre-push gate summary. |
| .github/skills/applogger-change-delivery/references/local-actions-validation.md | Guidance for running CI jobs locally with act. |
| .github/skills/applogger-change-delivery/references/documentation-gate.md | Documentation gate for delivery completion. |
| .github/skills/applogger-change-delivery/references/completion-checklist.md | Completion/commit checklist before delivery. |
| .github/agents/applogger-delivery-engineer.agent.md | Custom agent orchestrating the workflow by loading the internal skills. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+12
to
+16
| ## Skills to Load | ||
|
|
||
| Load the relevant workflow skills under `.github/skills/` based on the task: | ||
|
|
||
| 1. `applogger-repo-context` |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
Skills added
Validation