@carecard/validate 3.28.0 → 3.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/skills/carecard-must-do/SKILL.md +93 -0
- package/.agents/skills/carecard-workspace-standards/SKILL.md +37 -33
- package/.agents/skills/github-pr-create-update/SKILL.md +132 -167
- package/.agents/skills/github-pr-create-update/agents/openai.yaml +4 -4
- package/.agents/skills/github-pr-merge-cleanup/SKILL.md +220 -219
- package/.agents/skills/github-pr-merge-cleanup/agents/openai.yaml +4 -4
- package/.agents/skills/pkg-publish/SKILL.md +56 -7
- package/.agents/skills/pkg-validate-coding-standards-and-best-practices/SKILL.md +10 -3
- package/.agents/skills/pkg-validate-validation-library/SKILL.md +33 -32
- package/.codex/AGENTS.md +16 -4
- package/AGENTS.md +13 -1
- package/CLAUDE.md +43 -0
- package/package.json +3 -3
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: carecard-must-do
|
|
3
|
+
description: 'Non-negotiable startup requirements for every agent, including Codex, Claude, other assistants, and delegated agents. Load first whenever beginning or resuming any task to govern questions, visible working copies, and agent-named branches.'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# CareCard Must Do
|
|
7
|
+
|
|
8
|
+
## Mandatory for every agent
|
|
9
|
+
|
|
10
|
+
Every agent must read and follow this skill before beginning or resuming work
|
|
11
|
+
in this repository. This applies regardless of provider, product, model, role,
|
|
12
|
+
or invocation method, including Codex, Claude, other assistants, and delegated
|
|
13
|
+
agents. Planning, questions, read-only investigation, coding, review,
|
|
14
|
+
documentation, validation, and Git operations are all covered.
|
|
15
|
+
|
|
16
|
+
Load this skill first, then the repository's mandatory engineering standards,
|
|
17
|
+
then the specialist skills relevant to the task. Continue applying these rules
|
|
18
|
+
throughout the task. When entering another repository, read its local copy.
|
|
19
|
+
When delegation is already authorized, give delegated agents this same startup
|
|
20
|
+
requirement. An agent without automatic skill discovery must open this file
|
|
21
|
+
explicitly; its lack of discovery support is not an exemption.
|
|
22
|
+
|
|
23
|
+
## Explain the issue and solutions before asking
|
|
24
|
+
|
|
25
|
+
Before every user-facing question, including a clarification, preference,
|
|
26
|
+
approval request, or question presented through a tool, explain:
|
|
27
|
+
|
|
28
|
+
- the relevant facts and what is uncertain or needs to change;
|
|
29
|
+
- the issue and why the user's answer is needed;
|
|
30
|
+
- the viable solutions or next steps and their practical consequences; and
|
|
31
|
+
- the recommended solution and the reason for that recommendation.
|
|
32
|
+
|
|
33
|
+
Make the explanation detailed enough for a first-year engineering student to
|
|
34
|
+
understand. Define necessary technical terms and distinguish observed facts
|
|
35
|
+
from assumptions. Explain concrete effects rather than relying on unexplained
|
|
36
|
+
jargon. Do not invent alternatives when only one practical next step exists.
|
|
37
|
+
|
|
38
|
+
Present the question after the explanation. Resolve discoverable facts through
|
|
39
|
+
appropriate inspection before asking the user to supply them. This requirement
|
|
40
|
+
does not create a reason to ask unnecessary questions or repeat an approval
|
|
41
|
+
already granted for the action.
|
|
42
|
+
|
|
43
|
+
## Keep the working repository visible
|
|
44
|
+
|
|
45
|
+
Make changes in the normal repository directory the user is working in. Do not
|
|
46
|
+
routinely replace it with a clone, linked worktree, detached checkout, or other
|
|
47
|
+
working copy under `/tmp`, a system temporary directory, a cache, or a hidden or
|
|
48
|
+
undisclosed location. A branch names a line of work; a worktree or clone creates
|
|
49
|
+
another working directory. Do not use either to hide where changes are made.
|
|
50
|
+
|
|
51
|
+
A separate working directory is permitted only for a compelling technical
|
|
52
|
+
reason, such as isolation that is necessary to protect unrelated active work.
|
|
53
|
+
Before creating it, explain why the normal checkout cannot safely serve the
|
|
54
|
+
task, disclose the exact directory and branch, and explain how the finished
|
|
55
|
+
work will remain accessible in the normal repository. Convenience alone is
|
|
56
|
+
not a compelling reason. This disclosure adds no separate approval step;
|
|
57
|
+
existing authorization requirements still apply.
|
|
58
|
+
|
|
59
|
+
Keep ownership and handoff explicit, preserve unrelated work, and clean up only
|
|
60
|
+
resources owned by the task when cleanup is authorized. Ordinary temporary
|
|
61
|
+
logs, build artifacts, and test fixtures are permitted when they are not used
|
|
62
|
+
as an undisclosed replacement working repository.
|
|
63
|
+
|
|
64
|
+
## Work on an agent-named branch
|
|
65
|
+
|
|
66
|
+
Before changing repository files, create and switch to a task-specific branch
|
|
67
|
+
named `<agent-name>/<task-name>` in the owning repository. Use the agent's
|
|
68
|
+
recognizable lowercase name and a descriptive task name, such as
|
|
69
|
+
`codex/carecard-must-do`, `claude/fix-login`, or `junie/update-validation`.
|
|
70
|
+
Reuse an existing agent-named branch only when continuing that same task.
|
|
71
|
+
Read-only investigation and planning do not require creating a branch.
|
|
72
|
+
|
|
73
|
+
Identify the repository directory and working branch before making changes.
|
|
74
|
+
Preserve existing commits and unrelated local changes. Start new work from
|
|
75
|
+
freshly fetched `origin/main`, or rebase continuing work onto it when needed.
|
|
76
|
+
Fetch again before every source-branch push and rebase when the branch does
|
|
77
|
+
not already contain the latest `origin/main`.
|
|
78
|
+
|
|
79
|
+
Follow the repository's remaining Git, validation, and authorization rules.
|
|
80
|
+
Branch creation does not authorize pushing, merging, or deleting branches.
|
|
81
|
+
Never delete local or remote `main`, and never force-push to remote `main`.
|
|
82
|
+
|
|
83
|
+
## Existing repository isolation contract
|
|
84
|
+
|
|
85
|
+
Non-negotiable repository isolation rule: Every repository must run its Husky
|
|
86
|
+
hooks and tests using only files, code, fixtures, dependencies, and services
|
|
87
|
+
contained within that repository. Tests and Husky scripts must not import,
|
|
88
|
+
require, read, execute, or otherwise depend on sibling repositories or paths
|
|
89
|
+
outside the repository root. app-e2e-tests is the only exception because
|
|
90
|
+
cross-repository end-to-end testing is its explicit responsibility.
|
|
91
|
+
|
|
92
|
+
Also apply [$carecard-workspace-standards](../carecard-workspace-standards/SKILL.md)
|
|
93
|
+
for the mandatory TDD and code organization rules.
|
|
@@ -7,6 +7,9 @@ Non-negotiable root-cause solution rule: Always identify and solve the verified
|
|
|
7
7
|
|
|
8
8
|
# CareCard Workspace Standards
|
|
9
9
|
|
|
10
|
+
First read [carecard-must-do](../carecard-must-do/SKILL.md); it is mandatory for every agent and task.
|
|
11
|
+
Then read the [repository engineering standards](../pkg-validate-coding-standards-and-best-practices/SKILL.md) before following this workflow.
|
|
12
|
+
|
|
10
13
|
Mandatory companion: load
|
|
11
14
|
`$pkg-validate-coding-standards-and-best-practices` before this skill for every
|
|
12
15
|
task in this repository.
|
|
@@ -53,7 +56,7 @@ Use before modifying, testing, reviewing, or debugging any CareCard workspace re
|
|
|
53
56
|
## When To Use
|
|
54
57
|
|
|
55
58
|
- Use before modifying, testing, reviewing, or debugging any CareCard workspace repository or cross-repository contract.
|
|
56
|
-
- Use as the
|
|
59
|
+
- Use as shared context after `carecard-must-do` and the repository engineering standards, before selecting narrower specialist skills.
|
|
57
60
|
|
|
58
61
|
## When Not To Use
|
|
59
62
|
|
|
@@ -172,7 +175,14 @@ config.
|
|
|
172
175
|
|
|
173
176
|
## Remote Git Operations Guardrail
|
|
174
177
|
|
|
175
|
-
|
|
178
|
+
Fetches needed to establish a fresh `origin/main` at task start and before a
|
|
179
|
+
source-branch push are authorized without a separate approval question. Commits,
|
|
180
|
+
pushes, PR mutations, and branch cleanup require an authorized task; a request
|
|
181
|
+
for local work alone does not authorize publication. An authorized squash merge
|
|
182
|
+
into `main` includes the merged-source cleanup, local `main` update, and
|
|
183
|
+
`development` synchronization below unless the user explicitly says otherwise.
|
|
184
|
+
Never delete local or remote `main`, or force-push to remote `main`, including
|
|
185
|
+
with `--force-with-lease`.
|
|
176
186
|
|
|
177
187
|
## Commit Continuation Rule
|
|
178
188
|
|
|
@@ -183,37 +193,31 @@ making a new commit in the affected repository.
|
|
|
183
193
|
|
|
184
194
|
## Agent Guidance Git Workflow
|
|
185
195
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
git ls-remote --heads origin feature/codex
|
|
212
|
-
```
|
|
213
|
-
|
|
214
|
-
Do not commit or push `.agents` guidance changes directly from `development`
|
|
215
|
-
or `main`. Do not stage unrelated files, generated output, dependency folders,
|
|
216
|
-
build artifacts, logs, or `.DS_Store`.
|
|
196
|
+
Work from the owning repository root and stage only intended guidance changes.
|
|
197
|
+
Use freshly fetched `origin/main` as the default base. Start `<agent-name>/<task-name>`
|
|
198
|
+
from it, or rebase existing work when it does not already contain the latest
|
|
199
|
+
`origin/main`. An explicit user instruction to use the current or another
|
|
200
|
+
working branch overrides the default `<agent-name>/<task-name>` selection.
|
|
201
|
+
|
|
202
|
+
Fetch again before every source-branch push and rebase only when the branch
|
|
203
|
+
does not already contain the latest `origin/main`. Required fetches need no
|
|
204
|
+
separate approval; commits, pushes, PR mutations, and cleanup require an
|
|
205
|
+
authorized task. A local guidance edit does not authorize publishing it.
|
|
206
|
+
|
|
207
|
+
For an authorized merge, create or reuse the PR into `main`, run applicable
|
|
208
|
+
validation, and squash-merge; administrator privileges may be used without
|
|
209
|
+
GitHub reviews. Verify the merge and delete its source branch remotely and
|
|
210
|
+
locally after checking for newer unmerged work. Then fast-forward local `main`
|
|
211
|
+
and replace local and remote branches named exactly `development` with the
|
|
212
|
+
latest remote `main` commit, using an explicit observed-commit
|
|
213
|
+
`--force-with-lease` remotely. Create a missing development counterpart when
|
|
214
|
+
either existed; leave repositories with neither unchanged. If development was
|
|
215
|
+
the merged source, recreate it from the new main. Verify commit parity and
|
|
216
|
+
cleanup; preserve dirty worktrees and report conflicts or rejected leases.
|
|
217
|
+
|
|
218
|
+
Never delete local or remote `main` or force-push to remote `main`, including
|
|
219
|
+
with `--force-with-lease`. Guard exact destination refs before deleting or
|
|
220
|
+
forcing any branch. Do not amend commits or stage unrelated files.
|
|
217
221
|
|
|
218
222
|
## Shared Packages And API Contracts
|
|
219
223
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: github-pr-create-update
|
|
3
|
-
description: 'Use
|
|
3
|
+
description: 'Use when asked to push, create, update, or ready a GitHub pull request. Default to main, fetch origin/main at the start and before source pushes, rebase when needed, and preserve main from deletion or force pushes.'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
Non-negotiable root-cause solution rule: Always identify and solve the verified root cause, use the stronger solution, and deliver a correct, durable, production-quality result. Never treat a temporary workaround, resource increase, retry, suppression, bypass, or symptom-only patch as completion. Validate the root-cause fix against the real failing workflow and prove the end state.
|
|
@@ -17,172 +17,137 @@ Non-negotiable error and warning rule: Never suppress, silence, hide, downgrade,
|
|
|
17
17
|
|
|
18
18
|
Non-negotiable code organization rule: Functions with the same or equivalent behavior must use the same or clearly corresponding descriptive names across CareCard repositories, and equivalent functionality must live in files with the same names within each repository's established architecture. No backward compatibility names, aliases, or duplicate locations are allowed.
|
|
19
19
|
|
|
20
|
-
##
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
```sh
|
|
152
|
-
pr_number="$(gh pr list \
|
|
153
|
-
--head "$branch" \
|
|
154
|
-
--base "$base" \
|
|
155
|
-
--state open \
|
|
156
|
-
--json number \
|
|
157
|
-
--jq '.[0].number // empty')"
|
|
158
|
-
```
|
|
159
|
-
|
|
160
|
-
8. If there is no PR, create one against the selected base and capture the new
|
|
161
|
-
PR number:
|
|
162
|
-
|
|
163
|
-
```sh
|
|
164
|
-
pr_url="$(gh pr create \
|
|
165
|
-
--base "$base" \
|
|
166
|
-
--head "$branch" \
|
|
167
|
-
--title "$title" \
|
|
168
|
-
--body "$body")"
|
|
169
|
-
pr_number="$(gh pr view "$pr_url" --json number --jq '.number')"
|
|
170
|
-
```
|
|
171
|
-
|
|
172
|
-
9. If a PR exists, mark it ready when it is a draft, then keep the title
|
|
173
|
-
descriptive:
|
|
174
|
-
|
|
175
|
-
```sh
|
|
176
|
-
is_draft="$(gh pr view "$pr_number" --json isDraft --jq '.isDraft')"
|
|
177
|
-
if [ "$is_draft" = "true" ]; then
|
|
178
|
-
gh pr ready "$pr_number"
|
|
179
|
-
fi
|
|
180
|
-
gh pr edit "$pr_number" --title "$title"
|
|
181
|
-
```
|
|
182
|
-
|
|
183
|
-
10. Final response should include the PR URL, selected base branch, whether a
|
|
184
|
-
rebase was performed, whether an existing PR was reused or marked ready,
|
|
185
|
-
and any validation that could not be run.
|
|
20
|
+
## Default Git Policy
|
|
21
|
+
|
|
22
|
+
Apply these defaults unless the user explicitly specifies otherwise. The
|
|
23
|
+
prohibition on deleting or force-pushing `main` always applies.
|
|
24
|
+
|
|
25
|
+
1. Use `main` as the PR base and freshly fetched `origin/main` as the source of
|
|
26
|
+
truth. `origin/HEAD`, a stale local `main`, and the presence of `development`
|
|
27
|
+
do not change this default. If remote `main` is missing or cannot be fetched,
|
|
28
|
+
report the blocker instead of selecting another base.
|
|
29
|
+
2. At task start, fetch `origin/main`, then create new work from that commit or
|
|
30
|
+
rebase the existing working branch onto it when needed. Honor an explicit
|
|
31
|
+
working-branch instruction; it changes branch selection, not freshness.
|
|
32
|
+
3. Fetch again before every source-branch push. Rebase when the working branch
|
|
33
|
+
does not already contain the latest `origin/main`; a clean mergeability
|
|
34
|
+
check is not proof that rebasing is unnecessary. If it already contains that
|
|
35
|
+
commit, no rebase is needed. The direct `development` replacement below is a
|
|
36
|
+
ref synchronization, not a source-branch rebase.
|
|
37
|
+
4. Squash-merge into remote `main` after the applicable validation passes.
|
|
38
|
+
Administrator privileges may be used to merge without GitHub reviews; they
|
|
39
|
+
do not authorize bypassing required checks. Verify the merge, then delete
|
|
40
|
+
the merged source branch remotely and locally.
|
|
41
|
+
5. Fetch the latest remote `main` after merging and fast-forward local `main`
|
|
42
|
+
to that commit. Preserve divergent local work and report a blocked update
|
|
43
|
+
rather than discarding it.
|
|
44
|
+
6. Replace branches named exactly `development`, locally and remotely, with
|
|
45
|
+
the latest remote `main` commit. Use an explicit, observed-commit
|
|
46
|
+
`--force-with-lease` for a non-fast-forward remote update. Create a missing
|
|
47
|
+
counterpart when local or remote `development` exists; leave repositories
|
|
48
|
+
with neither unchanged. If `development` was the merged source, recreate
|
|
49
|
+
it from the new `main` after deleting it. Other working branches are not
|
|
50
|
+
development synchronization targets.
|
|
51
|
+
7. Never delete local or remote `main`, and never force-push to remote `main`,
|
|
52
|
+
including with `--force-with-lease`, a forced refspec, or a mirror push.
|
|
53
|
+
Check the exact destination ref before every deletion or forced update.
|
|
54
|
+
|
|
55
|
+
Fetches needed to establish a fresh `origin/main` at task start and before a
|
|
56
|
+
source-branch push are authorized without a separate approval question. Commits,
|
|
57
|
+
pushes, PR mutations, and branch cleanup require an authorized task; a request
|
|
58
|
+
for local work alone does not authorize publication. An authorized squash merge
|
|
59
|
+
into `main` includes the merged-source cleanup, local `main` update, and
|
|
60
|
+
`development` synchronization below unless the user explicitly says otherwise.
|
|
61
|
+
Never delete local or remote `main`, or force-push to remote `main`, including
|
|
62
|
+
with `--force-with-lease`.
|
|
63
|
+
|
|
64
|
+
## Prepare The Working Branch
|
|
65
|
+
|
|
66
|
+
Work from the owning repository root. Inspect status, the current branch,
|
|
67
|
+
upstream, and worktrees before changing refs. Preserve unrelated changes and
|
|
68
|
+
existing commits; do not reset a working branch to discard its work. Use the
|
|
69
|
+
user-named branch, or the current source branch for a single-repository task.
|
|
70
|
+
If starting new work while on `main`, create a task branch from fresh
|
|
71
|
+
`origin/main`. Do not use `main` or the selected base as a PR source branch.
|
|
72
|
+
Stop if the source branch cannot be resolved or HEAD is detached.
|
|
73
|
+
|
|
74
|
+
Fetch the authoritative ref explicitly:
|
|
75
|
+
|
|
76
|
+
```sh
|
|
77
|
+
git fetch origin refs/heads/main:refs/remotes/origin/main
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
For an existing working branch, check whether it includes the fetched commit:
|
|
81
|
+
|
|
82
|
+
```sh
|
|
83
|
+
if git merge-base --is-ancestor origin/main HEAD; then
|
|
84
|
+
printf '%s\n' 'Working branch already contains the latest origin/main.'
|
|
85
|
+
else
|
|
86
|
+
ancestry_result=$?
|
|
87
|
+
if [ "$ancestry_result" -ne 1 ]; then
|
|
88
|
+
exit "$ancestry_result"
|
|
89
|
+
fi
|
|
90
|
+
git rebase origin/main
|
|
91
|
+
fi
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Repeat the fetch and ancestry check before every source-branch push, including
|
|
95
|
+
pushes after validation fixes. If rebasing changes the validated inputs, rerun
|
|
96
|
+
the affected validation. Preserve successful evidence for unchanged inputs.
|
|
97
|
+
If a rebase conflicts, abort only the rebase started by this task and report
|
|
98
|
+
the conflict; do not push or discard work. Preserve any pre-existing Git
|
|
99
|
+
operation and dirty worktree rather than trying to reset through it.
|
|
100
|
+
|
|
101
|
+
Before rebasing a published source branch, record its remote commit and verify
|
|
102
|
+
that its existing work is accounted for locally. Reconcile unincorporated
|
|
103
|
+
remote work before rewriting it. Use a normal push for a new branch or a
|
|
104
|
+
fast-forward update. When a rebase requires rewriting the remote source, use
|
|
105
|
+
an explicit lease tied to the recorded source commit:
|
|
106
|
+
|
|
107
|
+
```sh
|
|
108
|
+
if [ -z "$source_branch" ] || [ "$source_branch" = main ]; then
|
|
109
|
+
printf '%s\n' 'Refusing to delete or force-update main or an unnamed branch.' >&2
|
|
110
|
+
exit 1
|
|
111
|
+
fi
|
|
112
|
+
git push --set-upstream \
|
|
113
|
+
--force-with-lease="refs/heads/$source_branch:$observed_source_commit" \
|
|
114
|
+
origin "HEAD:refs/heads/$source_branch"
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Resolve `source_branch` and `observed_source_commit` from verified repository
|
|
118
|
+
state before using this example. Do not replace a rejected lease with
|
|
119
|
+
`--force` or retry against a new expected commit without inspecting the remote
|
|
120
|
+
change. Keep hooks enabled. Verify that the remote source commit equals the
|
|
121
|
+
local commit after a successful push.
|
|
122
|
+
|
|
123
|
+
## Create Or Update The Pull Request
|
|
124
|
+
|
|
125
|
+
1. Confirm GitHub authentication, the intended source branch, and the clean,
|
|
126
|
+
committed changes included in the PR. Load the owning repository skills and
|
|
127
|
+
run their applicable validation. Stage and commit only authorized changes;
|
|
128
|
+
preserve supplied branch names, titles, commit messages, and PR text.
|
|
129
|
+
2. Prepare and push the source branch using the fresh-main procedure above.
|
|
130
|
+
3. Find the open PR for that source. Reuse the exact source/base match. If
|
|
131
|
+
automation created the task PR against `development`, retarget that PR to
|
|
132
|
+
`main` and recheck its diff and checks instead of creating a duplicate.
|
|
133
|
+
Honor an explicit user-selected base; do not silently retarget that choice.
|
|
134
|
+
4. Create a missing PR against `main` when PR creation is authorized. Use a
|
|
135
|
+
file for a multiline body with `gh pr create --body-file` or
|
|
136
|
+
`gh pr edit --body-file`. Do not create an empty PR for a source already
|
|
137
|
+
represented in the base; report the no-op and perform only authorized
|
|
138
|
+
cleanup supported by merge or content-equivalence evidence.
|
|
139
|
+
5. Mark draft PRs ready in the authorized create/update/ready or merge workflow,
|
|
140
|
+
while preserving an explicit request to keep the PR as a draft. Keep the title factual and preserve exact user-supplied text.
|
|
141
|
+
A create/update-only request ends with the PR; it does not authorize merging.
|
|
142
|
+
|
|
143
|
+
## Reporting
|
|
144
|
+
|
|
145
|
+
Report the repository, working branch, fetched main commit, whether rebasing
|
|
146
|
+
was needed, validation results, push result, PR URL and state, administrator
|
|
147
|
+
merge use, source cleanup, final checkout, and main/development commit parity.
|
|
148
|
+
Distinguish merged, unchanged, not applicable, and blocked repositories. Give
|
|
149
|
+
the exact failing command and reason for an incomplete step. Do not amend
|
|
150
|
+
commits unless explicitly requested; use additive commits for follow-up work.
|
|
186
151
|
|
|
187
152
|
## TDD And Validation
|
|
188
153
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
interface:
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
display_name: 'GitHub PR Create Or Update'
|
|
3
|
+
short_description: 'Create, update, and ready pull requests into main'
|
|
4
|
+
brand_color: '#0F766E'
|
|
5
|
+
default_prompt: 'Use $github-pr-create-update when this task matches the skill scope.'
|