You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The installer downloads the repo, copies agents and hooks, configures `settings.json`, and optionally sets up daily auto-updates. It will prompt you to choose project-level or global install.
@@ -132,6 +148,25 @@ Then merge the hook into your `~/.claude/settings.json`:
132
148
133
149
Use the absolute path for global installs.
134
150
151
+
### Updating
152
+
153
+
If you enabled auto-updates during install, agents update daily at 9:00 AM. To update manually:
154
+
155
+
```bash
156
+
bash update.sh # Update global install
157
+
bash update.sh --project # Update project install
158
+
```
159
+
160
+
### Uninstalling
161
+
162
+
```bash
163
+
bash uninstall.sh # Interactive
164
+
bash uninstall.sh --global # Remove global install
165
+
bash uninstall.sh --project # Remove from current project
166
+
```
167
+
168
+
The uninstaller removes agents, hooks, settings entries, and auto-update schedulers.
169
+
135
170
### Verify
136
171
137
172
Start Claude Code in your Swift project and type `/agents`. You should see:
@@ -300,27 +335,35 @@ swift-agent-team/
300
335
hooks/
301
336
swift-team-eval.sh # Hook (macOS/Linux)
302
337
swift-team-eval.ps1 # Hook (Windows)
303
-
settings.json # Example hook config
338
+
settings.json # Hook config
339
+
install.sh # Installer (macOS/Linux)
340
+
update.sh # Manual update script
341
+
uninstall.sh # Uninstaller
304
342
LICENSE
305
343
README.md
306
344
```
307
345
308
346
## Contributing
309
347
310
-
Found a gap? Open an issue or PR. Contributions welcome:
348
+
I have been writing Swift for less than two years. I built these agents to help me learn faster and write better code, and I know there are patterns and frameworks I have not covered yet. If you know Swift better than I do -- and many of you will -- your contributions will make these agents better for everyone.
349
+
350
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. Here are some areas where help is especially welcome:
Found an agent gap? Use the [Agent Gap](https://github.com/taylorarndt/swift-agent-team/issues/new?template=agent_gap.yml) issue template. These reports directly improve agent instructions.
317
360
318
-
If you find this useful, please star the repo.
361
+
If you find this useful, please star the repo. It helps others find it.
319
362
320
363
## License
321
364
322
365
MIT
323
366
324
367
## About the Author
325
368
326
-
Built by [Taylor Arndt](https://github.com/taylorarndt), a developer and accessibility specialist who uses assistive technology daily. I build AI tools that write code the way it should be written -- accessible, concurrent, and modern.
369
+
Built by [Taylor Arndt](https://github.com/taylorarndt), a developer and accessibility specialist who is blind and uses assistive technology daily. I build AI tools that write code the way it should be written -- accessible, concurrent, and modern. I have been learning Swift for less than two years and built these agents to make sure AI keeps up with the language as it evolves. Contributions from experienced Swift developers are genuinely welcome.
0 commit comments