liteagents 2.4.0 → 2.4.1

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/docs/PRIVACY.md CHANGED
@@ -16,7 +16,7 @@ Agentic Kit respects your privacy. This document explains our optional telemetry
16
16
  When you first run the Agentic Kit installer, you'll be asked:
17
17
 
18
18
  ```
19
- Would you like to share anonymous usage statistics to help improve agentflow? (y/N)
19
+ Would you like to share anonymous usage statistics to help improve liteagents? (y/N)
20
20
  ```
21
21
 
22
22
  - **Default is NO**: If you just press Enter, telemetry is disabled
@@ -39,7 +39,7 @@ When you **opt-in**, we collect the following anonymous data:
39
39
  ### System Information
40
40
  - **Operating system type**: Platform name (e.g., linux, darwin, win32)
41
41
  - **Node.js version**: The version of Node.js you're using
42
- - **Agentic Kit version**: The version of agentflow you installed
42
+ - **Agentic Kit version**: The version of liteagents you installed
43
43
 
44
44
  ### Upgrade Events
45
45
  - **From variant**: The variant you upgraded from
@@ -67,7 +67,7 @@ We explicitly **do not** collect:
67
67
  Currently, telemetry data is stored locally on your machine at:
68
68
 
69
69
  ```
70
- ~/.agentic-kit-telemetry.log
70
+ ~/.liteagents-telemetry.log
71
71
  ```
72
72
 
73
73
  In future versions, with your consent, this data may be sent to a secure analytics endpoint to help aggregate usage patterns. Any such change will:
@@ -82,7 +82,7 @@ In future versions, with your consent, this data may be sent to a secure analyti
82
82
 
83
83
  Your telemetry consent is stored in:
84
84
  ```
85
- ~/.agentic-kit-config.json
85
+ ~/.liteagents-config.json
86
86
  ```
87
87
 
88
88
  You can view this file to see your current setting:
@@ -98,7 +98,7 @@ You can view this file to see your current setting:
98
98
  You have several options to disable telemetry:
99
99
 
100
100
  #### Option 1: Edit Config File
101
- Edit `~/.agentic-kit-config.json` and set:
101
+ Edit `~/.liteagents-config.json` and set:
102
102
  ```json
103
103
  {
104
104
  "telemetry": false
@@ -119,7 +119,7 @@ This flag:
119
119
  #### Option 3: Delete Config File
120
120
  Remove the config file completely:
121
121
  ```bash
122
- rm ~/.agentic-kit-config.json
122
+ rm ~/.liteagents-config.json
123
123
  ```
124
124
 
125
125
  You'll be prompted again on next installation.
@@ -128,19 +128,19 @@ You'll be prompted again on next installation.
128
128
 
129
129
  To enable telemetry after previously declining:
130
130
 
131
- 1. Edit `~/.agentic-kit-config.json` and set `"telemetry": true`
131
+ 1. Edit `~/.liteagents-config.json` and set `"telemetry": true`
132
132
  2. Or delete the config file and run installer again to be re-prompted
133
133
 
134
134
  ## View Collected Data
135
135
 
136
136
  All locally collected telemetry is stored in plaintext at:
137
137
  ```
138
- ~/.agentic-kit-telemetry.log
138
+ ~/.liteagents-telemetry.log
139
139
  ```
140
140
 
141
141
  You can view this file anytime to see exactly what data has been collected:
142
142
  ```bash
143
- cat ~/.agentic-kit-telemetry.log
143
+ cat ~/.liteagents-telemetry.log
144
144
  ```
145
145
 
146
146
  Each entry is a JSON object on a single line, for example:
@@ -153,8 +153,8 @@ Each entry is a JSON object on a single line, for example:
153
153
  To completely remove all telemetry data from your system:
154
154
 
155
155
  ```bash
