@ai-outfitter/outfitter 0.7.2 → 0.9.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 (89) hide show
  1. package/README.md +12 -2
  2. package/code/pi-extension/src/outfitter-extension.js +720 -0
  3. package/dist/agents/AdapterStatePaths.js +3 -1
  4. package/dist/agents/AdapterStatePaths.js.map +1 -1
  5. package/dist/agents/AgentAdapter.d.ts +3 -0
  6. package/dist/agents/AgentLaunch.js +5 -0
  7. package/dist/agents/AgentLaunch.js.map +1 -1
  8. package/dist/agents/OutfitterDocs.d.ts +2 -0
  9. package/dist/agents/OutfitterDocs.js +38 -0
  10. package/dist/agents/OutfitterDocs.js.map +1 -0
  11. package/dist/agents/claude/ClaudeAdapter.js +3 -2
  12. package/dist/agents/claude/ClaudeAdapter.js.map +1 -1
  13. package/dist/agents/pi/PiAdapter.js +24 -19
  14. package/dist/agents/pi/PiAdapter.js.map +1 -1
  15. package/dist/agents/pi/PiExtensionCache.d.ts +8 -0
  16. package/dist/agents/pi/PiExtensionCache.js +95 -5
  17. package/dist/agents/pi/PiExtensionCache.js.map +1 -1
  18. package/dist/agents/pi/PiSkillSources.d.ts +8 -0
  19. package/dist/agents/pi/PiSkillSources.js +69 -0
  20. package/dist/agents/pi/PiSkillSources.js.map +1 -0
  21. package/dist/cli/OutfitterCli.js +7 -2
  22. package/dist/cli/OutfitterCli.js.map +1 -1
  23. package/dist/cli/commands/PiLoginLaunch.js +28 -737
  24. package/dist/cli/commands/PiLoginLaunch.js.map +1 -1
  25. package/dist/cli/commands/RunCommand.d.ts +6 -17
  26. package/dist/cli/commands/RunCommand.js +115 -186
  27. package/dist/cli/commands/RunCommand.js.map +1 -1
  28. package/dist/cli/commands/SetupCommand.d.ts +4 -63
  29. package/dist/cli/commands/SetupCommand.js +13 -673
  30. package/dist/cli/commands/SetupCommand.js.map +1 -1
  31. package/dist/cli/commands/SyncCommand.d.ts +1 -1
  32. package/dist/cli/commands/SyncCommand.js +37 -12
  33. package/dist/cli/commands/SyncCommand.js.map +1 -1
  34. package/dist/cli/commands/run/RunFirstRunOnboarding.d.ts +7 -0
  35. package/dist/cli/commands/run/RunFirstRunOnboarding.js +52 -0
  36. package/dist/cli/commands/run/RunFirstRunOnboarding.js.map +1 -0
  37. package/dist/cli/commands/run/RunLaunchSummary.d.ts +2 -0
  38. package/dist/cli/commands/run/RunLaunchSummary.js +35 -0
  39. package/dist/cli/commands/run/RunLaunchSummary.js.map +1 -0
  40. package/dist/cli/commands/run/RunProfileResolution.d.ts +37 -0
  41. package/dist/cli/commands/run/RunProfileResolution.js +124 -0
  42. package/dist/cli/commands/run/RunProfileResolution.js.map +1 -0
  43. package/dist/cli/commands/run/RunStateWritePrompt.d.ts +2 -0
  44. package/dist/cli/commands/run/RunStateWritePrompt.js +29 -0
  45. package/dist/cli/commands/run/RunStateWritePrompt.js.map +1 -0
  46. package/dist/cli/commands/setup/SetupPrompts.d.ts +14 -0
  47. package/dist/cli/commands/setup/SetupPrompts.js +296 -0
  48. package/dist/cli/commands/setup/SetupPrompts.js.map +1 -0
  49. package/dist/cli/commands/setup/SetupSourceImport.d.ts +5 -0
  50. package/dist/cli/commands/setup/SetupSourceImport.js +177 -0
  51. package/dist/cli/commands/setup/SetupSourceImport.js.map +1 -0
  52. package/dist/cli/commands/setup/SetupSourceLaunch.d.ts +4 -0
  53. package/dist/cli/commands/setup/SetupSourceLaunch.js +65 -0
  54. package/dist/cli/commands/setup/SetupSourceLaunch.js.map +1 -0
  55. package/dist/cli/commands/setup/SetupStarterSource.d.ts +21 -0
  56. package/dist/cli/commands/setup/SetupStarterSource.js +133 -0
  57. package/dist/cli/commands/setup/SetupStarterSource.js.map +1 -0
  58. package/dist/cli/commands/setup/SetupTypes.d.ts +91 -0
  59. package/dist/cli/commands/setup/SetupTypes.js +26 -0
  60. package/dist/cli/commands/setup/SetupTypes.js.map +1 -0
  61. package/dist/compositeProfile/CompositeProfileCleanup.d.ts +9 -0
  62. package/dist/compositeProfile/CompositeProfileCleanup.js +87 -0
  63. package/dist/compositeProfile/CompositeProfileCleanup.js.map +1 -0
  64. package/dist/compositeProfile/StatePersistence.d.ts +16 -1
  65. package/dist/compositeProfile/StatePersistence.js +27 -5
  66. package/dist/compositeProfile/StatePersistence.js.map +1 -1
  67. package/dist/fs/SafeSymlink.d.ts +13 -0
  68. package/dist/fs/SafeSymlink.js +50 -0
  69. package/dist/fs/SafeSymlink.js.map +1 -0
  70. package/dist/settings/SettingsLoader.d.ts +1 -0
  71. package/dist/settings/SettingsLoader.js +10 -1
  72. package/dist/settings/SettingsLoader.js.map +1 -1
  73. package/doc/architecture/state_writeback_strategy.md +350 -0
  74. package/doc/documentation/README.md +21 -0
  75. package/doc/documentation/cli.md +74 -0
  76. package/doc/documentation/concepts.md +54 -0
  77. package/doc/documentation/first-time-cli-agent-users.md +137 -0
  78. package/doc/documentation/getting-started.md +49 -0
  79. package/doc/documentation/iterating-on-profiles.md +109 -0
  80. package/doc/documentation/profile-repository.md +111 -0
  81. package/doc/documentation/profiles.md +183 -0
  82. package/doc/documentation/state.md +224 -0
  83. package/doc/documentation/support-matrix.md +46 -0
  84. package/doc/documentation/switching-to-outfitter.md +130 -0
  85. package/doc/documentation/usecases/engineering.md +114 -0
  86. package/doc/documentation/usecases/organization-profile-catalog.md +140 -0
  87. package/doc/documentation/usecases/persona-reviews.md +173 -0
  88. package/doc/philosophy.md +25 -0
  89. package/package.json +3 -2
