@stackwright-pro/otters 1.0.0-alpha.7 → 1.0.0-alpha.71
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/LICENSE +21 -0
- package/README.md +7 -6
- package/fixtures/fhir-us-core-subset.json +719 -0
- package/package.json +10 -7
- package/scripts/add-pipeline-declarations.py +201 -0
- package/scripts/generate-checksums.js +4 -2
- package/scripts/install-agents.js +5 -2
- package/scripts/launch-raft.cjs +13 -0
- package/scripts/sanity-check-pipeline.mjs +185 -0
- package/scripts/strip-artifact-schemas.cjs +133 -0
- package/src/checksums.json +15 -9
- package/src/stackwright-pro-api-otter.json +73 -96
- package/src/stackwright-pro-auth-otter.json +39 -790
- package/src/stackwright-pro-dashboard-otter.json +40 -662
- package/src/stackwright-pro-data-otter.json +36 -535
- package/src/stackwright-pro-designer-otter.json +17 -15
- package/src/stackwright-pro-domain-expert-otter.json +22 -0
- package/src/stackwright-pro-foreman-otter.json +30 -653
- package/src/stackwright-pro-form-wizard-otter.json +40 -0
- package/src/stackwright-pro-geo-otter.json +53 -0
- package/src/stackwright-pro-page-otter.json +27 -6
- package/src/stackwright-pro-polish-otter.json +62 -0
- package/src/stackwright-pro-qa-otter.json +63 -0
- package/src/stackwright-pro-scaffold-otter.json +40 -0
- package/src/stackwright-pro-theme-otter.json +35 -18
- package/src/stackwright-services-otter-system.md +192 -0
- package/src/stackwright-services-otter.json +61 -0
- package/src/python-bridge.ts +0 -391
- package/src/question-adapter.ts +0 -296
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
PROPRIETARY SOFTWARE LICENSE
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-2026 Per Aspera LLC. All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are the
|
|
6
|
+
proprietary and confidential property of Per Aspera LLC ("Company").
|
|
7
|
+
|
|
8
|
+
RESTRICTIONS: You may not use, copy, modify, merge, publish, distribute,
|
|
9
|
+
sublicense, sell, or otherwise exploit this Software or any portion thereof
|
|
10
|
+
without the express prior written consent of the Company.
|
|
11
|
+
|
|
12
|
+
GOVERNMENT USE: Use, duplication, or disclosure by the U.S. Government is
|
|
13
|
+
subject to restrictions as set forth in FAR 52.227-19 (Commercial Computer
|
|
14
|
+
Software - Restricted Rights) and DFARS 252.227-7013 (Rights in Technical
|
|
15
|
+
Data and Computer Software), as applicable.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
IMPLIED. IN NO EVENT SHALL THE COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES, OR
|
|
19
|
+
OTHER LIABILITY ARISING FROM THE USE OF THE SOFTWARE.
|
|
20
|
+
|
|
21
|
+
For licensing inquiries: legal@peraspera.com
|
package/README.md
CHANGED
|
@@ -118,12 +118,13 @@ When Pro otters combine with the OSS raft, these capabilities emerge:
|
|
|
118
118
|
|
|
119
119
|
## The Pro Otter Raft
|
|
120
120
|
|
|
121
|
-
| Otter
|
|
122
|
-
|
|
|
123
|
-
| 🦦🦦 **Foreman Otter**
|
|
124
|
-
| 🦦📡 **API Otter**
|
|
125
|
-
| 🦦📊 **Dashboard Otter**
|
|
126
|
-
| 🦦🔗 **Data Otter**
|
|
121
|
+
| Otter | Role | Output |
|
|
122
|
+
| ------------------------------------- | -------------------- | ------------------------------------------------------------------------------- |
|
|
123
|
+
| 🦦🦦 **Foreman Otter** | Project coordinator | Orchestrates full-stack builds (delegates to unified Foreman) |
|
|
124
|
+
| 🦦📡 **API Otter** | OpenAPI discovery | API entity types, endpoints |
|
|
125
|
+
| 🦦📊 **Dashboard Otter** | Live data views | Typed API components |
|
|
126
|
+
| 🦦🔗 **Data Otter** | Endpoint integration | ISR config, filters |
|
|
127
|
+
| `stackwright-pro-domain-expert-otter` | Utility | Answers specialist questions from the use case document in non-interactive mode |
|
|
127
128
|
|
|
128
129
|
---
|
|
129
130
|
|