156
- rm ~/.agentic-kit-telemetry.log
157
- rm ~/.agentic-kit-config.json
156
+ rm ~/.liteagents-telemetry.log
157
+ rm ~/.liteagents-config.json
158
158
  ```
159
159
 
160
160
  This removes:
@@ -176,7 +176,7 @@ Anonymous usage statistics help us:
176
176
 
177
177
  If you have questions about our privacy policy or data collection:
178
178
 
179
- - **GitHub Issues**: https://github.com/amrhas82/agentflow/issues
179
+ - **GitHub Issues**: https://github.com/amrhas82/liteagents/issues
180
180
  - **Review Code**: Our telemetry code is open source in `installer/telemetry.js`
181
181
  - **Request Clarification**: Open an issue if anything is unclear
182
182
 
@@ -1,102 +1,44 @@
1
- # Publishing Guide - Agentic Kit
1
+ # Publishing Guide - liteagents
2
2
 
3
- This guide documents how to publish Agentic Kit to npm.js, GitHub Packages, and Claude Code marketplaces.
3
+ This guide documents how to publish liteagents to npm and Claude Code marketplaces.
4
4
 
5
5
  ---
6
6
 
7
7
  ## Table of Contents
8
8
 
9
9
  1. [Quick Publishing](#quick-publishing)
10
- 2. [Publishing to npm.js](#publishing-to-npmjs)
11
- 3. [Publishing to GitHub Packages](#publishing-to-github-packages)
12
- 4. [Publishing to Both Registries](#publishing-to-both-registries)
13
- 5. [Publishing to Claude Code Marketplace](#publishing-to-claude-code-marketplace)
14
- 6. [Version Management](#version-management)
15
- 7. [Troubleshooting](#troubleshooting)
10
+ 2. [Publishing to npm](#publishing-to-npm)
11
+ 3. [Publishing to Claude Code Marketplace](#publishing-to-claude-code-marketplace)
12
+ 4. [Version Management](#version-management)
13
+ 5. [Troubleshooting](#troubleshooting)
16
14
 
17
15
  ---
18
16
 
19
17
  ## Quick Publishing
20
18
 
21
- ### Publish to Both npm.js and GitHub Packages
19
+ ### Publish to npm
22
20
 
23
21
  ```bash
24
- # One command to publish everywhere!
25
- npm run publish:both
22
+ # Using the publish script
23
+ ./scripts/publish.sh
24
+
25
+ # Or directly
26
+ npm publish --access public
26
27
  ```
27
28
 
28
29
  **Requirements:**
29
30
  - Logged into npm: `npm login`
30
- - GitHub token set: `export GITHUB_TOKEN=ghp_your_token_here`
31
- - See [First-Time Setup](#first-time-setup) below
32
-
33
- ### Individual Registries
34
-
35
- ```bash
36
- # Just npm.js
37
- npm run publish:npm
38
-
39
- # Just GitHub Packages
40
- npm run publish:github
41
- ```
42
-
43
- ---
44
-
45
- ## First-Time Setup
46
-
47
- ### Setup for npm.js
48
-
49
- ```bash
50
- npm login
51
- ```
52
-
53
- Enter your npm credentials when prompted.
54
-
55
- ### Setup for GitHub Packages
56
-
57
- **One-time setup required.** See detailed guide: [`GITHUB_SETUP.md`](GITHUB_SETUP.md)
58
-
59
- **Quick version:**
60
-
61
- 1. **Create GitHub Token:** https://github.com/settings/tokens
62
- - Click "Generate new token (classic)"
63
- - Select scopes: `write:packages`, `read:packages`
64
- - Copy token (starts with `ghp_`)
65
-
66
- 2. **Set Environment Variable:**
67
-
68
- **Option A: Using `pass` (Recommended)** 🔐
69
- ```bash
70
- # Store token in pass
71
- pass insert amr/github
72
-
73
- # Export from pass (or the script will do it automatically!)
74
- export GITHUB_TOKEN=$(pass show amr/github)
75
- ```
76
- **See:** [PASS_INTEGRATION.md](PASS_INTEGRATION.md)
77
-
78
- **Option B: Direct export**
79
- ```bash
80
- # Linux/macOS
81
- export GITHUB_TOKEN=ghp_your_token_here
82
-
83
- # Add to ~/.bashrc or ~/.zshrc for persistence
84
- echo 'export GITHUB_TOKEN=ghp_your_token_here' >> ~/.bashrc
85
- ```
86
-
87
- 3. **Verify:**
88
- ```bash
89
- echo $GITHUB_TOKEN # Should show your token
90
- ```
31
+ - All changes committed to git
32
+ - Package validation passes: `npm run validate`
91
33
 
92
34
  ---
93
35
 
94
- ## Publishing to npm.js
36
+ ## Publishing to npm
95
37
 
96
38
  ### Prerequisites
97
39
 
98
40
  - npm account (create at https://www.npmjs.com/signup)
99
- - Access to the `agentflow` package
41
+ - Access to the `liteagents` package
100
42
  - All changes committed to git
101
43
 
102
44
  ### Publishing Process
@@ -122,7 +64,7 @@ This checks:
122
64
  #### 3. Publish
123
65
 
124
66
  ```bash
