@mmerterden/multi-agent-pipeline 11.0.0 → 11.2.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 +52 -0
- package/install/_common.mjs +9 -1
- package/install/claude.mjs +12 -3
- package/install/templates/claude-hooks.json +18 -1
- package/package.json +1 -1
- package/pipeline/commands/multi-agent/refs/features/autopilot-circuit-breaker.md +32 -0
- package/pipeline/commands/multi-agent/refs/phases/modes.md +1 -0
- package/pipeline/commands/multi-agent/refs/picker-contract.md +1 -1
- package/pipeline/commands/multi-agent/sync.md +2 -2
- package/pipeline/scripts/agent-guard.py +74 -0
- package/pipeline/scripts/agent-guard.sh +48 -0
- package/pipeline/scripts/build-stack-plugins.mjs +1 -1
- package/pipeline/scripts/fixtures/install-layout.tsv +4 -4
- package/pipeline/scripts/scan-agent-config.sh +107 -0
- package/pipeline/scripts/smoke-agent-guard.sh +74 -0
- package/pipeline/scripts/smoke-autopilot-circuit-breaker.sh +36 -0
- package/pipeline/scripts/smoke-config-hygiene.sh +58 -0
- package/pipeline/scripts/smoke-gate-hooks.sh +18 -0
- package/pipeline/skills/.skills-index.json +47 -2
- package/pipeline/skills/shared/external/agent-introspection-debugging/SKILL.md +69 -0
- package/pipeline/skills/shared/external/backlog/BACKLOG.md +32 -0
- package/pipeline/skills/shared/external/backlog/SKILL.md +49 -0
- package/pipeline/skills/shared/external/council/SKILL.md +69 -0
- package/pipeline/skills/shared/external/search-first/SKILL.md +76 -0
- package/pipeline/skills/shared/external/skill-creator/SKILL.md +48 -0
- package/pipeline/skills/shared/external/skill-creator/audit.md +59 -0
- package/pipeline/skills/shared/external/skill-creator/checklist.md +32 -0
- package/pipeline/skills/shared/external/skill-creator/examples.md +65 -0
- package/pipeline/skills/shared/external/skill-creator/label-check.md +43 -0
- package/pipeline/skills/shared/external/skill-creator/scripts/audit-panel.js +83 -0
- package/pipeline/skills/shared/external/skill-creator/template.md +67 -0
- package/pipeline/skills/skills-index.md +6 -1
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Examples — descriptions & shape
|
|
2
|
+
|
|
3
|
+
## Descriptions: the discovery lever
|
|
4
|
+
|
|
5
|
+
**Bad (vague — rarely triggers):**
|
|
6
|
+
```yaml
|
|
7
|
+
description: Helps with navigation
|
|
8
|
+
```
|
|
9
|
+
Why it fails: no "when", no trigger words, no platform — the router can't tell what task this matches.
|
|
10
|
+
|
|
11
|
+
**Good (what + when + triggers + platform):**
|
|
12
|
+
```yaml
|
|
13
|
+
description: "In-app navigation for a SwiftUI iOS app — the coordinator-per-domain pattern, the tab shell, cross-domain navigation, deep links, and modals. Reach for this when adding a screen, a tab, a deep link, or a modal, or deciding how one screen reaches another."
|
|
14
|
+
```
|
|
15
|
+
Why it works: states the domain, lists concrete triggers ("adding a screen, a tab, a deep link"), names the platform, and implies the boundary.
|
|
16
|
+
|
|
17
|
+
**Workflow example (action + when to run):**
|
|
18
|
+
```yaml
|
|
19
|
+
description: "Branch, commit, push, and open a PR for this repo. Owns the git/PR spine and house guardrails — type-first branch names, no AI attribution, no force-push, correct base branch. Reach for this whenever a change is ready to ship."
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Recipe
|
|
23
|
+
`<what it covers/does> + <concrete when/trigger phrases> + <platform> + <implied boundary vs siblings>`
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## Shape: reference vs workflow
|
|
28
|
+
|
|
29
|
+
**Wrong — a reference skill drifting into a procedure:**
|
|
30
|
+
```markdown
|
|
31
|
+
## Procedures
|
|
32
|
+
1. Open the file
|
|
33
|
+
2. Add the wrapper
|
|
34
|
+
3. Register the route
|
|
35
|
+
4. Build and run
|
|
36
|
+
```
|
|
37
|
+
A reference (knowledge) skill should describe *the rule and where the canonical example lives*, not script the keystrokes.
|
|
38
|
+
|
|
39
|
+
**Right — reference stays descriptive:**
|
|
40
|
+
```markdown
|
|
41
|
+
## Decision rules
|
|
42
|
+
- New screen in a domain → add `<Name>Screen` under its Presentation layer,
|
|
43
|
+
wrap content in the domain's container, route via the domain coordinator.
|
|
44
|
+
Canonical: `<repo>/Features/Profile/ProfileScreen.swift`.
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**Right — workflow earns its numbered steps** (deterministic/irreversible spine):
|
|
48
|
+
```markdown
|
|
49
|
+
## Procedures
|
|
50
|
+
1. Pre-flight: `git status` clean? on base branch?
|
|
51
|
+
2. Branch: `git checkout -b <type>/<scope>/<desc>`
|
|
52
|
+
3. Commit: stage; conventional message; strip any AI co-author trailer.
|
|
53
|
+
4. Push; never force-push a protected branch.
|
|
54
|
+
5. PR: `gh pr create --base <base> …` (no AI footer).
|
|
55
|
+
## Verification
|
|
56
|
+
- `git log -1` shows clean message, no AI trailer, correct author.
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## Leanness: cut what the model already knows
|
|
62
|
+
|
|
63
|
+
**Bloat:** "PDF files are documents that contain text and images. To read them you first need a library that can parse the binary format…"
|
|
64
|
+
|
|
65
|
+
**Lean:** "Extract text from PDFs with `pdfplumber`."
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Label intent check — does a title carry its own meaning?
|
|
2
|
+
|
|
3
|
+
A label (rule title, section header, principle/constraint name) is the handle a reader grasps *before* the body. If the handle leaks the wrong shape — ambiguous, one-sided, or off-topic — the reader forms the wrong model and the body has to fight it. This is a cheap test that catches that early: have **fresh subagents infer the rule from the label alone**, then compare against your intended meaning. Convergence = the label is self-carrying.
|
|
4
|
+
|
|
5
|
+
## When to run it
|
|
6
|
+
- Naming a **strict rule** or constraint inside a skill (the kind a reader must obey).
|
|
7
|
+
- A **section header** that gates non-trivial content (phase/principle/constraint names).
|
|
8
|
+
- Any label meant to convey the **whole intent** of its body (not a summary — the intent).
|
|
9
|
+
- Skip it for purely organizational labels ("Examples", "See also") — they carry no intent.
|
|
10
|
+
|
|
11
|
+
## Inputs (collect first)
|
|
12
|
+
1. **Candidate label** — the exact string under test.
|
|
13
|
+
2. **Surrounding context** — one paragraph: which skill/doc, what adjacent labels cover, the domain concepts in play.
|
|
14
|
+
3. **Intended meaning** — 1–3 sentences of ground truth (what the body says / what the reader should walk away believing). **Not** shown to the inference agents. If you can't state it in 3 sentences, the body is unclear — fix that first.
|
|
15
|
+
|
|
16
|
+
## Procedure
|
|
17
|
+
**One iteration = 5 parallel subagents**, each given ONLY the label + context (never the body), each forced to commit:
|
|
18
|
+
```
|
|
19
|
+
Context: <surrounding context — 1 paragraph>.
|
|
20
|
+
The label under test is: **"<candidate label>"**
|
|
21
|
+
You have NOT seen the body. From ONLY this label + context, what do you infer it
|
|
22
|
+
enforces / requires / means? 1–2 concrete sentences, under 80 words. Commit — no
|
|
23
|
+
hedging, no clarifying questions.
|
|
24
|
+
```
|
|
25
|
+
Launch all 5 in the **same** message (parallel) so they're independent by construction.
|
|
26
|
+
|
|
27
|
+
**Convergence (per iteration), comparing the 5 inferences to the intended meaning:**
|
|
28
|
+
- **PASS** — ≥4/5 cover *all* key intent beats (including the bidirectional / edge / scope beat, if the intent has one). Wording drift is fine.
|
|
29
|
+
- **PARTIAL** — they consistently catch one side of a bidirectional rule but miss the other, or over-extend into an adjacent concern. Revise the label, re-run.
|
|
30
|
+
- **FAIL** — inferences diverge wildly or miss the core beat. Revise, re-run.
|
|
31
|
+
|
|
32
|
+
**Idempotency (after a PASS):** run **2 more rounds**, 5 fresh agents each (3×5 = 15 inferences), same prompt. Require **all 3 rounds PASS** with no new systematic miss — confirms the PASS wasn't luck. A regression in round 2/3 → treat as PARTIAL and iterate.
|
|
33
|
+
|
|
34
|
+
**Termination:** converged (3/3 PASS) → apply the label. 3 iterations without a PASS → stop, hand back the best candidate + the persistent miss; don't force a label that won't stick.
|
|
35
|
+
|
|
36
|
+
## Defaults
|
|
37
|
+
5 agents/round · 3 rounds · 80-word inference cap · max 3 iterations before handing back. High-stakes labels (top-level skill names, protocol names) → 7 agents × 3 rounds; throwaway section headers → 3 × 2.
|
|
38
|
+
|
|
39
|
+
## Anti-patterns
|
|
40
|
+
- **Giving agents the body** — defeats the test (you're checking the label's *self-carrying* power).
|
|
41
|
+
- **Running sequentially** — they'd anchor on each other; must be parallel.
|
|
42
|
+
- **Tweaking one word on a FAIL** — step back and rethink the concept the label names, don't polish a wrong handle.
|
|
43
|
+
- **Accepting "mostly right"** — a label that reliably misses a beat misleads every reader the same way. Fix it, or accept the rule is one-sided and split the body.
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
// audit-panel.js — Workflow template for the multi-architect skill audit.
|
|
2
|
+
//
|
|
3
|
+
// Run with the Workflow tool. Edit the CONFIG block for your target, then launch.
|
|
4
|
+
// Returns { remaining, clearsBar, verdict }. If clearsBar is false, apply the
|
|
5
|
+
// `remaining` blockers/majors, then RE-RUN A FRESH copy (do NOT resume — agents
|
|
6
|
+
// must read the current files). Loop until clearsBar. See ../audit.md.
|
|
7
|
+
|
|
8
|
+
export const meta = {
|
|
9
|
+
name: 'skill-audit-panel',
|
|
10
|
+
description: 'Adversarial N-architect audit of a skill against the skill-creator rubric',
|
|
11
|
+
phases: [{ title: 'Audit' }, { title: 'Synthesis' }],
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// ── CONFIG — edit these ──────────────────────────────────────────────────────
|
|
15
|
+
const TARGET = `
|
|
16
|
+
- <abs path to SKILL.md>
|
|
17
|
+
- <abs path to each bundled file / script>
|
|
18
|
+
`
|
|
19
|
+
const RUBRIC = `<abs path to reference/skill-creator/SKILL.md> + checklist.md`
|
|
20
|
+
const EXEMPLAR = `<abs path to a known-good skill of the same layer>`
|
|
21
|
+
const GROUND_TRUTH = `<abs path to the real source the skill describes (e.g. the iOS repo), with key facts>`
|
|
22
|
+
// Pick a lens set from audit.md (general or prompt-engineering). [label, brief] pairs:
|
|
23
|
+
const LENSES = [
|
|
24
|
+
['discovery', 'description-as-discovery: what+when+trigger words+example; would it activate on a real task?'],
|
|
25
|
+
['disambiguation', 'distinct from sibling skills; a reader can tell when to pick this vs a neighbor.'],
|
|
26
|
+
['triggers', 'real user phrasings + synonyms are covered.'],
|
|
27
|
+
['clarity', 'instructions unambiguous, ordered, single-interpretation; no vague directives.'],
|
|
28
|
+
['layer', 'degrees of freedom match the layer (reference=descriptive / workflow=spine / tool=thin-index).'],
|
|
29
|
+
['leanness', 'SKILL.md is an index; detail bundled one level deep; no duplication or bloat.'],
|
|
30
|
+
['tokens', 'every line load-bearing; nothing restates what the model already knows.'],
|
|
31
|
+
['consistency', 'terminology, naming, paths, cross-refs, examples all agree.'],
|
|
32
|
+
['misfire', 'would the model over-apply, skip a gate, hallucinate a path, or follow it to a wrong output?'],
|
|
33
|
+
['redteam', 'adversarially make it not trigger / trigger wrongly / produce broken output; hunt overclaims (says X, script does not).'],
|
|
34
|
+
]
|
|
35
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
36
|
+
|
|
37
|
+
const COMMON = `
|
|
38
|
+
You are auditing a skill. Read the CURRENT files and report ONLY genuine, specific,
|
|
39
|
+
reproducible findings for YOUR lens. Verify against the rubric + ground truth — do
|
|
40
|
+
not assume. Read-only; do NOT edit. If your lens is clean, return an empty array.
|
|
41
|
+
|
|
42
|
+
TARGET (the skill under audit):${TARGET}
|
|
43
|
+
RUBRIC (the bar): ${RUBRIC}
|
|
44
|
+
EXEMPLAR (known-good of this layer): ${EXEMPLAR}
|
|
45
|
+
GROUND TRUTH (what the skill describes): ${GROUND_TRUTH}
|
|
46
|
+
|
|
47
|
+
Each finding: severity (blocker|major|minor|nit), file:location, the problem, the concrete fix.
|
|
48
|
+
`
|
|
49
|
+
|
|
50
|
+
const FINDING = {
|
|
51
|
+
type: 'object', additionalProperties: false,
|
|
52
|
+
properties: {
|
|
53
|
+
severity: { type: 'string', enum: ['blocker', 'major', 'minor', 'nit'] },
|
|
54
|
+
location: { type: 'string' }, problem: { type: 'string' }, fix: { type: 'string' },
|
|
55
|
+
}, required: ['severity', 'location', 'problem', 'fix'],
|
|
56
|
+
}
|
|
57
|
+
const LENS_SCHEMA = {
|
|
58
|
+
type: 'object', additionalProperties: false,
|
|
59
|
+
properties: { lens: { type: 'string' }, findings: { type: 'array', items: FINDING } },
|
|
60
|
+
required: ['lens', 'findings'],
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
phase('Audit')
|
|
64
|
+
const results = await parallel(LENSES.map(([lens, brief]) => () =>
|
|
65
|
+
agent(`${COMMON}\n\nYOUR LENS — ${lens}: ${brief}`, { label: `audit:${lens}`, phase: 'Audit', schema: LENS_SCHEMA })
|
|
66
|
+
))
|
|
67
|
+
const all = results.filter(Boolean).flatMap(r => r.findings.map(f => ({ ...f, lens: r.lens })))
|
|
68
|
+
|
|
69
|
+
phase('Synthesis')
|
|
70
|
+
const SYNTH = {
|
|
71
|
+
type: 'object', additionalProperties: false,
|
|
72
|
+
properties: {
|
|
73
|
+
remaining: { type: 'array', items: { type: 'object', additionalProperties: false,
|
|
74
|
+
properties: { ...FINDING.properties, lenses: { type: 'string' } },
|
|
75
|
+
required: [...FINDING.required, 'lenses'] } },
|
|
76
|
+
clearsBar: { type: 'boolean' },
|
|
77
|
+
verdict: { type: 'string' },
|
|
78
|
+
}, required: ['remaining', 'clearsBar', 'verdict'],
|
|
79
|
+
}
|
|
80
|
+
return await agent(
|
|
81
|
+
`${COMMON}\n\nYou are the SYNTHESIS architect. Below are ${all.length} raw findings from ${LENSES.length} lenses. Dedup overlaps (note which lenses raised each). DROP false positives — verify against the files before keeping; if you cannot reproduce it, drop it. Classify each survivor; set clearsBar=true ONLY if no blockers and no majors remain. One-paragraph verdict.\n\nRAW:\n${JSON.stringify(all, null, 2)}`,
|
|
82
|
+
{ label: 'synthesis', phase: 'Synthesis', schema: SYNTH }
|
|
83
|
+
)
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# Skill skeletons
|
|
2
|
+
|
|
3
|
+
Two skeletons — pick by layer. Both stay lean; push detail into one-level-deep bundled files.
|
|
4
|
+
|
|
5
|
+
Frontmatter fields used in this toolkit: `name`, `description` (required-quality), `user-invocable`, `argument-hint` (optional), `allowed-tools`.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Reference skill (descriptive — knowledge)
|
|
10
|
+
|
|
11
|
+
No numbered procedures. Principles + pointers + heuristics.
|
|
12
|
+
|
|
13
|
+
```markdown
|
|
14
|
+
---
|
|
15
|
+
name: <aspect-noun> # e.g. navigation — NO platform prefix
|
|
16
|
+
description: <what it covers + when to reach for it + trigger words. Say "iOS/SwiftUI" so the router can disambiguate.>
|
|
17
|
+
user-invocable: true
|
|
18
|
+
allowed-tools: Read, Grep, Glob, Bash, Edit, Write
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
# <name> — <short title>
|
|
22
|
+
|
|
23
|
+
> **Layer:** reference (knowledge)
|
|
24
|
+
> **Use when:** <trigger> **Hand off to:** <sibling skill>
|
|
25
|
+
|
|
26
|
+
## Scope
|
|
27
|
+
In / out, 1–2 lines.
|
|
28
|
+
|
|
29
|
+
## Invariants <!-- non-negotiables + the why -->
|
|
30
|
+
## Conventions & golden paths <!-- point to canonical files; don't paste code -->
|
|
31
|
+
## Decision rules <!-- if X do A; when unsure, ask/verify -->
|
|
32
|
+
## Pitfalls <!-- known traps -->
|
|
33
|
+
## Escape hatches <!-- when this doesn't apply → which skill -->
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Workflow skill (imperative — action)
|
|
39
|
+
|
|
40
|
+
Has a numbered procedure, but only for the deterministic/irreversible spine. Cite reference skills for judgment. Always include a verification gate.
|
|
41
|
+
|
|
42
|
+
```markdown
|
|
43
|
+
---
|
|
44
|
+
name: <verb-phrase> # e.g. branch-and-pr
|
|
45
|
+
description: <what it does + when to run it + trigger words (iOS/SwiftUI).>
|
|
46
|
+
user-invocable: true
|
|
47
|
+
argument-hint: [<step> | ...]
|
|
48
|
+
allowed-tools: Bash, Read
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
# <name> — <short title>
|
|
52
|
+
|
|
53
|
+
> **Layer:** workflow (action)
|
|
54
|
+
> **Use when:** <trigger> **Don't use when:** <hand off>
|
|
55
|
+
|
|
56
|
+
## Scope
|
|
57
|
+
In / out, 1–2 lines.
|
|
58
|
+
|
|
59
|
+
## Invariants <!-- hard rules / guardrails -->
|
|
60
|
+
## Conventions & golden paths <!-- base branch, auth, canonical commands -->
|
|
61
|
+
## Decision rules <!-- branch when…, escalate when… -->
|
|
62
|
+
## Procedures <!-- IMPERATIVE: only deterministic/irreversible steps -->
|
|
63
|
+
1. ...
|
|
64
|
+
## Verification <!-- IMPERATIVE: prove it worked (build/run/test) -->
|
|
65
|
+
## Pitfalls
|
|
66
|
+
## Escape hatches
|
|
67
|
+
```
|
|
@@ -3,11 +3,12 @@
|
|
|
3
3
|
> Auto-generated by `pipeline/scripts/build-skills-index.mjs` - do not hand-edit.
|
|
4
4
|
> Regenerate with `node pipeline/scripts/build-skills-index.mjs`.
|
|
5
5
|
|
|
6
|
-
**
|
|
6
|
+
**228 skills** across 5 groups.
|
|
7
7
|
|
|
8
8
|
| Group | Name | Platform | Description |
|
|
9
9
|
|-------|------|----------|-------------|
|
|
10
10
|
| external | `accessibility-compliance-accessibility-audit` | - | You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, i |
|
|
11
|
+
| external | `agent-introspection-debugging` | - | \| |
|
|
11
12
|
| external | `agentflow` | - | Orchestrate autonomous AI development pipelines through your Kanban board (Asana, GitHub Projects, Linear). Manages multi-worker Claude Code |
|
|
12
13
|
| external | `alarmkit` | - | Implement AlarmKit alarms and countdown timers for iOS and iPadOS with Lock Screen, Dynamic Island, StandBy, and paired Apple Watch system U |
|
|
13
14
|
| external | `android_ui_verification` | - | Automated end-to-end UI testing and verification on an Android Emulator using ADB. |
|
|
@@ -28,6 +29,7 @@
|
|
|
28
29
|
| external | `authentication` | - | Implement iOS authentication flows with AuthenticationServices and LocalAuthentication. Use when building Sign in with Apple, passkey/WebAut |
|
|
29
30
|
| external | `avkit` | - | Create media playback experiences using AVKit. Use when adding video players with AVPlayerViewController, enabling Picture-in-Picture, routi |
|
|
30
31
|
| external | `background-processing` | - | Schedule and execute background work on iOS using BGTaskScheduler. Use when registering BGAppRefreshTask for short background fetches, BGPro |
|
|
32
|
+
| external | `backlog` | - | The engineering backlog registry for deferred-but-approved work in this codebase. Every job the user defers ('defer it', 'add it to the list |
|
|
31
33
|
| external | `callkit-voip` | - | Implement VoIP calling with CallKit and PushKit. Use when building incoming/outgoing call flows, registering for VoIP push notifications, co |
|
|
32
34
|
| external | `ci-cd-pipelines` | - | CI/CD pipelines: GitHub Actions workflows, Docker multi-stage builds, environment management, secret management, deployment strategies |
|
|
33
35
|
| external | `clean-code` | - | This skill embodies the principles of \"Clean Code\" by Robert C. Martin (Uncle Bob). Use it to transform \"code that works\" into \"code th |
|
|
@@ -43,6 +45,7 @@
|
|
|
43
45
|
| external | `core-motion` | - | Access Core Motion accelerometer, gyroscope, magnetometer, device-motion, pedometer, activity-recognition, altitude, headphone motion, batch |
|
|
44
46
|
| external | `core-nfc` | - | Read and write NFC tags using CoreNFC. Use when scanning NDEF tags, reading ISO7816/ISO15693/FeliCa/MIFARE tags, writing NDEF messages, hand |
|
|
45
47
|
| external | `coreml` | - | Integrate Core ML models in iOS apps for on-device machine learning inference. Covers model loading (.mlmodel, .mlpackage, .mlmodelc), predi |
|
|
48
|
+
| external | `council` | - | \| |
|
|
46
49
|
| external | `cryptokit` | - | Use Apple CryptoKit for Swift cryptographic primitives. Use when hashing with SHA-2 or SHA-3, generating HMACs, encrypting with AES-GCM or C |
|
|
47
50
|
| external | `css-modern` | - | Modern CSS: container queries, nesting, @layer, Grid/Flexbox patterns, custom properties, animations, and transitions |
|
|
48
51
|
| external | `database-patterns` | - | Database patterns: SQL best practices (PostgreSQL), indexing, query optimization, migrations, schema design, ORMs (SQLAlchemy, Prisma, Drizz |
|
|
@@ -181,7 +184,9 @@
|
|
|
181
184
|
| external | `rest-api-design` | - | REST API design: HTTP methods, status codes, pagination, versioning, rate limiting, caching headers, OpenAPI documentation |
|
|
182
185
|
| external | `retrofit-networking` | - | Build networking layers on Android with Retrofit, OkHttp, and Kotlin Coroutines. Covers suspend functions in API interfaces, OkHttp intercep |
|
|
183
186
|
| external | `room-database` | - | Implement Room database persistence on Android with @Entity, @Dao, @Database, Flow-based reactive queries, TypeConverters for complex types, |
|
|
187
|
+
| external | `search-first` | - | \| |
|
|
184
188
|
| external | `shareplay-activities` | - | Build shared real-time experiences using GroupActivities and SharePlay. Use when implementing shared media playback, collaborative app featu |
|
|
189
|
+
| external | `skill-creator` | - | Author and refine skills for a plugin/toolkit efficiently. Use when creating a new skill, trimming or splitting an existing one, writing a s |
|
|
185
190
|
| external | `speech-recognition` | - | Transcribe speech to text using Apple's Speech framework. Use when implementing live microphone transcription with AVAudioEngine, recognizin |
|
|
186
191
|
| external | `spm-build-analysis` | - | Analyze Swift Package Manager dependencies, package plugins, module variants, and CI-oriented build overhead that slow Xcode builds. Use whe |
|
|
187
192
|
| external | `storekit` | - | Implement, review, or improve in-app purchases and subscriptions using StoreKit 2. Use when building paywalls with SubscriptionStoreView or |
|