rentman-cli 2.0.0 → 2.1.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.
package/.env.example CHANGED
@@ -1,39 +1,39 @@
1
- # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2
- # Rentman CLI - Environment Variables Template
3
- # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
4
- #
5
- # 📝 NOTE: CLI uses local Conf storage for user identity
6
- # These environment variables are OPTIONAL and mainly for CI/CD
7
- # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
8
-
9
- # Supabase Configuration (Public - safe to include)
10
- SUPABASE_URL=https://uoekolfgbbmvhzsfkjef.supabase.co
11
- SUPABASE_ANON_KEY=
12
-
13
- # Agent Gateway Endpoint
14
- # Production:
15
- AGENT_GATEWAY_URL=https://agent-gateway-1021032187840.us-central1.run.app/v1
16
-
17
- # Development (uncomment for local testing):
18
- # AGENT_GATEWAY_URL=http://localhost:3001/v1
19
-
20
- # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
21
- # Optional: Override Identity Storage
22
- # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
23
- # By default, CLI stores identity in ~/.config/rentman/
24
- # Set these ONLY for CI/CD environments or automation
25
-
26
- # RENTMAN_AGENT_ID=your_agent_id
27
- # RENTMAN_SECRET_KEY=your_secret_key_base64
28
-
29
- # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
30
- # Optional: API Key Authentication (Alternative to NACL)
31
- # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
32
- # Use API keys for bots/automation that don't need cryptographic signing
33
- # RENTMAN_API_KEY=sk_live_your_api_key_here
34
-
35
- # Logging
36
- LOG_LEVEL=info
37
-
38
- # Environment
39
- NODE_ENV=production
1
+ # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2
+ # Rentman CLI - Environment Variables Template
3
+ # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
4
+ #
5
+ # 📝 NOTE: CLI uses local Conf storage for user identity
6
+ # These environment variables are OPTIONAL and mainly for CI/CD
7
+ # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
8
+
9
+ # Supabase Configuration (Public - safe to include)
10
+ SUPABASE_URL=https://uoekolfgbbmvhzsfkjef.supabase.co
11
+ SUPABASE_ANON_KEY=
12
+
13
+ # Agent Gateway Endpoint
14
+ # Production:
15
+ AGENT_GATEWAY_URL=https://rentman-api-346436028870.us-central1.run.app/v1
16
+
17
+ # Development (uncomment for local testing):
18
+ # AGENT_GATEWAY_URL=http://localhost:3001/v1
19
+
20
+ # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
21
+ # Optional: Override Identity Storage
22
+ # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
23
+ # By default, CLI stores identity in ~/.config/rentman/
24
+ # Set these ONLY for CI/CD environments or automation
25
+
26
+ # RENTMAN_AGENT_ID=your_agent_id
27
+ # RENTMAN_SECRET_KEY=your_secret_key_base64
28
+
29
+ # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
30
+ # Optional: API Key Authentication (Alternative to NACL)
31
+ # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
32
+ # Use API keys for bots/automation that don't need cryptographic signing
33
+ # RENTMAN_API_KEY=sk_live_your_api_key_here
34
+
35
+ # Logging
36
+ LOG_LEVEL=info
37
+
38
+ # Environment
39
+ NODE_ENV=production
package/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## v2.1.0 (2026-02-08) - Security Release
2
+
3
+ - Remove hardcoded secrets
4
+ - Add secure identity storage
5
+ - Add NACL signature auth