125
- npm run publish:npm
67
+ ./scripts/publish.sh
126
68
  ```
127
69
 
128
70
  Or manually:
@@ -133,113 +75,16 @@ npm publish --access public
133
75
  #### 4. Verify Publication
134
76
 
135
77
  Check your package page:
136
- - https://www.npmjs.com/package/agentflow
78
+ - https://www.npmjs.com/package/liteagents
137
79
 
138
80
  Test installation:
139
81
  ```bash
140
- npx agentflow --help
141
- npx agentic-kit --variant=lite
142
- ```
143
-
144
- ---
145
-
146
- ## Publishing to GitHub Packages
147
-
148
- ### Prerequisites
149
-
150
- - GitHub account with access to `amrhas82/agentic-kit` repository
151
- - GitHub Personal Access Token (see [GITHUB_SETUP.md](GITHUB_SETUP.md))
152
- - `GITHUB_TOKEN` environment variable set
153
-
154
- ### Publishing Process
155
-
156
- #### 1. Verify GitHub Token
157
-
158
- ```bash
159
- echo $GITHUB_TOKEN # Should show ghp_...
160
- ```
161
-
162
- If not set, see [First-Time Setup](#first-time-setup).
163
-
164
- #### 2. Publish
165
-
166
- ```bash
167
- npm run publish:github
168
- ```
169
-
170
- Or manually:
171
- ```bash
172
- npm publish --registry https://npm.pkg.github.com
173
- ```
174
-
175
- #### 3. Verify Publication
176
-
177
- 1. Go to: https://github.com/amrhas82/agentflow
178
- 2. Click **"Packages"** on the right sidebar
179
- 3. You should see `agentflow` listed
180
-
181
- ### Installing from GitHub Packages
182
-
183
- Users need to configure their `.npmrc`:
184
-
185
- ```
186
- @amrhas82:registry=https://npm.pkg.github.com
187
- //npm.pkg.github.com/:_authToken=THEIR_GITHUB_TOKEN
188
- ```
189
-
190
- Then install:
191
- ```bash
192
- npm install agentflow
82
+ npm install -g liteagents
83
+ liteagents --help
193
84
  ```
194
85
 
195
86
  ---
196
87
 
197
- ## Publishing to Both Registries
198
-
199
- ### Automated (Recommended)
200
-
201
- Use the publish script:
202
-
203
- ```bash
204
- ./publish.sh
205
- ```
206
-
207
- Or npm script:
208
- ```bash
209
- npm run publish:both
210
- ```
211
-
212
- This will:
213
- 1. Validate package
214
- 2. Publish to npm.js
215
- 3. Publish to GitHub Packages (if `GITHUB_TOKEN` is set)
216
-
217
- ### Manual
218
-
219
- ```bash
220
- # 1. Publish to npm.js
221
- npm publish --registry https://registry.npmjs.org --access public
222
-
223
- # 2. Publish to GitHub Packages
224
- npm publish --registry https://npm.pkg.github.com
225
- ```
226
-
227
- ### Why Publish to Both?
228
-
229
- **npm.js:**
230
- - ✅ Easier for users (no GitHub token required)
231
- - ✅ Works with `npx` out of the box
232
- - ✅ Better discovery/SEO
233
- - ✅ Standard npm workflow
234
-
235
- **GitHub Packages:**
236
- - ✅ Integrated with GitHub repository
237
- - ✅ Shows up on repo page
238
- - ✅ Easier access control (can be private)
239
- - ✅ Better for GitHub-based workflows
240
-
241
- ---
242
-
243
88
  ## Publishing to Claude Code Marketplace
244
89
 
245
90
  ### Current Options (2025)
@@ -251,7 +96,7 @@ Claude Code doesn't have a centralized official Anthropic marketplace yet. There
251
96
  Users can install directly from GitHub without marketplace approval:
252
97
 
253
98
  ```
