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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to Agentic Kit will be documented in this file.
3
+ All notable changes to liteagents will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
@@ -17,6 +17,51 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
 
18
18
  ---
19
19
 
20
+ ## [2.4.1] - 2026-01-24
21
+
22
+ ### Changed - Package Rebranding
23
+ - **BREAKING:** Package renamed from `@amrhas82/agentic-kit` to `liteagents` (unscoped)
24
+ - Better reflects lightweight, CLI-focused nature
25
+ - Easier installation: `npm install -g liteagents`
26
+ - Commands: `liteagents` and `liteag` (shorthand)
27
+ - **Repository:** Renamed from `agentic-kit` to `liteagents` on GitHub
28
+ - New URL: https://github.com/amrhas82/liteagents
29
+ - Old URLs redirect automatically
30
+
31
+ ### Removed
32
+ - GitHub Packages support completely removed
33
+ - No GitHub Packages were published (0 downloads)
34
+ - Simplified to npm-only publishing
35
+ - Removed `.npmrc`, `GITHUB_SETUP.md`, `GITHUB_PACKAGES.md`, `DUAL_PUBLISH_SUMMARY.md`
36
+ - Removed `publish:github` and `publish:both` npm scripts
37
+
38
+ ### Updated
39
+ - All documentation updated to reference `liteagents`
40
+ - Updated 9 docs files and all root files
41
+ - README: New "LITEAGENTS" ASCII logo
42
+ - All npm badges and links updated
43
+ - Publishing workflow simplified
44
+ - `scripts/publish.sh` reduced from 195 to 69 lines
45
+ - Now npm-only, no GitHub token management needed
46
+ - `docs/PUBLISHING.md` simplified to focus on npm
47
+
48
+ ### Migration Guide
49
+ For users of `@amrhas82/agentic-kit`:
50
+ ```bash
51
+ # Uninstall old package
52
+ npm uninstall -g @amrhas82/agentic-kit
53
+
54
+ # Install new package
55
+ npm install -g liteagents
56
+
57
+ # Use new commands
58
+ liteagents # or 'liteag' for shorthand
59
+ ```
60
+
61
+ Old package `@amrhas82/agentic-kit` will be deprecated with migration message.
62
+
63
+ ---
64
+
20
65
  ## [2.3.0] - 2026-01-22
21
66
 
22
67
  ### Removed
@@ -108,7 +153,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108
153
  - Detailed per-tool information (components, paths, verification status)
109
154
  - System information (Node.js version, platform, architecture)
110
155
  - Errors and warnings sections
111
- - Reports saved to `~/.agentic-kit-install.log`
156
+ - Reports saved to `~/.liteagents-install.log`
112
157
  - `installer/telemetry.js` - Anonymous usage statistics (opt-in only)
113
158
  - User consent prompt with clear data collection policy
114
159
  - `--no-telemetry` flag to disable telemetry
@@ -288,7 +333,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
288
333
 
289
334
  ### Fixed
290
335
  - Skill count - Corrected Pro variant from 16 to 14 skills
291
- - Repository URLs - Updated to `github.com/amrhas82/agentflow`
336
+ - Repository URLs - Updated to `github.com/amrhas82/liteagents`
292
337
  - Author info - Updated to `amrhas82 <avoidaccess@msn.com>`
293
338
  - All variant manifests - Added session-start hook
294
339
 
@@ -307,10 +352,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
307
352
  - 3 variants: Lite (3 agents), Standard (13 agents, 8 skills), Pro (13 agents, 14 skills)
308
353
 
309
354
  **Distribution:**
310
- - npm package: `agentflow`
311
- - GitHub: `github.com/amrhas82/agentflow`
312
- - Direct install: `/plugin add github:amrhas82/agentic-kit`
313
- - npx support: `npx agentflow` or `npx agkit`
355
+ - npm package: `liteagents`
356
+ - GitHub: `github.com/amrhas82/liteagents`
357
+ - Direct install: `/plugin add github:amrhas82/liteagents`
358
+ - npx support: `npx liteagents` or `npx agkit`
314
359
 
315
360
  **Infrastructure:**
316
361
  - Plugin manifests for each variant
@@ -339,10 +384,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
339
384
  **To Upgrade:**
340
385
  ```bash
341
386
  # Via npm
342
- npm install -g agentflow@latest
387
+ npm install -g liteagents@latest
343
388
 
344
389
  # Run installer
345
- agentic-kit
390
+ liteagents
346
391
  ```
