@laitszkin/apollo-toolkit 3.6.4 → 3.7.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/CHANGELOG.md +16 -0
- package/align-project-documents/SKILL.md +0 -7
- package/analyse-app-logs/SKILL.md +0 -4
- package/analyse-app-logs/scripts/__pycache__/filter_logs_by_time.cpython-312.pyc +0 -0
- package/analyse-app-logs/scripts/__pycache__/log_cli_utils.cpython-312.pyc +0 -0
- package/analyse-app-logs/scripts/__pycache__/search_logs.cpython-312.pyc +0 -0
- package/answering-questions-with-research/SKILL.md +0 -7
- package/archive-specs/SKILL.md +4 -15
- package/cjk-pdf/SKILL.md +68 -0
- package/codex/learn-skill-from-conversations/SKILL.md +0 -4
- package/commit-and-push/SKILL.md +0 -4
- package/deep-research-topics/SKILL.md +0 -4
- package/discover-edge-cases/SKILL.md +0 -4
- package/docs-to-voice/SKILL.md +0 -23
- package/docs-to-voice/scripts/__pycache__/docs_to_voice.cpython-312.pyc +0 -0
- package/enhance-existing-features/SKILL.md +0 -4
- package/financial-research/SKILL.md +2 -13
- package/generate-spec/SKILL.md +6 -10
- package/generate-spec/scripts/__pycache__/create-specscpython-312.pyc +0 -0
- package/implement-specs/SKILL.md +8 -56
- package/implement-specs-with-worktree/SKILL.md +18 -58
- package/katex/scripts/__pycache__/render_katex.cpython-312.pyc +0 -0
- package/merge-changes-from-local-branches/SKILL.md +3 -19
- package/merge-conflict-resolver/SKILL.md +46 -0
- package/open-github-issue/SKILL.md +2 -43
- package/open-github-issue/references/issue-schemas.md +54 -0
- package/open-github-issue/scripts/__pycache__/open_github_issue.cpython-312.pyc +0 -0
- package/open-source-pr-workflow/SKILL.md +0 -4
- package/openai-text-to-image-storyboard/SKILL.md +0 -12
- package/package.json +1 -1
- package/read-github-issue/SKILL.md +0 -4
- package/read-github-issue/scripts/__pycache__/find_issues.cpython-312.pyc +0 -0
- package/read-github-issue/scripts/__pycache__/read_issue.cpython-312.pyc +0 -0
- package/record-spending/SKILL.md +0 -4
- package/recover-missing-plan/SKILL.md +1 -6
- package/resolve-review-comments/SKILL.md +0 -11
- package/resolve-review-comments/scripts/__pycache__/review_threads.cpython-312.pyc +0 -0
- package/review-change-set/SKILL.md +0 -4
- package/review-codebases/SKILL.md +0 -12
- package/scheduled-runtime-health-check/SKILL.md +1 -20
- package/scheduled-runtime-health-check/references/output-format.md +20 -0
- package/ship-github-issue-fix/SKILL.md +0 -4
- package/submission-readiness-check/SKILL.md +0 -4
- package/systematic-debug/SKILL.md +0 -7
- package/test-case-strategy/SKILL.md +0 -7
- package/text-to-short-video/SKILL.md +0 -20
- package/text-to-short-video/scripts/__pycache__/enforce_video_aspect_ratio.cpython-312.pyc +0 -0
- package/version-release/SKILL.md +86 -81
- package/weekly-financial-event-report/SKILL.md +2 -19
|
@@ -17,7 +17,7 @@ description: >-
|
|
|
17
17
|
## Dependencies
|
|
18
18
|
|
|
19
19
|
- Required: `archive-specs` to archive completed plan sets and synchronize durable project docs after merge verification, and `commit-and-push` for the final current-branch submission flow.
|
|
20
|
-
- Conditional:
|
|
20
|
+
- Conditional: `merge-conflict-resolver` to resolve merge conflicts deterministically when conflicts arise.
|
|
21
21
|
- Optional: none.
|
|
22
22
|
- Fallback: If git operations fail, stop and report the error.
|
|
23
23
|
|
|
@@ -82,13 +82,7 @@ For each in-scope named branch:
|
|
|
82
82
|
git merge <branch-name> --no-ff -m "Merge branch '<branch-name>' into <current-branch>"
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
-
3. If conflicts occur,
|
|
86
|
-
- Read the conflict markers and both parent versions before editing.
|
|
87
|
-
- **Same line, different content**: keep the version that matches the intended post-merge behavior, not simply the newer edit.
|
|
88
|
-
- **File deleted in one branch, modified in another**: keep the version supported by current code references and tests; do not silently drop reachable code.
|
|
89
|
-
- **Both branches modified the same file differently**: preserve both changes when they are compatible; if they overlap, manually compose a merged result that keeps the verified logic from both sides.
|
|
90
|
-
- **Test files conflicting**: preserve coverage for both behaviors unless one assertion is now obsolete by verified implementation changes.
|
|
91
|
-
- Use `-X ours` / `-X theirs` only for a narrowly justified conflict after reading the actual content; never use those flags as the default merge strategy.
|
|
85
|
+
3. If conflicts occur, use $merge-conflict-resolver to resolve them deterministically.
|
|
92
86
|
|
|
93
87
|
After resolving files:
|
|
94
88
|
```bash
|
|
@@ -170,14 +164,4 @@ For each in-scope named branch:
|
|
|
170
164
|
- Delete merged source branches and their detached worktrees only after the merge commit and verification both succeed.
|
|
171
165
|
- When active batch specs provide merge-order guidance for in-scope named branches, follow that order unless new evidence proves the plan is stale or inapplicable; if so, stop and report the mismatch instead of silently overriding the batch plan.
|
|
172
166
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
| Scenario | Resolution Strategy |
|
|
176
|
-
|----------|---------------------|
|
|
177
|
-
| Same line, both branches changed behavior | Read both code paths and compose the merged logic that preserves the verified invariant |
|
|
178
|
-
| Same line, one branch is a bug fix and the other is a refactor | Keep the bug fix and reapply the compatible refactor structure manually if needed |
|
|
179
|
-
| File deleted in branch, modified in current branch | Keep the version supported by current references/tests and remove only if the deletion is proven correct |
|
|
180
|
-
| Both added same function differently | Keep both; rename if needed |
|
|
181
|
-
| Config file conflict | Keep both values if non-overlapping |
|
|
182
|
-
| Test file conflict | Keep both test cases |
|
|
183
|
-
| package.json dependency conflict | Keep higher version if compatible |
|
|
167
|
+
Resolve conflicts using $merge-conflict-resolver.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: merge-conflict-resolver
|
|
3
|
+
description: Resolve git merge conflicts using deterministic rules that preserve correct functionality. Use when branch consolidation encounters merge conflicts and needs automated resolution guidance that reads both parent versions and applies scenario-specific strategies.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Merge Conflict Resolver
|
|
7
|
+
|
|
8
|
+
## Dependencies
|
|
9
|
+
|
|
10
|
+
- Required: none.
|
|
11
|
+
- Conditional: none.
|
|
12
|
+
- Optional: none.
|
|
13
|
+
- Fallback: not applicable.
|
|
14
|
+
|
|
15
|
+
## Standards
|
|
16
|
+
|
|
17
|
+
- Evidence: Read both parent versions from conflict markers before resolving.
|
|
18
|
+
- Execution: Read conflicts → apply scenario rules → verify with tests → recommit.
|
|
19
|
+
- Quality: Prefer preserving functionality over keeping either branch's exact changes.
|
|
20
|
+
- Output: Return resolved files with passing verification.
|
|
21
|
+
|
|
22
|
+
## Workflow
|
|
23
|
+
|
|
24
|
+
### 1) Read conflict markers
|
|
25
|
+
|
|
26
|
+
- Read both parent versions from conflict markers before editing.
|
|
27
|
+
- Never use `-X ours`/`-X theirs` as the default strategy; only for narrowly justified conflicts after reading the actual content.
|
|
28
|
+
|
|
29
|
+
### 2) Apply scenario rules
|
|
30
|
+
|
|
31
|
+
| Scenario | Resolution |
|
|
32
|
+
|----------|-----------|
|
|
33
|
+
| Same line, both branches changed behavior | Read both code paths and compose merged logic preserving the verified invariant |
|
|
34
|
+
| Same line, bug fix vs refactor | Keep the bug fix, reapply compatible refactor structure |
|
|
35
|
+
| File deleted in one, modified in other | Keep version supported by current references/tests; delete only if proven correct |
|
|
36
|
+
| Both modified same file differently | Preserve both when compatible; manually compose overlapping changes |
|
|
37
|
+
| Test files conflict | Preserve both coverages unless one assertion is obsolete |
|
|
38
|
+
| Config file (non-overlapping keys) | Keep both values |
|
|
39
|
+
| package.json dependency | Keep higher version if compatible |
|
|
40
|
+
| Same function added differently | Keep both; rename if needed |
|
|
41
|
+
|
|
42
|
+
### 3) Verify after resolution
|
|
43
|
+
|
|
44
|
+
- `git add <resolved-files>`
|
|
45
|
+
- Run targeted tests or build checks for changed files.
|
|
46
|
+
- If verification fails, resolve differently before committing.
|
|
@@ -21,14 +21,7 @@ description: Publish structured GitHub issues across multiple issue categories w
|
|
|
21
21
|
|
|
22
22
|
## Overview
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
It is designed to be reusable by other skills that already know the issue title and evidence, but need a consistent way to:
|
|
27
|
-
|
|
28
|
-
- resolve the target repository,
|
|
29
|
-
- localize the issue body,
|
|
30
|
-
- publish with the preferred auth path,
|
|
31
|
-
- and fall back to draft-only output without blocking the main workflow.
|
|
24
|
+
Designed to be reusable by other skills that know the issue title and evidence but need a consistent publish path.
|
|
32
25
|
|
|
33
26
|
## Core principles
|
|
34
27
|
|
|
@@ -48,41 +41,7 @@ It is designed to be reusable by other skills that already know the issue title
|
|
|
48
41
|
- Otherwise resolve from current git `origin`.
|
|
49
42
|
2. Normalize issue content
|
|
50
43
|
- Require one title and an explicit `issue-type`.
|
|
51
|
-
-
|
|
52
|
-
- `problem-description`
|
|
53
|
-
- `suspected-cause`
|
|
54
|
-
- `reproduction` (optional)
|
|
55
|
-
- Within `problem-description`, require a precise behavior diff:
|
|
56
|
-
- `Expected Behavior (BDD)`: `Given / When / Then` for what the program should do.
|
|
57
|
-
- `Current Behavior (BDD)`: `Given / When / Then` for what the program does now.
|
|
58
|
-
- `Behavior Gap`: a short explicit comparison of the observable difference and impact.
|
|
59
|
-
- Include the symptom, impact, and key evidence alongside the behavior diff; do not leave the mismatch implicit.
|
|
60
|
-
- For `feature` issues, require these structured sections:
|
|
61
|
-
- `proposal` (optional; defaults to title when omitted)
|
|
62
|
-
- `reason`
|
|
63
|
-
- `suggested-architecture`
|
|
64
|
-
- For `performance` issues, require:
|
|
65
|
-
- `problem-description`
|
|
66
|
-
- `impact`
|
|
67
|
-
- `evidence`
|
|
68
|
-
- `suggested-action`
|
|
69
|
-
- For `security` issues, require:
|
|
70
|
-
- `problem-description`
|
|
71
|
-
- `severity`
|
|
72
|
-
- `affected-scope`
|
|
73
|
-
- `impact`
|
|
74
|
-
- `evidence`
|
|
75
|
-
- `suggested-action`
|
|
76
|
-
- For `docs` issues, require:
|
|
77
|
-
- `problem-description`
|
|
78
|
-
- `evidence`
|
|
79
|
-
- `suggested-action`
|
|
80
|
-
- For `observability` issues, require:
|
|
81
|
-
- `problem-description`
|
|
82
|
-
- `impact`
|
|
83
|
-
- `evidence`
|
|
84
|
-
- `suggested-action`
|
|
85
|
-
- If reproduction is missing for a `problem` issue, insert the default non-reproducible note in the target issue language.
|
|
44
|
+
- See `references/issue-schemas.md` for the required fields per issue type.
|
|
86
45
|
3. Detect issue language
|
|
87
46
|
- Read the target repository README from GitHub.
|
|
88
47
|
- If the README is Chinese, publish Chinese section titles; otherwise publish English section titles.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Issue Type Schemas
|
|
2
|
+
|
|
3
|
+
## Problem
|
|
4
|
+
|
|
5
|
+
Required sections:
|
|
6
|
+
- `problem-description`
|
|
7
|
+
- `Expected Behavior (BDD)`: `Given / When / Then` for what the program should do.
|
|
8
|
+
- `Current Behavior (BDD)`: `Given / When / Then` for what the program does now.
|
|
9
|
+
- `Behavior Gap`: a short explicit comparison of the observable difference and impact.
|
|
10
|
+
- Include the symptom, impact, and key evidence alongside the behavior diff; do not leave the mismatch implicit.
|
|
11
|
+
- `suspected-cause`
|
|
12
|
+
- `reproduction` (optional)
|
|
13
|
+
|
|
14
|
+
If reproduction is missing, insert the default non-reproducible note in the target issue language.
|
|
15
|
+
|
|
16
|
+
## Feature
|
|
17
|
+
|
|
18
|
+
Required sections:
|
|
19
|
+
- `proposal` (optional; defaults to title when omitted)
|
|
20
|
+
- `reason`
|
|
21
|
+
- `suggested-architecture`
|
|
22
|
+
|
|
23
|
+
## Performance
|
|
24
|
+
|
|
25
|
+
Required sections:
|
|
26
|
+
- `problem-description`
|
|
27
|
+
- `impact`
|
|
28
|
+
- `evidence`
|
|
29
|
+
- `suggested-action`
|
|
30
|
+
|
|
31
|
+
## Security
|
|
32
|
+
|
|
33
|
+
Required sections:
|
|
34
|
+
- `problem-description`
|
|
35
|
+
- `severity`
|
|
36
|
+
- `affected-scope`
|
|
37
|
+
- `impact`
|
|
38
|
+
- `evidence`
|
|
39
|
+
- `suggested-action`
|
|
40
|
+
|
|
41
|
+
## Docs
|
|
42
|
+
|
|
43
|
+
Required sections:
|
|
44
|
+
- `problem-description`
|
|
45
|
+
- `evidence`
|
|
46
|
+
- `suggested-action`
|
|
47
|
+
|
|
48
|
+
## Observability
|
|
49
|
+
|
|
50
|
+
Required sections:
|
|
51
|
+
- `problem-description`
|
|
52
|
+
- `impact`
|
|
53
|
+
- `evidence`
|
|
54
|
+
- `suggested-action`
|
|
Binary file
|
|
@@ -19,10 +19,6 @@ description: PR-focused workflow for open-source repositories. Use when the user
|
|
|
19
19
|
- Quality: Target the upstream parent repository by default for forks, keep PR content in English unless requested otherwise, and exclude internal workflow details.
|
|
20
20
|
- Output: Produce a review-ready PR body with motivation, engineering rationale, test commands, and any required issue linkage.
|
|
21
21
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
Use this workflow to prepare open-source contributions and open review-ready pull requests with consistent branch naming and PR content quality.
|
|
25
|
-
|
|
26
22
|
## Scope Guardrails
|
|
27
23
|
|
|
28
24
|
- This skill is for PR preparation and PR creation only.
|
|
@@ -5,13 +5,6 @@ description: Generate storyboard images by using agent-decided prompts and calli
|
|
|
5
5
|
|
|
6
6
|
# OpenAI Text to Image Storyboard
|
|
7
7
|
|
|
8
|
-
## Dependencies
|
|
9
|
-
|
|
10
|
-
- Required: none.
|
|
11
|
-
- Conditional: none.
|
|
12
|
-
- Optional: none.
|
|
13
|
-
- Fallback: not applicable.
|
|
14
|
-
|
|
15
8
|
## Standards
|
|
16
9
|
|
|
17
10
|
- Evidence: Generate prompts from the supplied content and require only the minimal mandatory inputs such as project path and content name.
|
|
@@ -19,11 +12,6 @@ description: Generate storyboard images by using agent-decided prompts and calli
|
|
|
19
12
|
- Quality: Keep prompts and outputs in narrative order, use only `/images/generations`, and leave role-schema management to the video orchestration skills.
|
|
20
13
|
- Output: Write images plus `storyboard.json` under `pictures/<content_name>/` without overwriting existing filenames.
|
|
21
14
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
Let the agent decide which images are needed from the text, then call only `/images/generations` to render them.
|
|
25
|
-
Always save outputs in `pictures/<content_name>/` (example: `pictures/1_chapter_title/`).
|
|
26
|
-
|
|
27
15
|
## Workflow
|
|
28
16
|
|
|
29
17
|
1. Read user text and decide the target scenes in the agent.
|
package/package.json
CHANGED
|
@@ -19,10 +19,6 @@ description: Read and search remote GitHub issues via GitHub CLI (`gh`). Use whe
|
|
|
19
19
|
- Quality: Keep the skill focused on issue discovery and retrieval only; do not embed any hardcoded fixing, branching, PR, or push workflow.
|
|
20
20
|
- Output: Return candidate issues, selected issue details, comments summary, and any missing information needed before follow-up work.
|
|
21
21
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
Use this skill to gather trustworthy GitHub issue context with `gh`: discover open or closed issues, narrow them with labels or search text, then inspect a chosen issue in detail before any separate planning or implementation workflow begins.
|
|
25
|
-
|
|
26
22
|
## Prerequisites
|
|
27
23
|
|
|
28
24
|
- `gh` is installed and authenticated (`gh auth status`).
|
|
Binary file
|
|
Binary file
|
package/record-spending/SKILL.md
CHANGED
|
@@ -19,10 +19,6 @@ description: Maintain monthly multi-account bookkeeping ledgers in Excel. Use wh
|
|
|
19
19
|
- Quality: Preserve existing naming, formulas, and reconciliation behavior, and record new chart rules or account metadata changes immediately.
|
|
20
20
|
- Output: Report the updated workbook path, changed worksheets, account-registry changes, and chart-rule changes.
|
|
21
21
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
Track user-named accounts through monthly Excel workbooks and keep the account registry plus chart rules consistent over time. Treat `ACCOUNT.md` as the source of truth for account identity and `CHART.md` as the source of truth for recurring chart and quantified-analysis rules.
|
|
25
|
-
|
|
26
22
|
## References
|
|
27
23
|
|
|
28
24
|
Load these only when needed:
|
|
@@ -21,12 +21,7 @@ description: Recover a missing or mismatched `docs/plans/...` plan set by verify
|
|
|
21
21
|
|
|
22
22
|
## Overview
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
Typical triggers:
|
|
27
|
-
- The user references a specific `docs/plans/...` directory that is absent from the current worktree.
|
|
28
|
-
- A feature workflow expects approved spec files, but the plan was archived, never checked out, or exists only in another branch/worktree.
|
|
29
|
-
- An implementation task must continue from GitHub issue context because the original planning artifacts are missing.
|
|
24
|
+
Recover a missing, archived, or mismatched plan set when the user references a `docs/plans/...` directory that does not exist in the current worktree.
|
|
30
25
|
|
|
31
26
|
## Workflow
|
|
32
27
|
|
|
@@ -5,13 +5,6 @@ description: Read GitHub pull request review comments, analyze each thread, deci
|
|
|
5
5
|
|
|
6
6
|
# Resolve Review Comments
|
|
7
7
|
|
|
8
|
-
## Dependencies
|
|
9
|
-
|
|
10
|
-
- Required: none.
|
|
11
|
-
- Conditional: none.
|
|
12
|
-
- Optional: none.
|
|
13
|
-
- Fallback: not applicable.
|
|
14
|
-
|
|
15
8
|
## Standards
|
|
16
9
|
|
|
17
10
|
- Evidence: Read unresolved review threads first and decide adopt versus reject from the actual review content and code context.
|
|
@@ -19,10 +12,6 @@ description: Read GitHub pull request review comments, analyze each thread, deci
|
|
|
19
12
|
- Quality: Keep changes minimal, leave rejected or unclear threads unresolved, and reply with concise technical reasons when feedback is not adopted.
|
|
20
13
|
- Output: Complete the PR feedback loop with updated code, pushed commits, and correctly resolved review threads.
|
|
21
14
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
Use this skill to run an end-to-end GitHub PR review loop: collect review threads, decide adopt/reject per comment, apply accepted feedback, push commits to the same PR branch, and resolve only addressed threads.
|
|
25
|
-
|
|
26
15
|
## Prerequisites
|
|
27
16
|
|
|
28
17
|
- Ensure `gh` is installed and authenticated (`gh auth status`).
|
|
Binary file
|
|
@@ -19,10 +19,6 @@ description: Review the current git change set from an unbiased reviewer perspec
|
|
|
19
19
|
- Quality: Judge the change set as an outsider, keep only actionable findings, and avoid inventing concerns the security pass did not confirm.
|
|
20
20
|
- Output: Return review scope, architecture findings, simplification findings, security cross-check results, and residual uncertainty.
|
|
21
21
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
Use this skill to review the active git change set as an outsider, not as the original author. The goal is to find actionable abstraction and simplification opportunities with evidence, not to defend the current implementation.
|
|
25
|
-
|
|
26
22
|
## Non-negotiable Review Rules
|
|
27
23
|
|
|
28
24
|
- Read the full active change set before judging any design choice.
|
|
@@ -19,18 +19,6 @@ description: Repository-wide code review workflow that requires reading the full
|
|
|
19
19
|
- Quality: Prefer root-cause findings over scattered symptoms, merge duplicates, and keep hypotheses out of published results.
|
|
20
20
|
- Output: Return coverage, review tier reached, confirmed findings, publication status, and deferred lower-tier follow-up.
|
|
21
21
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
Use this skill to review an entire repository before making judgments.
|
|
25
|
-
|
|
26
|
-
The review order is strict:
|
|
27
|
-
|
|
28
|
-
1. Architecture and system design
|
|
29
|
-
2. Code quality and maintainability
|
|
30
|
-
3. Edge cases and robustness gaps
|
|
31
|
-
|
|
32
|
-
Only continue to the next level when the current level has no confirmed findings.
|
|
33
|
-
|
|
34
22
|
## Core rules
|
|
35
23
|
|
|
36
24
|
- Read the full repository before judging any design or implementation choice.
|
|
@@ -123,26 +123,7 @@ This skill is an orchestration layer. It owns the background terminal session, o
|
|
|
123
123
|
|
|
124
124
|
Absence of errors alone is not enough for `healthy`.
|
|
125
125
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
Use this structure in responses:
|
|
129
|
-
|
|
130
|
-
1. Run summary
|
|
131
|
-
- Workspace, command, schedule if any, actual start/end timestamps, bounded execute duration, total wall-clock duration, readiness result, shutdown result if applicable, canonical run folder or artifact root, and log locations.
|
|
132
|
-
2. Execution result
|
|
133
|
-
- Whether the command completed, stayed up for the requested window, or failed early.
|
|
134
|
-
3. Code update result
|
|
135
|
-
- Include only when an update step was requested. Record the update command, before/after commit, or the exact blocker.
|
|
136
|
-
4. Module health
|
|
137
|
-
- Include only when findings were requested or health assessment was part of the task. One entry per module with status (`healthy` / `degraded` / `failed` / `unknown`) and evidence.
|
|
138
|
-
5. Confirmed issues
|
|
139
|
-
- Include only when log analysis was requested. Reuse evidence-backed findings from `analyse-app-logs`.
|
|
140
|
-
6. Potential issues and validation needed
|
|
141
|
-
- Include only when log analysis was requested. Risks that appeared in the run but need more evidence.
|
|
142
|
-
7. Observability gaps
|
|
143
|
-
- Include only when log analysis was requested. Missing logs, metrics, probes, or correlation IDs that blocked diagnosis.
|
|
144
|
-
8. Automation or scheduler status
|
|
145
|
-
- Include only when a future window or scheduler was involved. Record task identifiers, execution status, and whether future cleanup is needed.
|
|
126
|
+
Use `references/output-format.md` for the structured output template including run summary, execution result, module health, confirmed issues, and scheduler status.
|
|
146
127
|
|
|
147
128
|
## Guardrails
|
|
148
129
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Output Format
|
|
2
|
+
|
|
3
|
+
Use this structure in responses:
|
|
4
|
+
|
|
5
|
+
1. Run summary
|
|
6
|
+
- Workspace, command, schedule if any, actual start/end timestamps, bounded execute duration, total wall-clock duration, readiness result, shutdown result if applicable, canonical run folder or artifact root, and log locations.
|
|
7
|
+
2. Execution result
|
|
8
|
+
- Whether the command completed, stayed up for the requested window, or failed early.
|
|
9
|
+
3. Code update result
|
|
10
|
+
- Include only when an update step was requested. Record the update command, before/after commit, or the exact blocker.
|
|
11
|
+
4. Module health
|
|
12
|
+
- Include only when findings were requested or health assessment was part of the task. One entry per module with status (`healthy` / `degraded` / `failed` / `unknown`) and evidence.
|
|
13
|
+
5. Confirmed issues
|
|
14
|
+
- Include only when log analysis was requested. Reuse evidence-backed findings from `analyse-app-logs`.
|
|
15
|
+
6. Potential issues and validation needed
|
|
16
|
+
- Include only when log analysis was requested. Risks that appeared in the run but need more evidence.
|
|
17
|
+
7. Observability gaps
|
|
18
|
+
- Include only when log analysis was requested. Missing logs, metrics, probes, or correlation IDs that blocked diagnosis.
|
|
19
|
+
8. Automation or scheduler status
|
|
20
|
+
- Include only when a future window or scheduler was involved. Record task identifiers, execution status, and whether future cleanup is needed.
|
|
@@ -19,10 +19,6 @@ description: Resolve a GitHub issue in an existing repository and submit the fix
|
|
|
19
19
|
- Quality: Treat localized bug fixes and narrow optimizations as direct implementation work unless the explored scope proves they need shared planning; finish tests, spec backfill, docs sync, and `AGENTS.md/CLAUDE.md` sync before handing off submission.
|
|
20
20
|
- Output: Report the issue context, chosen workflow, implemented fix, validation evidence, and commit/push result.
|
|
21
21
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
Use this skill for the recurring workflow where the user wants one GitHub issue taken from remote context through implementation and direct submission. Keep the workflow tight: fetch the issue faithfully, decide whether specs are necessary from the explored codebase, finish the fix with tests, then submit without PR or release steps.
|
|
25
|
-
|
|
26
22
|
## Workflow
|
|
27
23
|
|
|
28
24
|
### 1) Read the issue from the remote source first
|
|
@@ -19,10 +19,6 @@ description: Prepare a repository for safe submission by synchronizing `CHANGELO
|
|
|
19
19
|
- Quality: Treat missing or stale changelog entries as blocking issues for submit workflows, preserve unrelated pending `Unreleased` bullets, do not archive active plan sets that still track unfinished scope, and do not hand back a ready verdict until every conditional gate whose scenario is met has actually been completed.
|
|
20
20
|
- Output: Return a ready-to-submit verdict with the synchronized files and any blocking items that must be fixed before the owning submit workflow continues.
|
|
21
21
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
Use this skill as the shared finalization pass before repository submission workflows. It exists to prevent repeated omissions such as forgetting `CHANGELOG.md`, shipping stale project docs, or leaving completed plan sets unarchived.
|
|
25
|
-
|
|
26
22
|
## Workflow
|
|
27
23
|
|
|
28
24
|
### 1) Inventory the real submission surface
|
|
@@ -5,13 +5,6 @@ description: "Systematic debugging workflow for program issues: understand obser
|
|
|
5
5
|
|
|
6
6
|
# Systematic Debug
|
|
7
7
|
|
|
8
|
-
## Dependencies
|
|
9
|
-
|
|
10
|
-
- Required: none.
|
|
11
|
-
- Conditional: none.
|
|
12
|
-
- Optional: none.
|
|
13
|
-
- Fallback: not applicable.
|
|
14
|
-
|
|
15
8
|
## Standards
|
|
16
9
|
|
|
17
10
|
- Evidence: Gather expected versus observed behavior from code and runtime facts before deciding on a cause, and when the issue involves a runtime pipeline or bounded run, anchor the investigation to one canonical artifact root or run directory instead of mixed terminal snippets from multiple runs; if generated reports or databases drift into an older run directory, capture that mismatch explicitly before treating any artifact as evidence.
|
|
@@ -5,13 +5,6 @@ description: Select and design risk-driven test cases for agent implementation w
|
|
|
5
5
|
|
|
6
6
|
# Test Case Strategy
|
|
7
7
|
|
|
8
|
-
## Dependencies
|
|
9
|
-
|
|
10
|
-
- Required: none.
|
|
11
|
-
- Conditional: none.
|
|
12
|
-
- Optional: none.
|
|
13
|
-
- Fallback: not applicable.
|
|
14
|
-
|
|
15
8
|
## Standards
|
|
16
9
|
|
|
17
10
|
- Evidence: Base every test decision on changed behavior, requirement IDs, risk class, dependency shape, and existing coverage; do not add tests only because a template lists them.
|
|
@@ -5,13 +5,6 @@ description: Generate 30-60 second short videos by directly calling an OpenAI-co
|
|
|
5
5
|
|
|
6
6
|
# Text to Short Video
|
|
7
7
|
|
|
8
|
-
## Dependencies
|
|
9
|
-
|
|
10
|
-
- Required: none.
|
|
11
|
-
- Conditional: none.
|
|
12
|
-
- Optional: none.
|
|
13
|
-
- Fallback: not applicable.
|
|
14
|
-
|
|
15
8
|
## Standards
|
|
16
9
|
|
|
17
10
|
- Evidence: Use `roles.json` as the authoritative role source and collect only the minimal prompt, duration, and sizing inputs.
|
|
@@ -19,19 +12,6 @@ description: Generate 30-60 second short videos by directly calling an OpenAI-co
|
|
|
19
12
|
- Quality: Keep duration in the 30-60 second range, preserve role identity fields, and do not route through storyboard or Remotion skills.
|
|
20
13
|
- Output: Save the prompt package, API records, and final short-video artifacts under the project video workspace.
|
|
21
14
|
|
|
22
|
-
## Overview
|
|
23
|
-
|
|
24
|
-
This skill is **API-only**:
|
|
25
|
-
|
|
26
|
-
1. Resolve role consistency from `roles.json`.
|
|
27
|
-
2. Build one short-video prompt from text + roles.
|
|
28
|
-
3. Call an OpenAI-compatible video generation API.
|
|
29
|
-
4. Poll until the job is finished.
|
|
30
|
-
5. Download one final MP4.
|
|
31
|
-
6. Optionally run aspect-ratio/size post-processing.
|
|
32
|
-
|
|
33
|
-
Do not use `openai-text-to-image-storyboard` or `remotion-best-practices` in this skill.
|
|
34
|
-
|
|
35
15
|
## Required Inputs
|
|
36
16
|
|
|
37
17
|
Collect only what is required:
|