254
- /plugin add github:amrhas82/agentflow
99
+ /plugin add github:amrhas82/liteagents
255
100
  ```
256
101
 
257
102
  **No submission required!** Works as soon as you push to GitHub.
@@ -267,24 +112,14 @@ Host your own marketplace catalog: `.claude-plugin/marketplace.json`
267
112
 
268
113
  ```json
269
114
  {
270
- "name": "Agentic Kit Official",
115
+ "name": "liteagents Official",
271
116
  "owner": "amrhas82",
272
- "description": "Official marketplace for Agentic Kit variants",
117
+ "description": "Lightweight CLI agents for development",
273
118
  "plugins": [
274
119
  {
275
- "name": "agentflow-standard",
276
- "source": "github:amrhas82/agentflow",
277
- "description": "Standard variant (13 agents, 8 skills)"
278
- },
279
- {
280
- "name": "agentic-kit-lite",
281
- "source": "github:amrhas82/agentflow",
282
- "description": "Lite variant (3 agents)"
283
- },
284
- {
285
- "name": "agentic-kit-pro",
286
- "source": "github:amrhas82/agentflow",
287
- "description": "Pro variant (13 agents, 14 skills)"
120
+ "name": "liteagents",
121
+ "source": "github:amrhas82/liteagents",
122
+ "description": "Lightweight deterministic CLI agents"
288
123
  }
289
124
  ]
290
125
  }
@@ -292,7 +127,7 @@ Host your own marketplace catalog: `.claude-plugin/marketplace.json`
292
127
 
293
128
  Users install via:
294
129
  ```
295
- /plugin marketplace add github:amrhas82/agentflow
130
+ /plugin marketplace add github:amrhas82/liteagents
296
131
  ```
297
132
 
298
133
  ### Option 3: Submit to Community Marketplaces
@@ -308,68 +143,49 @@ Users install via:
308
143
 
309
144
  ## Version Management
310
145
 
311
- ### Using UPDATE_VERSION.sh (Recommended)
312
-
313
- Automatically updates version across all files:
314
-
315
- ```bash
316
- ./UPDATE_VERSION.sh 1.2.0
317
- ```
318
-
319
- This updates:
320
- - `package.json`
321
- - All 4 plugin manifest files in `.claude-plugin/`
322
-
323
- ### Manual Version Update
146
+ ### Using npm version command
324
147
 
325
148
  ```bash
326
149
  # Update version
327
- npm version patch # 1.1.0 -> 1.1.1 (bug fixes)
328
- npm version minor # 1.1.0 -> 1.2.0 (new features)
329
- npm version major # 1.1.0 -> 2.0.0 (breaking changes)
150
+ npm version patch # 2.4.0 -> 2.4.1 (bug fixes)
151
+ npm version minor # 2.4.0 -> 2.5.0 (new features)
152
+ npm version major # 2.4.0 -> 3.0.0 (breaking changes)
330
153
  ```
