├── .gitignore ├── LICENSE ├── README.md ├── docs ├── appkit.md ├── mcp-best-practices.mdc ├── mcp-releasing.mdc ├── modern-swift.md ├── swift-argument-parser.mdc ├── swift-concurrency.md ├── swift-observable.mdc ├── swift-observation.mdc ├── swift-testing-api.mdc ├── swift-testing-playbook.mdc ├── swift6-migration.mdc ├── swiftdata.md ├── swiftui.md └── uikit.md ├── global-rules ├── github-issue-creation.mdc ├── mcp-peekaboo-setup.mdc ├── mcp-sync-rule.md ├── mcp-sync.sh ├── setup-mcps.sh ├── steipete-mcps.md └── terminal-title-wrapper.zsh ├── install-project-rules.sh ├── project-rules ├── add-to-changelog.mdc ├── analyze-issue.mdc ├── bug-fix.mdc ├── check.mdc ├── clean.mdc ├── code-analysis.mdc ├── commit-fast.mdc ├── commit.mdc ├── context-prime.mdc ├── continuous-improvement.mdc ├── create-command.mdc ├── create-docs.mdc ├── cursor-rules-meta-guide.mdc ├── five.mdc ├── implement-task.mdc ├── mcp-inspector-debugging.mdc ├── mermaid.mdc ├── modern-swift.mdc ├── pr-review.mdc ├── safari-automation.mdc ├── screenshot-automation.mdc └── update-docs.mdc ├── swift6-migration-compact.md └── tweak-claude.sh /.gitignore: -------------------------------------------------------------------------------- 1 | # macOS 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/README.md -------------------------------------------------------------------------------- /docs/appkit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/appkit.md -------------------------------------------------------------------------------- /docs/mcp-best-practices.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/mcp-best-practices.mdc -------------------------------------------------------------------------------- /docs/mcp-releasing.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/mcp-releasing.mdc -------------------------------------------------------------------------------- /docs/modern-swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/modern-swift.md -------------------------------------------------------------------------------- /docs/swift-argument-parser.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/swift-argument-parser.mdc -------------------------------------------------------------------------------- /docs/swift-concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/swift-concurrency.md -------------------------------------------------------------------------------- /docs/swift-observable.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/swift-observable.mdc -------------------------------------------------------------------------------- /docs/swift-observation.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/swift-observation.mdc -------------------------------------------------------------------------------- /docs/swift-testing-api.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/swift-testing-api.mdc -------------------------------------------------------------------------------- /docs/swift-testing-playbook.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/swift-testing-playbook.mdc -------------------------------------------------------------------------------- /docs/swift6-migration.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/swift6-migration.mdc -------------------------------------------------------------------------------- /docs/swiftdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/swiftdata.md -------------------------------------------------------------------------------- /docs/swiftui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/swiftui.md -------------------------------------------------------------------------------- /docs/uikit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/docs/uikit.md -------------------------------------------------------------------------------- /global-rules/github-issue-creation.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/global-rules/github-issue-creation.mdc -------------------------------------------------------------------------------- /global-rules/mcp-peekaboo-setup.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/global-rules/mcp-peekaboo-setup.mdc -------------------------------------------------------------------------------- /global-rules/mcp-sync-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/global-rules/mcp-sync-rule.md -------------------------------------------------------------------------------- /global-rules/mcp-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/global-rules/mcp-sync.sh -------------------------------------------------------------------------------- /global-rules/setup-mcps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/global-rules/setup-mcps.sh -------------------------------------------------------------------------------- /global-rules/steipete-mcps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/global-rules/steipete-mcps.md -------------------------------------------------------------------------------- /global-rules/terminal-title-wrapper.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/global-rules/terminal-title-wrapper.zsh -------------------------------------------------------------------------------- /install-project-rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/install-project-rules.sh -------------------------------------------------------------------------------- /project-rules/add-to-changelog.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/add-to-changelog.mdc -------------------------------------------------------------------------------- /project-rules/analyze-issue.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/analyze-issue.mdc -------------------------------------------------------------------------------- /project-rules/bug-fix.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/bug-fix.mdc -------------------------------------------------------------------------------- /project-rules/check.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/check.mdc -------------------------------------------------------------------------------- /project-rules/clean.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/clean.mdc -------------------------------------------------------------------------------- /project-rules/code-analysis.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/code-analysis.mdc -------------------------------------------------------------------------------- /project-rules/commit-fast.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/commit-fast.mdc -------------------------------------------------------------------------------- /project-rules/commit.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/commit.mdc -------------------------------------------------------------------------------- /project-rules/context-prime.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/context-prime.mdc -------------------------------------------------------------------------------- /project-rules/continuous-improvement.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/continuous-improvement.mdc -------------------------------------------------------------------------------- /project-rules/create-command.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/create-command.mdc -------------------------------------------------------------------------------- /project-rules/create-docs.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/create-docs.mdc -------------------------------------------------------------------------------- /project-rules/cursor-rules-meta-guide.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/cursor-rules-meta-guide.mdc -------------------------------------------------------------------------------- /project-rules/five.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/five.mdc -------------------------------------------------------------------------------- /project-rules/implement-task.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/implement-task.mdc -------------------------------------------------------------------------------- /project-rules/mcp-inspector-debugging.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/mcp-inspector-debugging.mdc -------------------------------------------------------------------------------- /project-rules/mermaid.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/mermaid.mdc -------------------------------------------------------------------------------- /project-rules/modern-swift.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/modern-swift.mdc -------------------------------------------------------------------------------- /project-rules/pr-review.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/pr-review.mdc -------------------------------------------------------------------------------- /project-rules/safari-automation.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/safari-automation.mdc -------------------------------------------------------------------------------- /project-rules/screenshot-automation.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/screenshot-automation.mdc -------------------------------------------------------------------------------- /project-rules/update-docs.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/project-rules/update-docs.mdc -------------------------------------------------------------------------------- /swift6-migration-compact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/swift6-migration-compact.md -------------------------------------------------------------------------------- /tweak-claude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steipete/agent-rules/HEAD/tweak-claude.sh --------------------------------------------------------------------------------