@ai-outfitter/outfitter 0.7.2 → 0.8.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.
Files changed (61) hide show
  1. package/README.md +4 -2
  2. package/code/pi-extension/src/outfitter-extension.js +720 -0
  3. package/dist/agents/AgentAdapter.d.ts +2 -0
  4. package/dist/agents/AgentLaunch.js +5 -0
  5. package/dist/agents/AgentLaunch.js.map +1 -1
  6. package/dist/agents/OutfitterDocs.d.ts +2 -0
  7. package/dist/agents/OutfitterDocs.js +38 -0
  8. package/dist/agents/OutfitterDocs.js.map +1 -0
  9. package/dist/agents/pi/PiAdapter.js +15 -14
  10. package/dist/agents/pi/PiAdapter.js.map +1 -1
  11. package/dist/agents/pi/PiSkillSources.d.ts +8 -0
  12. package/dist/agents/pi/PiSkillSources.js +69 -0
  13. package/dist/agents/pi/PiSkillSources.js.map +1 -0
  14. package/dist/cli/OutfitterCli.js +7 -2
  15. package/dist/cli/OutfitterCli.js.map +1 -1
  16. package/dist/cli/commands/PiLoginLaunch.js +25 -728
  17. package/dist/cli/commands/PiLoginLaunch.js.map +1 -1
  18. package/dist/cli/commands/RunCommand.d.ts +4 -17
  19. package/dist/cli/commands/RunCommand.js +10 -146
  20. package/dist/cli/commands/RunCommand.js.map +1 -1
  21. package/dist/cli/commands/SetupCommand.d.ts +4 -63
  22. package/dist/cli/commands/SetupCommand.js +13 -673
  23. package/dist/cli/commands/SetupCommand.js.map +1 -1
  24. package/dist/cli/commands/run/RunLaunchSummary.d.ts +2 -0
  25. package/dist/cli/commands/run/RunLaunchSummary.js +35 -0
  26. package/dist/cli/commands/run/RunLaunchSummary.js.map +1 -0
  27. package/dist/cli/commands/run/RunProfileResolution.d.ts +37 -0
  28. package/dist/cli/commands/run/RunProfileResolution.js +115 -0
  29. package/dist/cli/commands/run/RunProfileResolution.js.map +1 -0
  30. package/dist/cli/commands/setup/SetupPrompts.d.ts +14 -0
  31. package/dist/cli/commands/setup/SetupPrompts.js +296 -0
  32. package/dist/cli/commands/setup/SetupPrompts.js.map +1 -0
  33. package/dist/cli/commands/setup/SetupSourceImport.d.ts +5 -0
  34. package/dist/cli/commands/setup/SetupSourceImport.js +177 -0
  35. package/dist/cli/commands/setup/SetupSourceImport.js.map +1 -0
  36. package/dist/cli/commands/setup/SetupSourceLaunch.d.ts +4 -0
  37. package/dist/cli/commands/setup/SetupSourceLaunch.js +65 -0
  38. package/dist/cli/commands/setup/SetupSourceLaunch.js.map +1 -0
  39. package/dist/cli/commands/setup/SetupStarterSource.d.ts +21 -0
  40. package/dist/cli/commands/setup/SetupStarterSource.js +133 -0
  41. package/dist/cli/commands/setup/SetupStarterSource.js.map +1 -0
  42. package/dist/cli/commands/setup/SetupTypes.d.ts +91 -0
  43. package/dist/cli/commands/setup/SetupTypes.js +26 -0
  44. package/dist/cli/commands/setup/SetupTypes.js.map +1 -0
  45. package/doc/architecture/state_writeback_strategy.md +350 -0
  46. package/doc/documentation/README.md +21 -0
  47. package/doc/documentation/cli.md +74 -0
  48. package/doc/documentation/concepts.md +54 -0
  49. package/doc/documentation/first-time-cli-agent-users.md +137 -0
  50. package/doc/documentation/getting-started.md +49 -0
  51. package/doc/documentation/iterating-on-profiles.md +109 -0
  52. package/doc/documentation/profile-repository.md +111 -0
  53. package/doc/documentation/profiles.md +183 -0
  54. package/doc/documentation/state.md +204 -0
  55. package/doc/documentation/support-matrix.md +46 -0
  56. package/doc/documentation/switching-to-outfitter.md +130 -0
  57. package/doc/documentation/usecases/engineering.md +114 -0
  58. package/doc/documentation/usecases/organization-profile-catalog.md +140 -0
  59. package/doc/documentation/usecases/persona-reviews.md +173 -0
  60. package/doc/philosophy.md +25 -0
  61. package/package.json +3 -2
package/README.md CHANGED
@@ -6,9 +6,10 @@ If you have not tried [Pi](https://pi.dev) yet, Outfitter is the quickest path t
6
6
 
7
7
  ## Quick start
8
8
 
9
+ The first time outfitter runs it will start the setup flow to choose profiles and setup a model if pi is not already configured with one.
10
+
9
11
  ```bash
10
12
  npm install -g @ai-outfitter/outfitter
11
- outfitter setup
12
13
  outfitter
13
14
  ```
14
15
 
@@ -40,6 +41,7 @@ controls:
40
41
  ## Documentation
41
42
 
42
43
  - [Getting started](./docs/documentation/getting-started.md)
44
+ - [What works today: adapter support matrix](./docs/documentation/support-matrix.md)
43
45
  - [Profiles](./docs/documentation/profiles.md)
44
46
  - [Profile repositories](./docs/documentation/profile-repository.md)
45
47
  - [State persistence](./docs/documentation/state.md)
@@ -49,7 +51,7 @@ controls:
49
51
 
50
52
  Use cases:
51
53
 
52
- - [Organization profile catalog](./docs/documentation/usecases/orginization-profile-catalog.md) — Publish shared team roles so new users can start with organization-approved defaults.
54
+ - [Organization profile catalog](./docs/documentation/usecases/organization-profile-catalog.md) — Publish shared team roles so new users can start with organization-approved defaults.
53
55
  - [Engineering profile catalog](./docs/documentation/usecases/engineering.md) — Package coding, platform, and review profiles for repeatable engineering workflows.
54
56
  - [Persona reviews](./docs/documentation/usecases/persona-reviews.md) — Create customer personas to get feedback on ideas, documentation, and designs.
55
57