331
154
 
332
- Then manually update manifest files:
333
- - `.claude-plugin/plugin.json`
334
- - `.claude-plugin/plugin-lite.json`
335
- - `.claude-plugin/plugin-standard.json`
336
- - `.claude-plugin/plugin-pro.json`
337
-
338
155
  ### Complete Release Process
339
156
 
340
157
  ```bash
341
158
  # 1. Update version
342
- ./UPDATE_VERSION.sh 1.2.0
159
+ npm version patch # or minor/major
343
160
 
344
161
  # 2. Update CHANGELOG.md
345
162
  # Add release notes for this version
346
163
 
347
- # 3. Commit changes
164
+ # 3. Commit and tag
348
165
  git add .
349
- git commit -m "Bump version to 1.2.0"
350
- git tag v1.2.0
166
+ git commit -m "Bump version to 2.4.1"
167
+ git tag v2.4.1
351
168
  git push origin main --tags
352
169
 
353
- # 4. Publish to both registries
354
- npm run publish:both
170
+ # 4. Publish to npm
171
+ ./scripts/publish.sh
355
172
 
356
173
  # 5. Verify
357
- # - Check npm.js: https://www.npmjs.com/package/agentflow
358
- # - Check GitHub: https://github.com/amrhas82/agentflow/packages
174
+ # Check npm: https://www.npmjs.com/package/liteagents
359
175
  ```
360
176
 
361
177
  ---
362
178
 
363
179
  ## Troubleshooting
364
180
 
365
- ### npm.js Issues
181
+ ### npm Issues
366
182
 
367
183
  #### Error: 403 Forbidden - Package name taken
368
184
  ```
369
185
  npm error 403 You do not have permission to publish
370
186
  ```
371
187
 
372
- **Solution:** Use scoped package name: `@username/package-name`
188
+ **Solution:** Package name is taken. Choose a different name or use scoped: `@username/package-name`
373
189
 
374
190
  #### Error: 402 Payment Required
375
191
  ```
@@ -391,45 +207,7 @@ npm error need auth
391
207
  npm login
392
208
  ```
393
209
 
394
- ### GitHub Packages Issues
395
-
396
- #### Error: 401 Unauthorized
397
-
398
- **Cause:** `GITHUB_TOKEN` not set or incorrect
399
-
400
- **Solution:**
401
- ```bash
402
- # Check if set
403
- echo $GITHUB_TOKEN
404
-
405
- # Set it
406
- export GITHUB_TOKEN=ghp_your_token_here
407
- ```
408
-
409
- #### Error: 403 Forbidden
410
-
411
- **Cause:** Token missing `write:packages` scope
412
-
413
- **Solution:**
414
- 1. Go to https://github.com/settings/tokens
415
- 2. Generate new token with `write:packages` scope
416
-
417
- #### Error: 404 Not Found
418
-
419
- **Cause:** Repository doesn't exist or name mismatch
420
-
421
- **Solution:**
422
- - Verify: https://github.com/amrhas82/agentflow
423
- - Check package.json has `agentflow`
424
-
425
- #### Package Not Showing Up
426
-
427
- **Solution:**
428
- - Wait 5-10 minutes (propagation delay)
429
- - Check GitHub repo → Packages tab
430
- - Verify publish succeeded without errors
431
-
432
- ### General Issues
210
+ ### Validation Issues
433
211
 
434
212
  #### Validation Fails
435
213
 
@@ -443,7 +221,7 @@ export GITHUB_TOKEN=ghp_your_token_here
443
221
 
444
222
  #### GitHub Install Not Working
445
223
 
446
- **Problem:** Users can't install via `/plugin add github:amrhas82/agentflow`
224
+ **Problem:** Users can't install via `/plugin add github:amrhas82/liteagents`
447
225
 
448
226
  **Checklist:**
449
227
  - [ ] Repository is public
@@ -459,17 +237,15 @@ Before publishing a new release:
459
237
 
