@fro.bot/systematic 2.3.3 → 2.4.1
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/README.md +12 -13
- package/agents/design/design-implementation-reviewer.md +2 -19
- package/agents/design/design-iterator.md +2 -31
- package/agents/design/figma-design-sync.md +2 -22
- package/agents/docs/ankane-readme-writer.md +2 -19
- package/agents/document-review/adversarial-document-reviewer.md +3 -2
- package/agents/document-review/coherence-reviewer.md +5 -7
- package/agents/document-review/design-lens-reviewer.md +3 -4
- package/agents/document-review/feasibility-reviewer.md +3 -4
- package/agents/document-review/product-lens-reviewer.md +25 -6
- package/agents/document-review/scope-guardian-reviewer.md +3 -4
- package/agents/document-review/security-lens-reviewer.md +3 -4
- package/agents/research/best-practices-researcher.md +4 -21
- package/agents/research/framework-docs-researcher.md +2 -19
- package/agents/research/git-history-analyzer.md +2 -19
- package/agents/research/issue-intelligence-analyst.md +2 -24
- package/agents/research/learnings-researcher.md +7 -28
- package/agents/research/repo-research-analyst.md +3 -32
- package/agents/research/slack-researcher.md +128 -0
- package/agents/review/agent-native-reviewer.md +109 -195
- package/agents/review/architecture-strategist.md +3 -19
- package/agents/review/cli-agent-readiness-reviewer.md +1 -27
- package/agents/review/code-simplicity-reviewer.md +5 -19
- package/agents/review/data-integrity-guardian.md +3 -19
- package/agents/review/data-migration-expert.md +3 -19
- package/agents/review/deployment-verification-agent.md +3 -19
- package/agents/review/pattern-recognition-specialist.md +4 -20
- package/agents/review/performance-oracle.md +3 -31
- package/agents/review/project-standards-reviewer.md +5 -5
- package/agents/review/schema-drift-detector.md +3 -19
- package/agents/review/security-sentinel.md +3 -25
- package/agents/review/testing-reviewer.md +3 -3
- package/agents/workflow/lint.md +1 -2
- package/agents/workflow/pr-comment-resolver.md +54 -22
- package/agents/workflow/spec-flow-analyzer.md +2 -25
- package/package.json +1 -1
- package/skills/agent-native-architecture/SKILL.md +28 -27
- package/skills/agent-native-architecture/references/agent-execution-patterns.md +3 -3
- package/skills/agent-native-architecture/references/agent-native-testing.md +1 -1
- package/skills/agent-native-architecture/references/mobile-patterns.md +1 -1
- package/skills/andrew-kane-gem-writer/SKILL.md +5 -5
- package/skills/ce-brainstorm/SKILL.md +43 -181
- package/skills/ce-compound/SKILL.md +143 -89
- package/skills/ce-compound-refresh/SKILL.md +48 -5
- package/skills/ce-ideate/SKILL.md +27 -242
- package/skills/ce-plan/SKILL.md +165 -81
- package/skills/ce-review/SKILL.md +348 -125
- package/skills/ce-review/references/findings-schema.json +5 -0
- package/skills/ce-review/references/persona-catalog.md +2 -2
- package/skills/ce-review/references/resolve-base.sh +5 -2
- package/skills/ce-review/references/subagent-template.md +25 -3
- package/skills/ce-work/SKILL.md +95 -242
- package/skills/ce-work-beta/SKILL.md +154 -301
- package/skills/dhh-rails-style/SKILL.md +13 -12
- package/skills/document-review/SKILL.md +56 -109
- package/skills/document-review/references/findings-schema.json +0 -23
- package/skills/document-review/references/subagent-template.md +13 -18
- package/skills/dspy-ruby/SKILL.md +8 -8
- package/skills/every-style-editor/SKILL.md +3 -2
- package/skills/frontend-design/SKILL.md +2 -3
- package/skills/git-commit/SKILL.md +1 -1
- package/skills/git-commit-push-pr/SKILL.md +81 -265
- package/skills/git-worktree/SKILL.md +20 -21
- package/skills/lfg/SKILL.md +10 -17
- package/skills/onboarding/SKILL.md +2 -2
- package/skills/onboarding/scripts/inventory.mjs +31 -7
- package/skills/proof/SKILL.md +134 -28
- package/skills/resolve-pr-feedback/SKILL.md +7 -2
- package/skills/setup/SKILL.md +1 -1
- package/skills/test-browser/SKILL.md +10 -11
- package/skills/test-xcode/SKILL.md +6 -3
- package/dist/lib/manifest.d.ts +0 -39
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: test-xcode
|
|
3
|
-
description: Build and test iOS apps on simulator using XcodeBuildMCP
|
|
4
|
-
argument-hint:
|
|
3
|
+
description: "Build and test iOS apps on simulator using XcodeBuildMCP. Use after making iOS code changes, before creating a PR, or when verifying app behavior and checking for crashes on simulator."
|
|
4
|
+
argument-hint: "[scheme name or 'current' to use default]"
|
|
5
5
|
disable-model-invocation: true
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -94,6 +94,9 @@ Call `get_sim_logs` with the simulator UUID. Look for:
|
|
|
94
94
|
- Error-level log messages
|
|
95
95
|
- Failed network requests
|
|
96
96
|
|
|
97
|
+
**Known automation limitation — SwiftUI Text links:**
|
|
98
|
+
Simulated taps (via XcodeBuildMCP or any simulator automation tool) do not trigger gesture recognizers on SwiftUI `Text` views with inline `AttributedString` links. Taps report success but have no effect. This is a platform limitation — inline links are not exposed as separate elements in the accessibility tree. When a tap on a Text link has no visible effect, prompt the user to tap manually in the simulator. If the target URL is known, `xcrun simctl openurl <device> <URL>` can open it directly as a fallback.
|
|
99
|
+
|
|
97
100
|
### 6. Human Verification (When Required)
|
|
98
101
|
|
|
99
102
|
Pause for human input when testing touches flows that require device interaction.
|
|
@@ -105,6 +108,7 @@ Pause for human input when testing touches flows that require device interaction
|
|
|
105
108
|
| In-app purchases | "Complete a sandbox purchase" |
|
|
106
109
|
| Camera/Photos | "Grant permissions and verify camera works" |
|
|
107
110
|
| Location | "Allow location access and verify map updates" |
|
|
111
|
+
| SwiftUI Text links | "Please tap on [element description] manually — automated taps cannot trigger inline text links" |
|
|
108
112
|
|
|
109
113
|
Ask the user (using the platform's question tool — e.g., `question` in OpenCode, `request_user_input` in Codex, `ask_user` in Gemini — or present numbered options and wait):
|
|
110
114
|
|
|
@@ -208,4 +212,3 @@ After testing:
|
|
|
208
212
|
## Integration with ce:review
|
|
209
213
|
|
|
210
214
|
When reviewing PRs that touch iOS code, the `ce:review` workflow can spawn an agent to run this skill, build on the simulator, test key screens, and check for crashes.
|
|
211
|
-
|
package/dist/lib/manifest.d.ts
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
export interface ManifestSource {
|
|
2
|
-
repo: string;
|
|
3
|
-
branch: string;
|
|
4
|
-
url: string;
|
|
5
|
-
}
|
|
6
|
-
export interface ManifestRewrite {
|
|
7
|
-
field: string;
|
|
8
|
-
reason: string;
|
|
9
|
-
original?: string;
|
|
10
|
-
}
|
|
11
|
-
export interface ManualOverride {
|
|
12
|
-
field: string;
|
|
13
|
-
reason: string;
|
|
14
|
-
original?: string;
|
|
15
|
-
overridden_at: string;
|
|
16
|
-
}
|
|
17
|
-
export interface ManifestDefinition {
|
|
18
|
-
source: string;
|
|
19
|
-
upstream_path: string;
|
|
20
|
-
upstream_commit: string;
|
|
21
|
-
synced_at: string;
|
|
22
|
-
notes: string;
|
|
23
|
-
files?: string[];
|
|
24
|
-
upstream_content_hash?: string;
|
|
25
|
-
rewrites?: ManifestRewrite[];
|
|
26
|
-
manual_overrides?: ManualOverride[];
|
|
27
|
-
}
|
|
28
|
-
export interface SyncManifest {
|
|
29
|
-
$schema?: string;
|
|
30
|
-
converter_version?: number;
|
|
31
|
-
sources: Record<string, ManifestSource>;
|
|
32
|
-
definitions: Record<string, ManifestDefinition>;
|
|
33
|
-
}
|
|
34
|
-
export declare function validateManifest(data: unknown): data is SyncManifest;
|
|
35
|
-
export declare function readManifest(filePath: string): SyncManifest | null;
|
|
36
|
-
export declare function writeManifest(filePath: string, manifest: SyncManifest): void;
|
|
37
|
-
export declare function findStaleEntries(manifest: SyncManifest, existingPaths: string[]): string[];
|
|
38
|
-
export declare function listDefinitionsBySource(manifest: SyncManifest, source: string): string[];
|
|
39
|
-
export declare function getUpstreamHashes(manifest: SyncManifest, source: string): Record<string, string>;
|