347
392
 
348
393
  ---
@@ -361,23 +406,23 @@ agentic-kit
361
406
 
362
407
  **Action Required:**
363
408
  - None for existing installations - upgrade is seamless
364
- - **New users**: Use interactive installer (`npm install -g agentflow && agentic-kit install`)
409
+ - **New users**: Use interactive installer (`npm install -g liteagents && liteagents install`)
365
410
  - **Existing users**: Continue using existing installation methods
366
411
 
367
412
  **To Upgrade:**
368
413
  ```bash
369
414
  # Via GitHub
370
- /plugin update github:amrhas82/agentic-kit
415
+ /plugin update github:amrhas82/liteagents
371
416
 
372
417
  # Via npm
373
- npm update agentflow
418
+ npm update liteagents
374
419
 
375
420
  # Via npx (always latest)
376
- npx agentflow
421
+ npx liteagents
377
422
 
378
423
  # New: Interactive installer
379
- npm install -g agentflow
380
- agentic-kit install
424
+ npm install -g liteagents
425
+ liteagents install
381
426
  ```
382
427
 
383
428
  **What's Different:**
@@ -403,13 +448,13 @@ agentic-kit install
403
448
  **To Upgrade:**
404
449
  ```bash
405
450
  # Via GitHub
406
- /plugin update github:amrhas82/agentic-kit
451
+ /plugin update github:amrhas82/liteagents
407
452
 
408
453
  # Via npm
409
- npm update agentflow
454
+ npm update liteagents
410
455
 
411
456
  # Via npx (always latest)
412
- npx agentflow
457
+ npx liteagents
413
458
  ```
414
459
 
415
460
  ---
@@ -430,10 +475,10 @@ npx agentflow
430
475
 
431
476
  ## Links
432
477
 
433
- - **GitHub**: https://github.com/amrhas82/agentflow
434
- - **npm**: https://www.npmjs.com/package/agentflow
435
- - **Issues**: https://github.com/amrhas82/agentflow/issues
436
- - **Releases**: https://github.com/amrhas82/agentflow/releases
478
+ - **GitHub**: https://github.com/amrhas82/liteagents
479
+ - **npm**: https://www.npmjs.com/package/liteagents
480
+ - **Issues**: https://github.com/amrhas82/liteagents/issues
481
+ - **Releases**: https://github.com/amrhas82/liteagents/releases
437
482
 
438
483
  ---
439
484
 
package/README.md CHANGED
@@ -1,19 +1,19 @@
1
1
  <div align="center">
2
2
 
3
3
  ```
4
- █████╗ ██████╗ ███████╗███╗ ██╗████████╗███████╗██╗ ██████╗ ██╗ ██╗
5
- ██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝██╔════╝██║ ██╔═══██╗██║ ██║
6
- ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ █████╗ ██║ ██║ ██║██║ █╗ ██║
7
- ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ██╔══╝ ██║ ██║ ██║██║███╗██║
8
- ██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║ ███████╗╚██████╔╝╚███╔███╔╝
9
- ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚══════╝ ╚═════╝ ╚══╝╚══╝
4
+ ██╗ ██╗████████╗███████╗ █████╗ ██████╗ ███████╗███╗ ██╗████████╗███████╗
5
+ ██║ ██║╚══██╔══╝██╔════╝██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝██╔════╝
6
+ ██║ ██║ ██║ █████╗ ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ███████╗
7
+ ██║ ██║ ██║ ██╔══╝ ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ╚════██║
8
+ ███████╗██║ ██║ ███████╗██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ███████║
9
+ ╚══════╝╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚══════╝
10
10
  ```
11
11
 
12
12
  **AI development toolkit with 11 specialized agents and 20 commands per tool**
13
13
 
14
14
  </div>
15
15
 