460
238
  - [ ] All tests pass
461
239
  - [ ] `npm run validate` succeeds
462
- - [ ] Version bumped (via `UPDATE_VERSION.sh`)
240
+ - [ ] Version bumped with `npm version`
463
241
  - [ ] CHANGELOG.md updated
464
242
  - [ ] README.md reflects current features
465
243
  - [ ] All changes committed to git
466
- - [ ] Git tag created (`v1.x.x`)
244
+ - [ ] Git tag created (`v2.x.x`)
467
245
  - [ ] Changes pushed to GitHub with tags
468
- - [ ] Published to npm.js: `npm run publish:npm`
469
- - [ ] Published to GitHub Packages: `npm run publish:github`
470
- - [ ] Verified npm.js installation: `npx agentflow --help`
471
- - [ ] Verified GitHub Packages shows package
472
- - [ ] Verified GitHub installation: `/plugin add github:amrhas82/agentflow`
246
+ - [ ] Published to npm: `./scripts/publish.sh`
247
+ - [ ] Verified npm installation: `npm install -g liteagents`
248
+ - [ ] Verified GitHub installation: `/plugin add github:amrhas82/liteagents`
473
249
 
474
250
  ---
475
251
 
@@ -477,18 +253,14 @@ Before publishing a new release:
477
253
 
478
254
  After publishing, your package will be available at:
479
255
 
480
- - **npm.js:** https://www.npmjs.com/package/agentflow
481
- - **GitHub Packages:** https://github.com/amrhas82/agentflow/packages
482
- - **GitHub Repository:** https://github.com/amrhas82/agentflow
256
+ - **npm:** https://www.npmjs.com/package/liteagents
257
+ - **GitHub Repository:** https://github.com/amrhas82/liteagents
483
258
 
484
259
  ## Support & Resources
485
260
 
486
261
  - **npm Documentation:** https://docs.npmjs.com/cli/v10/commands/npm-publish
487
- - **GitHub Packages Docs:** https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-npm-registry
488
262
  - **Claude Code Plugin Docs:** https://docs.claude.com/en/docs/claude-code/plugin-marketplaces
489
- - **First-Time GitHub Setup:** [GITHUB_SETUP.md](GITHUB_SETUP.md)
490
- - **Using `pass` Password Manager:** [PASS_INTEGRATION.md](PASS_INTEGRATION.md)
491
263
 
492
264
  ---
493
265
 
494
- **Last Updated:** November 2025
266
+ **Last Updated:** January 2025
@@ -24,7 +24,7 @@ The headline feature of v1.2.0 is a complete installation system supporting four
24
24
 
25
25
  #### 📊 Installation Reporting (New in Phase 9)
26
26
 
27
- - **Comprehensive Reports**: Detailed installation reports saved to `~/.agentic-kit-install.log`
27
+ - **Comprehensive Reports**: Detailed installation reports saved to `~/.liteagents-install.log`
28
28
  - Success/failure status
29
29
  - Per-tool component counts and verification
30
30
  - System information and timing data
@@ -93,41 +93,41 @@ The headline feature of v1.2.0 is a complete installation system supporting four
93
93
 
94
94
  ```bash
95
95
  # Install globally
96
- npm install -g agentflow
96
+ npm install -g liteagents
97
97
 
98
98
  # Run interactive installer
99
- agentic-kit install
99
+ liteagents install
100
100
  ```
101
101
 
102
102
  ### Silent Mode (CI/CD)
103
103
 
104
104
  ```bash
105
105
  # Install Claude with Standard variant
106
- agentic-kit install --silent --variant=standard --tools=claude
106
+ liteagents install --silent --variant=standard --tools=claude
107
107
 
108
108
  # Install all tools with Pro variant
109
- agentic-kit install --silent --variant=pro --tools=claude,opencode,ampcode,droid
109
+ liteagents install --silent --variant=pro --tools=claude,opencode,ampcode,droid
110
110
  ```