package/README.md CHANGED
@@ -6,9 +6,18 @@ 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
+
11
+ Run without installing.
12
+
13
+ ```bash
14
+ npx @ai-outfitter/outfitter
15
+ ```
16
+
17
+ Full install
18
+
9
19
  ```bash
10
20
  npm install -g @ai-outfitter/outfitter
11
- outfitter setup
12
21
  outfitter
13
22
  ```
14
23
 
@@ -40,6 +49,7 @@ controls:
40
49
  ## Documentation
41
50
 
42
51
  - [Getting started](./docs/documentation/getting-started.md)
52
+ - [What works today: adapter support matrix](./docs/documentation/support-matrix.md)
43
53
  - [Profiles](./docs/documentation/profiles.md)
44
54
  - [Profile repositories](./docs/documentation/profile-repository.md)
45
55
  - [State persistence](./docs/documentation/state.md)
@@ -49,7 +59,7 @@ controls:
49
59
 
50
60
  Use cases:
51
61
 
52
- - [Organization profile catalog](./docs/documentation/usecases/orginization-profile-catalog.md) — Publish shared team roles so new users can start with organization-approved defaults.
62
+ - [Organization profile catalog](./docs/documentation/usecases/organization-profile-catalog.md) — Publish shared team roles so new users can start with organization-approved defaults.
53
63
  - [Engineering profile catalog](./docs/documentation/usecases/engineering.md) — Package coding, platform, and review profiles for repeatable engineering workflows.
54
64
  - [Persona reviews](./docs/documentation/usecases/persona-reviews.md) — Create customer personas to get feedback on ideas, documentation, and designs.
55
65