thinkwork-cli 0.5.1 → 0.5.3
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/README.md +16 -11
- package/dist/cli.js +437 -83
- package/dist/terraform/examples/greenfield/main.tf +14 -9
- package/dist/terraform/examples/greenfield/terraform.tfvars.example +7 -4
- package/dist/terraform/modules/app/agentcore-memory/README.md +77 -0
- package/dist/terraform/modules/app/agentcore-memory/main.tf +159 -0
- package/dist/terraform/modules/app/agentcore-memory/scripts/create_or_find_memory.sh +212 -0
- package/dist/terraform/modules/app/agentcore-runtime/main.tf +29 -18
- package/dist/terraform/modules/app/hindsight-memory/README.md +50 -29
- package/dist/terraform/modules/app/hindsight-memory/main.tf +9 -7
- package/dist/terraform/modules/app/lambda-api/handlers.tf +43 -38
- package/dist/terraform/modules/app/lambda-api/main.tf +58 -0
- package/dist/terraform/modules/app/lambda-api/variables.tf +35 -5
- package/dist/terraform/modules/thinkwork/main.tf +44 -18
- package/dist/terraform/modules/thinkwork/outputs.tf +10 -5
- package/dist/terraform/modules/thinkwork/variables.tf +12 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ No repo clone required — `thinkwork init` scaffolds all Terraform modules from
|
|
|
90
90
|
|
|
91
91
|
- **AWS Region** — where to deploy (default: us-east-1)
|
|
92
92
|
- **Database engine** — `aurora-serverless` (production) or `rds-postgres` (dev, cheaper)
|
|
93
|
-
- **
|
|
93
|
+
- **Hindsight add-on** — optional y/N (managed AgentCore memory with automatic per-turn retention is always on; Hindsight adds ECS Fargate semantic + entity-graph retrieval alongside it)
|
|
94
94
|
- **Google OAuth** — optional social login for Cognito
|
|
95
95
|
- **Admin UI URL** — callback URL for the admin dashboard
|
|
96
96
|
- **Mobile app scheme** — deep link scheme for the mobile app
|
|
@@ -119,22 +119,27 @@ thinkwork status
|
|
|
119
119
|
```
|
|
120
120
|
|
|
121
121
|
```
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
122
|
+
⬡ dev
|
|
123
|
+
─────────────────────────────────────────
|
|
124
|
+
Source: AWS + local config
|
|
125
|
+
Region: us-east-1
|
|
126
|
+
Account: 123456789012
|
|
127
|
+
Lambda fns: 42
|
|
128
|
+
AgentCore: Active
|
|
129
|
+
Memory: managed (always on)
|
|
130
|
+
Hindsight: healthy
|
|
131
|
+
...
|
|
130
132
|
```
|
|
131
133
|
|
|
132
134
|
URLs are clickable in supported terminals (iTerm2, Windows Terminal, VS Code, etc.).
|
|
133
135
|
|
|
134
|
-
###
|
|
136
|
+
### Enable the Hindsight memory add-on
|
|
137
|
+
|
|
138
|
+
Managed AgentCore memory is always on. To also enable Hindsight (ECS Fargate
|
|
139
|
+
service for semantic + entity-graph retrieval) alongside it:
|
|
135
140
|
|
|
136
141
|
```bash
|
|
137
|
-
thinkwork config set
|
|
142
|
+
thinkwork config set enable-hindsight true -s dev --apply
|
|
138
143
|
```
|
|
139
144
|
|
|
140
145
|
### Deploy a specific tier
|