111
111
 
112
112
  ### Advanced Usage
113
113
 
114
114
  ```bash
115
115
  # Custom path
116
- agentic-kit install --variant=standard --tools=claude --path claude=~/my-custom-path
116
+ liteagents install --variant=standard --tools=claude --path claude=~/my-custom-path
117
117
 
118
118
  # Multiple tools with different paths
119
- agentic-kit install --variant=pro --tools=claude,opencode \
119
+ liteagents install --variant=pro --tools=claude,opencode \
120
120
  --path claude=~/.claude-custom \
121
121
  --path opencode=~/.opencode-custom
122
122
 
123
123
  # Disable telemetry
124
- agentic-kit install --no-telemetry
124
+ liteagents install --no-telemetry
125
125
 
126
126
  # Uninstall
127
- agentic-kit install --uninstall claude
127
+ liteagents install --uninstall claude
128
128
 
129
129
  # Upgrade variant
130
- agentic-kit install --upgrade claude pro
130
+ liteagents install --upgrade claude pro
131
131
  ```
132
132
 
133
133
  ---
@@ -177,7 +177,7 @@ agentic-kit install --upgrade claude pro
177
177
  ### Architecture
178
178
 
179
179
  ```
180
- agentic-kit/
180
+ liteagents/
181
181
  ├── installer/
182
182
  │ ├── cli.js # Interactive CLI
183
183
  │ ├── package-manager.js # Variant management
@@ -226,7 +226,7 @@ agentic-kit/
226
226
  When you run the installer, it will automatically detect v1.1.x installations and offer to migrate:
227
227
 
228
228
  ```bash
229
- $ agentic-kit install
229
+ $ liteagents install
230
230
 
231
231
  ⚠ Legacy installation detected at ~/.claude
232
232
  Found: 13 agents, 5 skills, 1 resource, 2 hooks
@@ -300,8 +300,8 @@ This release represents a significant milestone in making Agentic Kit more acces
300
300
 
301
301
  ## 📞 Support
302
302
 
303
- - **Documentation**: https://github.com/amrhas82/agentflow/docs
304
- - **Issues**: https://github.com/amrhas82/agentflow/issues
303
+ - **Documentation**: https://github.com/amrhas82/liteagents/docs
304
+ - **Issues**: https://github.com/amrhas82/liteagents/issues
305
305
  - **Security**: See [SECURITY.md](docs/SECURITY.md) for vulnerability reporting
306
306
 
307
307
  ---
package/docs/SECURITY.md CHANGED
@@ -116,10 +116,10 @@ This document outlines the security measures implemented in Agentic Kit and prov
116
116
 
117
117
  **File Permissions**:
118
118
  ```
119
- ~/.agentic-kit-install.log - 0600 (read/write owner only)
120
- ~/.agentic-kit-config.json - 0600 (read/write owner only)
121
- ~/.agentic-kit-telemetry.log - 0600 (read/write owner only)
122
- ~/.agentic-kit-install-state.json - 0600 (read/write owner only)
119
+ ~/.liteagents-install.log - 0600 (read/write owner only)
120
+ ~/.liteagents-config.json - 0600 (read/write owner only)
121
+ ~/.liteagents-telemetry.log - 0600 (read/write owner only)
122
+ ~/.liteagents-install-state.json - 0600 (read/write owner only)
123
123
  ```
124
124
 
125
125
  **Code Locations**:
@@ -229,7 +229,7 @@ node installer/cli.js --variant standard --tools claude
229
229
  3. **Use Default Paths**: Default paths are safer and well-tested
230
230
  4. **Keep Node.js Updated**: Ensure you're using a supported Node.js version
231
231
  5. **Review Logs**: Check installation logs for unexpected behavior
232
- 6. **Verify Sources**: Only download agentic-kit from official sources
232
+ 6. **Verify Sources**: Only download liteagents from official sources
233
233
 
234
234
  ### For Developers
235
235