16
- [![npm version](https://img.shields.io/npm/v/agentflow)](https://www.npmjs.com/package/agentflow)
16
+ [![npm version](https://img.shields.io/npm/v/liteagents)](https://www.npmjs.com/package/liteagents)
17
17
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
18
18
 
19
19
  **Supported Tools:**
@@ -30,10 +30,10 @@ Specialized AI agents and workflow commands for product management, agile develo
30
30
 
31
31
  ```bash
32
32
  # Install
33
- npm install -g agentflow
33
+ npm install -g liteagents
34
34
 
35
35
  # Run installer
36
- agentflow
36
+ liteagents
37
37
 
38
38
  # Choose tool(s): claude, opencode, ampcode, or droid
39
39
  # Each tool gets 11 agents + 20 commands
@@ -164,9 +164,9 @@ agentflow
164
164
 
165
165
  ## 🔗 Links
166
166
 
167
- - **npm:** https://www.npmjs.com/package/agentflow
168
- - **GitHub:** https://github.com/amrhas82/agentflow
169
- - **Issues:** https://github.com/amrhas82/agentflow/issues
167
+ - **npm:** https://www.npmjs.com/package/liteagents
168
+ - **GitHub:** https://github.com/amrhas82/liteagents
169
+ - **Issues:** https://github.com/amrhas82/liteagents/issues
170
170
 
171
171
  ---
172
172
 
@@ -176,4 +176,4 @@ MIT © 2025 amrhas82
176
176
 
177
177
  ---
178
178
 
179
- **Need help?** Check [TROUBLESHOOTING.md](TROUBLESHOOTING.md) or [open an issue](https://github.com/amrhas82/agentflow/issues)
179
+ **Need help?** Check [TROUBLESHOOTING.md](TROUBLESHOOTING.md) or [open an issue](https://github.com/amrhas82/liteagents/issues)
package/cli.js CHANGED
@@ -7,11 +7,11 @@
7
7
  * It handles variant selection and provides helpful CLI output for users.
8
8
  *
9
9
  * Usage:
10
- * npx agentflow # Install standard variant (default)
11
- * npx agentflow --variant=lite # Install lite variant via flag
12
- * npx agentflow --variant=pro # Install pro variant via flag
10
+ * npx liteagents # Install standard variant (default)
11
+ * npx liteagents --variant=lite # Install lite variant via flag
12
+ * npx liteagents --variant=pro # Install pro variant via flag
13
13
  * npx agkit # Shorter alias
14
- * npx agentflow --help # Show help message
14
+ * npx liteagents --help # Show help message
15
15
  */
16
16
 
17
17
  const fs = require('fs');
@@ -51,9 +51,9 @@ ${colors.bright}VARIANTS:${colors.reset}
51
51
  ${colors.magenta}pro${colors.reset} 13 agents, 14 skills - Maximum capabilities
52
52
 
53
53
  ${colors.bright}USAGE:${colors.reset}
54
- ${colors.cyan}npx agentflow${colors.reset} # Install standard variant (default)
55
- ${colors.cyan}npx agentflow --variant=lite${colors.reset} # Install lite variant via flag
56
- ${colors.cyan}npx agentflow --variant=pro${colors.reset} # Install pro variant via flag
54
+ ${colors.cyan}npx liteagents${colors.reset} # Install standard variant (default)
55
+ ${colors.cyan}npx liteagents --variant=lite${colors.reset} # Install lite variant via flag
56
+ ${colors.cyan}npx liteagents --variant=pro${colors.reset} # Install pro variant via flag
57
57
  ${colors.cyan}npx agkit${colors.reset} # Shorter alias
58
58
 
59
59
  ${colors.bright}CLAUDE CODE MARKETPLACE:${colors.reset}
@@ -28,7 +28,7 @@ How to contribute to the Agentic Toolkit by adding custom agents, skills, and im
28
28
  ```bash
29
29
  # Clone repository
30
30
  git clone https://github.com/anthropic/agentic-toolkit.git
31
- cd agentic-kit
31
+ cd liteagents
32
32
 
33
33
  # Install dependencies (if any)
34
34
  npm install
@@ -582,7 +582,7 @@ npm run validate:manifest
582
582
  1. **Fork Repository:**
583
583
  ```bash
584
584
  git clone https://github.com/anthropic/agentic-toolkit.git
585
- cd agentic-kit
585
+ cd liteagents
586
586
  git checkout -b feature/your-feature-name
587
587
  ```
588
588
 
@@ -31,7 +31,7 @@ Implemented `categorizeError()` method that identifies and categorizes errors in
31
31
  - Recommends offline mode if available
32
32
 
33
33
  4. **Missing Package Errors** (ENOENT)
34
- - Suggests reinstalling agentflow
34
+ - Suggests reinstalling liteagents
35
35
  - Provides npm commands for reinstallation
36
36
  - Verifies package directory existence
37
37
 
@@ -11,7 +11,7 @@ This document provides a detailed visual demonstration of the Agentic Kit intera
11
11
  ### Step 1: Launch the Installer
12
12
 
13
13
  ```bash
14
- $ agentic-kit install
14
+ $ liteagents install
15
15
  ```
16
16
 
17
17
  **Output:**
@@ -288,7 +288,7 @@ Next steps:
288
288
 
289
289
  Documentation:
290
290
  • Installation guide: /home/user/.claude/README.md
291
- • Troubleshooting: https://github.com/amrhas82/agentflow/docs/INSTALLER_GUIDE.md
291
+ • Troubleshooting: https://github.com/amrhas82/liteagents/docs/INSTALLER_GUIDE.md
292
292
 
293
293
  Thank you for installing Agentic Kit!
294
294
  ```
@@ -300,7 +300,7 @@ Thank you for installing Agentic Kit!
300
300
  For automated environments, use silent mode:
301
301
 
302
302
  ```bash
303
- $ agentic-kit install --silent --variant=standard --tools=claude
303
+ $ liteagents install --silent --variant=standard --tools=claude
304
304
  ```
305
305
 
306
306
  **Output:**
@@ -321,7 +321,7 @@ Total: 29 files, 8.39 MB, 12.3s
321
321
  Installing multiple tools at once:
322
322
 
323
323
  ```bash
324
- $ agentic-kit install --variant=standard --tools=claude,opencode
324
+ $ liteagents install --variant=standard --tools=claude,opencode
325
325
  ```
326
326
 
327
327
  **Output:**
@@ -374,7 +374,7 @@ Installation time: 24.6 seconds
374
374
  Installing to a custom location:
375
375
 
376
376
  ```bash
377
- $ agentic-kit install
377
+ $ liteagents install
378
378
  ```
379
379
 
380
380
  **Step 3 - Custom Path:**
@@ -391,9 +391,9 @@ Default installation paths:
391
391
  Do you want to customize any paths? (y/N): y
392
392
 
393
393
  Enter custom path for Claude (or press Enter for default):
394
- > /opt/agentflow/claude
394
+ > /opt/liteagents/claude
395
395
 
396
- Validating path: /opt/agentflow/claude
396
+ Validating path: /opt/liteagents/claude
397
397
 
398
398
  ✓ Path is absolute
399
399
  ✓ Parent directory exists
@@ -406,7 +406,7 @@ Validating path: /opt/agentflow/claude
406
406
  ╚═══════════════════════════════════════════════╝
407
407
 
408
408
  Tool: Claude
409
- Proposed Path: /opt/agentflow/claude
409
+ Proposed Path: /opt/liteagents/claude
410
410
  Default Path: /home/user/.claude/
411
411
 
412
412
  This is different from the default path.
@@ -418,7 +418,7 @@ Validation Results:
418
418
 
419
419
  Do you want to proceed with this custom path? (y/N): y
420
420
 
421
- ✓ Using custom path: /opt/agentflow/claude
421
+ ✓ Using custom path: /opt/liteagents/claude
422
422
  ```
423
423
 
424
424
  ---
@@ -428,7 +428,7 @@ Do you want to proceed with this custom path? (y/N): y
428
428
  Removing an installed tool:
429
429
 
430
430
  ```bash
431
- $ agentic-kit install --uninstall --tools=claude
431
+ $ liteagents install --uninstall --tools=claude
432
432
  ```
433
433
 
434
434
  **Output:**
@@ -475,7 +475,7 @@ Total: 29 files deleted, 8.39 MB freed
475
475
  Upgrading an existing installation:
476
476
 
477
477
  ```bash
478
- $ agentic-kit install --variant=standard --tools=claude
478
+ $ liteagents install --variant=standard --tools=claude
479
479
  ```
480
480
 
481
481
  **Output:**
@@ -550,9 +550,9 @@ Installation aborted.
550
550
  Suggestions:
551
551
  1. Free up disk space and try again
552
552
  2. Install to a different location with more space:
553
- agentic-kit install --path claude=/mnt/external/.claude
553
+ liteagents install --path claude=/mnt/external/.claude
554
554
  3. Use Lite variant (only 510 KB):
555
- agentic-kit install --variant=lite
555
+ liteagents install --variant=lite
556
556
 
557
557
  No files were created.
558
558
  ```
@@ -563,7 +563,7 @@ No files were created.
563
563
  Installing Claude (Standard variant)...
564
564
 
565
565
  ERROR: Permission denied
566
- Cannot write to: /opt/agentflow/claude/
566
+ Cannot write to: /opt/liteagents/claude/
567
567
  User: user
568
568
  Required: Write permissions
569
569
 
@@ -571,9 +571,9 @@ Installation aborted.
571
571
 
572
572
  Suggestions:
573
573
  1. Run with appropriate permissions:
574
- sudo agentic-kit install --tools=claude --path claude=/opt/agentflow/claude
574
+ sudo liteagents install --tools=claude --path claude=/opt/liteagents/claude
575
575
  2. Install to a writable location:
576
- agentic-kit install (uses ~/.claude/ by default)
576
+ liteagents install (uses ~/.claude/ by default)
577
577
 
578
578
  No files were created.
579
579
  ```
@@ -593,10 +593,10 @@ Rollback in progress...
593
593
  ✓ Removed partial installation
594
594
  ✓ Cleaned up temporary files
595
595
 
596
- Installation state saved to: /home/user/.agentic-kit-state.json
596
+ Installation state saved to: /home/user/.liteagents-state.json
597
597
 
598
598
  To resume installation later, run:
599
- agentic-kit install
599
+ liteagents install
600
600
 
601
601
  No files were left behind.
602
602
  ```
@@ -664,28 +664,28 @@ No files were left behind.
664
664
 
665
665
  **Basic Installation:**
666
666
  ```bash
667
- npm install -g agentflow
668
- agentic-kit install
667
+ npm install -g liteagents
668
+ liteagents install
669
669
  ```
670
670
 
671
671
  **Silent Installation:**
672
672
  ```bash
673
- agentic-kit install --silent --variant=standard --tools=claude
673
+ liteagents install --silent --variant=standard --tools=claude
674
674
  ```
675
675
 
676
676
  **Multi-Tool:**
677
677
  ```bash
678
- agentic-kit install --variant=pro --tools=all
678
+ liteagents install --variant=pro --tools=all
679
679
  ```
680
680
 
681
681
  **Custom Path:**
682
682
  ```bash
683
- agentic-kit install --tools=claude --path claude=/custom/path
683
+ liteagents install --tools=claude --path claude=/custom/path
684
684
  ```
685
685
 
686
686
  **Uninstall:**
687
687
  ```bash
688
- agentic-kit install --uninstall --tools=claude
688
+ liteagents install --uninstall --tools=claude
689
689
  ```
690
690
 
691
691
  **For more details, see [INSTALLER_GUIDE.md](./INSTALLER_GUIDE.md)**
@@ -10,12 +10,12 @@ This document explains **where** Agentic Kit files get installed depending on th
10
10
 
11
11
  **Command:**
12
12
  ```bash
13
- /plugin add github:amrhas82/agentflow
13
+ /plugin add github:amrhas82/liteagents
14
14
  ```
15
15
 
16
16
  **Install Location:**
17
17
  ```
18
- ~/.config/claude-code/plugins/github-amrhas82-agentflow/
18
+ ~/.config/claude-code/plugins/github-amrhas82-liteagents/
19
19
  ```
20
20
 
21
21
  **What's Installed:**
@@ -30,7 +30,7 @@ This document explains **where** Agentic Kit files get installed depending on th
30
30
 
31
31
  **Verify Installation:**
32
32
  ```bash
33
- ls ~/.config/claude-code/plugins/ | grep agentflow
33
+ ls ~/.config/claude-code/plugins/ | grep liteagents
34
34
  ```
35
35
 
36
36
  ---
@@ -39,13 +39,13 @@ ls ~/.config/claude-code/plugins/ | grep agentflow
39
39
 
40
40
  **Command:**
41
41
  ```bash
42
- npx agentflow
42
+ npx liteagents
43
43
  npx agkit --variant=lite
44
44
  ```
45
45
 
46
46
  **Install Location:**
47
47
  ```
48
- ~/.npm/_npx/[hash]/agentflow/
48
+ ~/.npm/_npx/[hash]/liteagents/
49
49
  ```
50
50
 
51
51
  **What's Installed:**
@@ -75,12 +75,12 @@ npx is designed for:
75
75
 
76
76
  **Command:**
77
77
  ```bash
78
- npm install agentflow
78
+ npm install liteagents
79
79
  ```
80
80
 
81
81
  **Install Location:**
82
82
  ```
83
- ./node_modules/agentflow/
83
+ ./node_modules/liteagents/
84
84
  ```
85
85
 
86
86
  **What's Installed:**
@@ -107,19 +107,19 @@ npm install agentflow
107
107
 
108
108
  **Command:**
109
109
  ```bash
110
- npm install -g agentflow
110
+ npm install -g liteagents
111
111
  ```
112
112
 
113
113
  **Install Location:**
114
114
  ```
115
115
  # Linux/macOS
116
- /usr/local/lib/node_modules/agentflow/
116
+ /usr/local/lib/node_modules/liteagents/
117
117
 
118
118
  # Or with nvm
119
- ~/.nvm/versions/node/vX.X.X/lib/node_modules/agentflow/
119
+ ~/.nvm/versions/node/vX.X.X/lib/node_modules/liteagents/
120
120
 
121
121
  # Windows
122
- %AppData%\npm\node_modules\agentflow\
122
+ %AppData%\npm\node_modules\liteagents\
123
123
  ```
124
124
 
125
125
  **What's Installed:**
@@ -130,7 +130,7 @@ npm install -g agentflow
130
130
  **How it Works:**
131
131
  - Downloads package from npm registry
132
132
  - Installs globally
133
- - Adds `agentflow` and `agkit` commands to PATH
133
+ - Adds `liteagents` and `agkit` commands to PATH
134
134
 
135
135
  **When to Use:**
136
136
  - Want CLI commands available globally
@@ -154,7 +154,7 @@ npm install -g agentflow
154
154
  When installed, you get:
155
155
 
156
156
  ```
157
- agentic-kit/
157
+ liteagents/
158
158
  ├── .claude-plugin/ # Plugin manifests
159
159
  │ ├── plugin.json # Main manifest
160
160
  │ ├── plugin-lite.json # Lite variant
@@ -200,16 +200,16 @@ rm -rf ~/.npm/_npx
200
200
  ### npm Local
201
201
  ```bash
202
202
  # Check local installation
203
- ls node_modules/agentflow/
203
+ ls node_modules/liteagents/
204
204
 
205
205
  # Or use npm
206
- npm list agentflow
206
+ npm list liteagents
207
207
  ```
208
208
 
209
209
  ### npm Global
210
210
  ```bash
211
211
  # Find global installation
212
- npm list -g agentflow
212
+ npm list -g liteagents
213
213
 
214
214
  # Or check directory
215
215
  npm root -g
@@ -221,17 +221,17 @@ npm root -g
221
221
 
222
222
  ### Claude Code Plugin
223
223
  ```bash
224
- /plugin remove github-amrhas82-agentflow
224
+ /plugin remove github-amrhas82-liteagents
225
225
  ```
226
226
 
227
227
  ### npm Local
228
228
  ```bash
229
- npm uninstall agentflow
229
+ npm uninstall liteagents
230
230
  ```
231
231
 
232
232
  ### npm Global
233
233
  ```bash
234
- npm uninstall -g agentflow
234
+ npm uninstall -g liteagents
235
235
  ```
236
236
 
237
237
  ### npx Cache
@@ -249,32 +249,22 @@ When you publish:
249
249
 
250
250
  ### npm.js Registry
251
251
  ```
252
- https://www.npmjs.com/package/agentflow
252
+ https://www.npmjs.com/package/liteagents
253
253
  ```
254
254
 
255
255
  Users download from:
256
256
  ```
257
- https://registry.npmjs.org/agentflow/-/agentflow-1.1.0.tgz
258
- ```
259
-
260
- ### GitHub Packages
261
- ```
262
- https://github.com/amrhas82/agentflow/packages
263
- ```
264
-
265
- Users download from:
266
- ```
267
- https://npm.pkg.github.com/agentflow
257
+ https://registry.npmjs.org/liteagents/-/liteagents-1.1.0.tgz
268
258
  ```
269
259
 
270
260
  ### GitHub Repository
271
261
  ```
272
- https://github.com/amrhas82/agentflow
262
+ https://github.com/amrhas82/liteagents
273
263
  ```
274
264
 
275
265
  Claude Code clones from:
276
266
  ```
277
- git clone https://github.com/amrhas82/agentflow.git
267
+ git clone https://github.com/amrhas82/liteagents.git
278
268
  ```
279
269
 
280
270
  ---