@groupby/ai-dev 0.5.8 → 0.5.10
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/package.json +1 -1
- package/teams/agentic-checkout/prompts/AGENTS.md +103 -0
- package/teams/agentic-checkout/prompts/create-plan.md +103 -0
- package/teams/agentic-checkout/prompts/create-pull-request.md +157 -0
- package/teams/agentic-checkout/prompts/fix-pr-comments.md +170 -0
- package/teams/agentic-checkout/prompts/fix-review-findings.md +1 -12
- package/teams/agentic-checkout/prompts/implement-task.md +62 -0
- package/teams/agentic-checkout/prompts/new-workspace.md +12 -0
- package/teams/agentic-checkout/prompts/orchestrate-component-change.md +25 -0
- package/teams/agentic-checkout/prompts/review-change.md +8 -2
- package/teams/agentic-checkout/scripts/check-secrets +51 -0
- package/teams/agentic-checkout/scripts/install-git-hooks +15 -0
- package/teams/agentic-checkout/scripts/local-fast-report +5 -0
- package/teams/agentic-checkout/scripts/local-report +205 -0
- package/teams/agentic-checkout/scripts/local-summarize +47 -0
- package/teams/agentic-checkout/scripts/logs-deps +9 -0
- package/teams/agentic-checkout/scripts/setup-local-fast-model +20 -0
- package/teams/agentic-checkout/scripts/start-deps +15 -0
- package/teams/agentic-checkout/scripts/status-deps +9 -0
- package/teams/agentic-checkout/scripts/stop-deps +9 -0
- package/teams/agentic-checkout/scripts/sync-components +110 -0
- package/teams/agentic-checkout/skills/approval-gated-task-execution/SKILL.md +57 -0
- package/teams/agentic-checkout/skills/component-verification/SKILL.md +34 -0
- package/teams/agentic-checkout/skills/grill-me/SKILL.md +23 -0
- package/teams/agentic-checkout/skills/karpathy-guidelines/SKILL.md +67 -0
- package/teams/agentic-checkout/skills/secret-safety/SKILL.md +41 -0
- package/teams/agentic-checkout/skills/sync-components/SKILL.md +23 -60
- package/teams/agentic-checkout/skills/tdd/SKILL.md +48 -0
- package/teams/rangers/resources/project-doc-contract.md +41 -0
- package/teams/rangers/skills/team-code-review/SKILL.md +66 -0
- package/teams/rangers/skills/team-development/SKILL.md +43 -0
- package/teams/rangers/skills/team-docs-snapshot/SKILL.md +58 -0
- package/teams/rangers/skills/team-docs-snapshot/scripts/collect_project_docs.py +166 -0
- package/teams/rangers/skills/team-phase-planning/SKILL.md +63 -0
- package/teams/rangers/skills/team-project-orientation/SKILL.md +46 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: team-phase-planning
|
|
3
|
+
description: >-
|
|
4
|
+
Break project work into reviewable phases using the repo's routing docs, workflow, phase plan, architecture, and decision log. Use when planning a feature slice, sequencing Jira tickets, defining review gates, or turning broad work into implementable phases.
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Team Phase Planning
|
|
8
|
+
|
|
9
|
+
## Purpose
|
|
10
|
+
|
|
11
|
+
Use this skill to convert broad work into small phases that can be implemented, validated, and reviewed independently.
|
|
12
|
+
|
|
13
|
+
## Context Loading
|
|
14
|
+
|
|
15
|
+
1. Read the project router:
|
|
16
|
+
- `docs/ai/index.md`
|
|
17
|
+
- `docs/project/ai-context.md`
|
|
18
|
+
- `.github/copilot-instructions.md`, if present
|
|
19
|
+
- `docs/ai/resources/project-doc-contract.md`, if no project router exists
|
|
20
|
+
2. Read the working agreement and workflow docs.
|
|
21
|
+
3. Load task-specific planning docs:
|
|
22
|
+
- phase plan
|
|
23
|
+
- decision log
|
|
24
|
+
- architecture docs
|
|
25
|
+
- API or frontend scope docs when the work touches those surfaces
|
|
26
|
+
4. For large or unfamiliar doc sets, use `team-docs-snapshot` and read its manifest first.
|
|
27
|
+
|
|
28
|
+
## Planning Flow
|
|
29
|
+
|
|
30
|
+
1. State the goal and non-goals.
|
|
31
|
+
2. Identify dependencies, unknowns, and project constraints.
|
|
32
|
+
3. Split the work into phases that each have:
|
|
33
|
+
- user-visible or reviewable scope
|
|
34
|
+
- files or areas likely to change
|
|
35
|
+
- validation plan
|
|
36
|
+
- review gate
|
|
37
|
+
- docs that may need updates
|
|
38
|
+
4. Put risky discovery early.
|
|
39
|
+
5. Keep phases small enough that a reviewer can understand the diff without reconstructing the entire project.
|
|
40
|
+
|
|
41
|
+
## Output Format
|
|
42
|
+
|
|
43
|
+
Use this shape unless the user asks otherwise:
|
|
44
|
+
|
|
45
|
+
```markdown
|
|
46
|
+
# Plan: [Work Name]
|
|
47
|
+
|
|
48
|
+
## Goal
|
|
49
|
+
[One paragraph]
|
|
50
|
+
|
|
51
|
+
## Assumptions
|
|
52
|
+
- [Assumption]
|
|
53
|
+
|
|
54
|
+
## Phases
|
|
55
|
+
### Phase 1: [Name]
|
|
56
|
+
Scope:
|
|
57
|
+
Validation:
|
|
58
|
+
Review gate:
|
|
59
|
+
Docs impact:
|
|
60
|
+
|
|
61
|
+
## Open Questions
|
|
62
|
+
- [Question]
|
|
63
|
+
```
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: team-project-orientation
|
|
3
|
+
description: >-
|
|
4
|
+
Orient to an unfamiliar repository through its AI routing docs, project docs, README, architecture notes, and working agreement. Use when entering a repo, moving a task into a new chat, preparing implementation, or auditing whether the project exposes enough context for AI-assisted work.
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Team Project Orientation
|
|
8
|
+
|
|
9
|
+
## Purpose
|
|
10
|
+
|
|
11
|
+
Use this skill to build a small, accurate mental model of a project without reading the whole repo. The goal is to find the project's own context router, then load the smallest useful set of docs.
|
|
12
|
+
|
|
13
|
+
## Orientation Flow
|
|
14
|
+
|
|
15
|
+
1. Inspect the repo shape:
|
|
16
|
+
- `README.md`
|
|
17
|
+
- `AGENTS.md`
|
|
18
|
+
- package or workspace manifests
|
|
19
|
+
- top-level app, package, and docs folders
|
|
20
|
+
2. Locate the AI/project routing entrypoints, in this order:
|
|
21
|
+
- `docs/ai/index.md`
|
|
22
|
+
- `.github/copilot-instructions.md`
|
|
23
|
+
- `docs/project/ai-context.md`
|
|
24
|
+
- `docs/ai/working-agreement.md`
|
|
25
|
+
- `docs/ai/resources/project-doc-contract.md`, if this team resource is installed
|
|
26
|
+
3. If a routing table exists, follow it. Always prefer its task-specific guidance over generic assumptions.
|
|
27
|
+
4. If no router exists, infer a temporary route from common docs:
|
|
28
|
+
- architecture: `docs/**/architecture*.md`
|
|
29
|
+
- product/context: `docs/**/product*.md`, `docs/**/overview*.md`
|
|
30
|
+
- decisions: `docs/**/decision*.md`, `docs/**/adr*.md`
|
|
31
|
+
- workflow: `docs/**/workflow*.md`, `docs/**/phase*.md`
|
|
32
|
+
- contracts: `docs/**/*contract*.md`, `docs/**/*api*.md`
|
|
33
|
+
5. For broad documentation analysis, use `team-docs-snapshot` before loading many files.
|
|
34
|
+
|
|
35
|
+
## Orientation Notes
|
|
36
|
+
|
|
37
|
+
Keep the output concise and project-owned:
|
|
38
|
+
|
|
39
|
+
- purpose and product/domain
|
|
40
|
+
- main apps/packages and how they fit together
|
|
41
|
+
- tech stack and validation commands, when documented
|
|
42
|
+
- AI routing map and any missing entrypoints
|
|
43
|
+
- implementation rules that look non-negotiable
|
|
44
|
+
- risks or ambiguities to resolve before coding
|
|
45
|
+
|
|
46
|
+
Do not copy project knowledge into a reusable skill. Project facts belong in that repo's docs.
|