liteagents 2.5.2 → 2.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/CHANGELOG.md +45 -15
- package/README.md +30 -8
- package/docs/INSTALLATION_DEMO.md +1 -1
- package/docs/INSTALLATION_LOCATIONS.md +5 -5
- package/docs/INSTALLER_GUIDE.md +5 -5
- package/docs/KNOWLEDGE_BASE.md +5 -5
- package/docs/MIGRATION.md +1 -1
- package/docs/PASS_QUICK_START.md +1 -1
- package/docs/PRIVACY.md +1 -1
- package/docs/PUBLISHING.md +7 -7
- package/docs/RELEASE_NOTES_1.2.0.md +2 -2
- package/docs/SILENT_MODE_GUIDE.md +1 -1
- package/installer/cli.js +1 -1
- package/package.json +5 -5
- package/packages/subagentic-manual.md +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
+
## [2.5.2] - 2026-02-11
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- **friction command** — Analyze session logs for failure patterns, behavioral signals, and antigen clusters
|
|
24
|
+
- 14 weighted signals (user_intervention, false_success, tool_loop, etc.)
|
|
25
|
+
- Session scoring and quality classification (BAD/FRICTION/ROUGH/OK)
|
|
26
|
+
- Candidate clustering by (anchor_signal, tool_sequence) for 3-4x compression
|
|
27
|
+
- Context noise filtering and dedup in clusters
|
|
28
|
+
- Bundled `friction.js` (2157 lines) with absolute search paths per platform
|
|
29
|
+
- **remember command** — Consolidate stashes and friction output into persistent project memory
|
|
30
|
+
- Extracts facts and episodes from session stashes via sonnet
|
|
31
|
+
- Distills friction clusters into behavioral preferences with confidence tiers
|
|
32
|
+
- Writes unified `.claude/memory/MEMORY.md` (or platform equivalent)
|
|
33
|
+
- Injects `@MEMORY.md` reference into instruction file (CLAUDE.md/AGENTS.md/AGENT.md)
|
|
34
|
+
- **Hot Memory pipeline** — Lightweight session memory: `/stash` -> `/friction` -> `/remember`
|
|
35
|
+
- Documented in README and subagentic-manual
|
|
36
|
+
- **Platform-specific paths** across all 4 packages (claude, droid, opencode, ampcode)
|
|
37
|
+
- Each package uses correct instruction file, project path, and global install path
|
|
38
|
+
- **.gitignore** — Added `.claude/`, `.factory/`, `.opencode/`, `.amp/` project data directories
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
- **context-builder** — Updated per platform with correct instruction file, project/global paths, tool name, and `@MEMORY.md` discovery
|
|
42
|
+
- **docs-builder** — Synced blueprint.md section and templates across all packages
|
|
43
|
+
- **opencode.jsonc** — Registered friction and remember commands
|
|
44
|
+
- **AGENTS.md/AGENT.md** — Command counts updated 10 -> 12 across all packages
|
|
45
|
+
- **package.json** — Description updated to 22 commands
|
|
46
|
+
- **installer banner** — Updated to v2.5.2 with 22 commands
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
20
50
|
## [2.4.7] - 2026-02-02
|
|
21
51
|
|
|
22
52
|
### Changed
|
|
@@ -33,12 +63,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
33
63
|
## [2.4.1] - 2026-01-24
|
|
34
64
|
|
|
35
65
|
### Changed - Package Rebranding
|
|
36
|
-
- **BREAKING:** Package renamed from `@
|
|
66
|
+
- **BREAKING:** Package renamed from `@hamr0/agentic-kit` to `liteagents` (unscoped)
|
|
37
67
|
- Better reflects lightweight, CLI-focused nature
|
|
38
68
|
- Easier installation: `npm install -g liteagents`
|
|
39
69
|
- Commands: `liteagents` and `liteag` (shorthand)
|
|
40
70
|
- **Repository:** Renamed from `agentic-kit` to `liteagents` on GitHub
|
|
41
|
-
- New URL: https://github.com/
|
|
71
|
+
- New URL: https://github.com/hamr0/liteagents
|
|
42
72
|
- Old URLs redirect automatically
|
|
43
73
|
|
|
44
74
|
### Removed
|
|
@@ -59,10 +89,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
59
89
|
- `docs/PUBLISHING.md` simplified to focus on npm
|
|
60
90
|
|
|
61
91
|
### Migration Guide
|
|
62
|
-
For users of `@
|
|
92
|
+
For users of `@hamr0/agentic-kit`:
|
|
63
93
|
```bash
|
|
64
94
|
# Uninstall old package
|
|
65
|
-
npm uninstall -g @
|
|
95
|
+
npm uninstall -g @hamr0/agentic-kit
|
|
66
96
|
|
|
67
97
|
# Install new package
|
|
68
98
|
npm install -g liteagents
|
|
@@ -71,7 +101,7 @@ npm install -g liteagents
|
|
|
71
101
|
liteagents # or 'liteag' for shorthand
|
|
72
102
|
```
|
|
73
103
|
|
|
74
|
-
Old package `@
|
|
104
|
+
Old package `@hamr0/agentic-kit` will be deprecated with migration message.
|
|
75
105
|
|
|
76
106
|
---
|
|
77
107
|
|
|
@@ -346,8 +376,8 @@ Old package `@amrhas82/agentic-kit` will be deprecated with migration message.
|
|
|
346
376
|
|
|
347
377
|
### Fixed
|
|
348
378
|
- Skill count - Corrected Pro variant from 16 to 14 skills
|
|
349
|
-
- Repository URLs - Updated to `github.com/
|
|
350
|
-
- Author info - Updated to `
|
|
379
|
+
- Repository URLs - Updated to `github.com/hamr0/liteagents`
|
|
380
|
+
- Author info - Updated to `hamr0 <avoidaccess@msn.com>`
|
|
351
381
|
- All variant manifests - Added session-start hook
|
|
352
382
|
|
|
353
383
|
### Removed
|
|
@@ -366,8 +396,8 @@ Old package `@amrhas82/agentic-kit` will be deprecated with migration message.
|
|
|
366
396
|
|
|
367
397
|
**Distribution:**
|
|
368
398
|
- npm package: `liteagents`
|
|
369
|
-
- GitHub: `github.com/
|
|
370
|
-
- Direct install: `/plugin add github:
|
|
399
|
+
- GitHub: `github.com/hamr0/liteagents`
|
|
400
|
+
- Direct install: `/plugin add github:hamr0/liteagents`
|
|
371
401
|
- npx support: `npx liteagents` or `npx agkit`
|
|
372
402
|
|
|
373
403
|
**Infrastructure:**
|
|
@@ -425,7 +455,7 @@ liteagents
|
|
|
425
455
|
**To Upgrade:**
|
|
426
456
|
```bash
|
|
427
457
|
# Via GitHub
|
|
428
|
-
/plugin update github:
|
|
458
|
+
/plugin update github:hamr0/liteagents
|
|
429
459
|
|
|
430
460
|
# Via npm
|
|
431
461
|
npm update liteagents
|
|
@@ -461,7 +491,7 @@ liteagents install
|
|
|
461
491
|
**To Upgrade:**
|
|
462
492
|
```bash
|
|
463
493
|
# Via GitHub
|
|
464
|
-
/plugin update github:
|
|
494
|
+
/plugin update github:hamr0/liteagents
|
|
465
495
|
|
|
466
496
|
# Via npm
|
|
467
497
|
npm update liteagents
|
|
@@ -489,12 +519,12 @@ npx liteagents
|
|
|
489
519
|
|
|
490
520
|
## Links
|
|
491
521
|
|
|
492
|
-
- **GitHub**: https://github.com/
|
|
522
|
+
- **GitHub**: https://github.com/hamr0/liteagents
|
|
493
523
|
- **npm**: https://www.npmjs.com/package/liteagents
|
|
494
|
-
- **Issues**: https://github.com/
|
|
495
|
-
- **Releases**: https://github.com/
|
|
524
|
+
- **Issues**: https://github.com/hamr0/liteagents/issues
|
|
525
|
+
- **Releases**: https://github.com/hamr0/liteagents/releases
|
|
496
526
|
|
|
497
527
|
---
|
|
498
528
|
|
|
499
|
-
**Maintained by**:
|
|
529
|
+
**Maintained by**: hamr0
|
|
500
530
|
**License**: MIT
|
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
|
|
17
17
|
**Supported Tools:**
|
|
18
18
|
[](https://claude.ai)
|
|
19
|
-
[](https://github.com/
|
|
20
|
-
[](https://github.com/
|
|
21
|
-
[](https://github.com/
|
|
19
|
+
[](https://github.com/hamr0/opencode)
|
|
20
|
+
[](https://github.com/hamr0/ampcode)
|
|
21
|
+
[](https://github.com/hamr0/droid)
|
|
22
22
|
|
|
23
23
|
</div>
|
|
24
24
|
|
|
@@ -45,7 +45,7 @@ liteagents
|
|
|
45
45
|
|
|
46
46
|
- **Claude Code** - 11 subagents + 10 skills + 12 commands
|
|
47
47
|
- **Opencode** - 11 agent references + 22 commands
|
|
48
|
-
- **Ampcode** - 11 subagents +
|
|
48
|
+
- **Ampcode** - 11 subagents + 22 commands
|
|
49
49
|
- **Droid** - 11 agent references + 22 commands
|
|
50
50
|
|
|
51
51
|
**Key Difference:**
|
|
@@ -130,6 +130,28 @@ Lightweight session memory that learns from your usage patterns.
|
|
|
130
130
|
|
|
131
131
|
**Result:** Project-local memory that accumulates across sessions — no external dependencies, no databases, just markdown.
|
|
132
132
|
|
|
133
|
+
```bash
|
|
134
|
+
# Standalone CLI — analyze all projects
|
|
135
|
+
liteagents friction ~/.claude/projects
|
|
136
|
+
|
|
137
|
+
Per-Project:
|
|
138
|
+
my-app 56% BAD (40/72) median: 16.0 🔴
|
|
139
|
+
api-service 40% BAD (2/5) median: 0.5 🟡
|
|
140
|
+
web-client 0% BAD (0/1) median: 0.0 ✅
|
|
141
|
+
|
|
142
|
+
Session Extremes:
|
|
143
|
+
WORST: my-app/0203-1630-11eb903a peak=225 turns=127
|
|
144
|
+
BEST: web-client/0202-2121-8d8608e1 peak=0 turns=4
|
|
145
|
+
|
|
146
|
+
Last 2 Weeks:
|
|
147
|
+
2026-02-02 15 sessions 10 BAD ██████░░░░ 67%
|
|
148
|
+
2026-02-03 29 sessions 12 BAD ████░░░░░░ 41%
|
|
149
|
+
2026-02-04 6 sessions 2 BAD ███░░░░░░░ 33%
|
|
150
|
+
|
|
151
|
+
Verdict: ✓ USEFUL
|
|
152
|
+
Intervention predictability: 93%
|
|
153
|
+
```
|
|
154
|
+
|
|
133
155
|
---
|
|
134
156
|
|
|
135
157
|
## 📖 Documentation
|
|
@@ -183,15 +205,15 @@ Lightweight session memory that learns from your usage patterns.
|
|
|
183
205
|
## 🔗 Links
|
|
184
206
|
|
|
185
207
|
- **npm:** https://www.npmjs.com/package/liteagents
|
|
186
|
-
- **GitHub:** https://github.com/
|
|
187
|
-
- **Issues:** https://github.com/
|
|
208
|
+
- **GitHub:** https://github.com/hamr0/liteagents
|
|
209
|
+
- **Issues:** https://github.com/hamr0/liteagents/issues
|
|
188
210
|
|
|
189
211
|
---
|
|
190
212
|
|
|
191
213
|
## 📄 License
|
|
192
214
|
|
|
193
|
-
MIT © 2025
|
|
215
|
+
MIT © 2025 hamr0
|
|
194
216
|
|
|
195
217
|
---
|
|
196
218
|
|
|
197
|
-
**Need help?** Check [TROUBLESHOOTING.md](TROUBLESHOOTING.md) or [open an issue](https://github.com/
|
|
219
|
+
**Need help?** Check [TROUBLESHOOTING.md](TROUBLESHOOTING.md) or [open an issue](https://github.com/hamr0/liteagents/issues)
|
|
@@ -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/
|
|
291
|
+
• Troubleshooting: https://github.com/hamr0/liteagents/docs/INSTALLER_GUIDE.md
|
|
292
292
|
|
|
293
293
|
Thank you for installing Agentic Kit!
|
|
294
294
|
```
|
|
@@ -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:
|
|
13
|
+
/plugin add github:hamr0/liteagents
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
**Install Location:**
|
|
17
17
|
```
|
|
18
|
-
~/.config/claude-code/plugins/github-
|
|
18
|
+
~/.config/claude-code/plugins/github-hamr0-liteagents/
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
**What's Installed:**
|
|
@@ -221,7 +221,7 @@ npm root -g
|
|
|
221
221
|
|
|
222
222
|
### Claude Code Plugin
|
|
223
223
|
```bash
|
|
224
|
-
/plugin remove github-
|
|
224
|
+
/plugin remove github-hamr0-liteagents
|
|
225
225
|
```
|
|
226
226
|
|
|
227
227
|
### npm Local
|
|
@@ -259,12 +259,12 @@ https://registry.npmjs.org/liteagents/-/liteagents-1.1.0.tgz
|
|
|
259
259
|
|
|
260
260
|
### GitHub Repository
|
|
261
261
|
```
|
|
262
|
-
https://github.com/
|
|
262
|
+
https://github.com/hamr0/liteagents
|
|
263
263
|
```
|
|
264
264
|
|
|
265
265
|
Claude Code clones from:
|
|
266
266
|
```
|
|
267
|
-
git clone https://github.com/
|
|
267
|
+
git clone https://github.com/hamr0/liteagents.git
|
|
268
268
|
```
|
|
269
269
|
|
|
270
270
|
---
|
package/docs/INSTALLER_GUIDE.md
CHANGED
|
@@ -1279,11 +1279,11 @@ cat ~/.liteagents-install.log
|
|
|
1279
1279
|
```
|
|
1280
1280
|
|
|
1281
1281
|
2. **File an issue**:
|
|
1282
|
-
- GitHub: https://github.com/
|
|
1282
|
+
- GitHub: https://github.com/hamr0/liteagents/issues
|
|
1283
1283
|
- Include: OS, Node.js version, error message, installation log
|
|
1284
1284
|
|
|
1285
1285
|
3. **Community support**:
|
|
1286
|
-
- Discussions: https://github.com/
|
|
1286
|
+
- Discussions: https://github.com/hamr0/liteagents/discussions
|
|
1287
1287
|
- Discord: [link if available]
|
|
1288
1288
|
|
|
1289
1289
|
---
|
|
@@ -1575,12 +1575,12 @@ liteagents install
|
|
|
1575
1575
|
Need help? Here's how to get support:
|
|
1576
1576
|
|
|
1577
1577
|
1. **Documentation**: Check this guide and related docs
|
|
1578
|
-
2. **Issues**: https://github.com/
|
|
1579
|
-
3. **Discussions**: https://github.com/
|
|
1578
|
+
2. **Issues**: https://github.com/hamr0/liteagents/issues
|
|
1579
|
+
3. **Discussions**: https://github.com/hamr0/liteagents/discussions
|
|
1580
1580
|
4. **Email**: support@liteagents.dev (if available)
|
|
1581
1581
|
|
|
1582
1582
|
---
|
|
1583
1583
|
|
|
1584
1584
|
**Last Updated**: 2025-11-04
|
|
1585
1585
|
**Installer Version**: 1.2.0
|
|
1586
|
-
**Maintainer**: @
|
|
1586
|
+
**Maintainer**: @hamr0
|
package/docs/KNOWLEDGE_BASE.md
CHANGED
|
@@ -569,7 +569,7 @@ Create your own marketplace catalog:
|
|
|
569
569
|
"plugins": [
|
|
570
570
|
{
|
|
571
571
|
"name": "liteagents-standard",
|
|
572
|
-
"source": "github:
|
|
572
|
+
"source": "github:hamr0/liteagents"
|
|
573
573
|
}
|
|
574
574
|
]
|
|
575
575
|
}
|
|
@@ -580,7 +580,7 @@ Create your own marketplace catalog:
|
|
|
580
580
|
Clone and link for development:
|
|
581
581
|
|
|
582
582
|
```bash
|
|
583
|
-
git clone https://github.com/
|
|
583
|
+
git clone https://github.com/hamr0/liteagents.git
|
|
584
584
|
cd liteagents
|
|
585
585
|
npm link
|
|
586
586
|
```
|
|
@@ -709,9 +709,9 @@ A: Agents are AI assistants with roles. Skills are executable tools agents can u
|
|
|
709
709
|
|
|
710
710
|
## Resources
|
|
711
711
|
|
|
712
|
-
- **GitHub:** https://github.com/
|
|
712
|
+
- **GitHub:** https://github.com/hamr0/liteagents
|
|
713
713
|
- **npm:** https://www.npmjs.com/package/liteagents
|
|
714
|
-
- **Issues:** https://github.com/
|
|
714
|
+
- **Issues:** https://github.com/hamr0/liteagents/issues
|
|
715
715
|
- **Detailed Docs:**
|
|
716
716
|
- [AGENTS.md](AGENTS.md) - Complete agent directory
|
|
717
717
|
- [SKILLS.md](SKILLS.md) - Complete skill reference
|
|
@@ -724,4 +724,4 @@ A: Agents are AI assistants with roles. Skills are executable tools agents can u
|
|
|
724
724
|
|
|
725
725
|
**Last Updated:** November 2025
|
|
726
726
|
**Version:** 1.1.0
|
|
727
|
-
**Maintainer:**
|
|
727
|
+
**Maintainer:** hamr0
|
package/docs/MIGRATION.md
CHANGED
|
@@ -365,7 +365,7 @@ After migrating, verify:
|
|
|
365
365
|
If you encounter issues during migration:
|
|
366
366
|
|
|
367
367
|
1. **Check Documentation**: Review this guide and INSTALLER_GUIDE.md
|
|
368
|
-
2. **GitHub Issues**: https://github.com/
|
|
368
|
+
2. **GitHub Issues**: https://github.com/hamr0/liteagents/issues
|
|
369
369
|
3. **Debug Mode**: Run with `DEBUG=* node installer/cli.js`
|
|
370
370
|
4. **Manual Migration**: Follow manual migration steps above
|
|
371
371
|
|
package/docs/PASS_QUICK_START.md
CHANGED
package/docs/PRIVACY.md
CHANGED
|
@@ -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/
|
|
179
|
+
- **GitHub Issues**: https://github.com/hamr0/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
|
|
package/docs/PUBLISHING.md
CHANGED
|
@@ -96,7 +96,7 @@ Claude Code doesn't have a centralized official Anthropic marketplace yet. There
|
|
|
96
96
|
Users can install directly from GitHub without marketplace approval:
|
|
97
97
|
|
|
98
98
|
```
|
|
99
|
-
/plugin add github:
|
|
99
|
+
/plugin add github:hamr0/liteagents
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
**No submission required!** Works as soon as you push to GitHub.
|
|
@@ -113,12 +113,12 @@ Host your own marketplace catalog: `.claude-plugin/marketplace.json`
|
|
|
113
113
|
```json
|
|
114
114
|
{
|
|
115
115
|
"name": "liteagents Official",
|
|
116
|
-
"owner": "
|
|
116
|
+
"owner": "hamr0",
|
|
117
117
|
"description": "Lightweight CLI agents for development",
|
|
118
118
|
"plugins": [
|
|
119
119
|
{
|
|
120
120
|
"name": "liteagents",
|
|
121
|
-
"source": "github:
|
|
121
|
+
"source": "github:hamr0/liteagents",
|
|
122
122
|
"description": "Lightweight deterministic CLI agents"
|
|
123
123
|
}
|
|
124
124
|
]
|
|
@@ -127,7 +127,7 @@ Host your own marketplace catalog: `.claude-plugin/marketplace.json`
|
|
|
127
127
|
|
|
128
128
|
Users install via:
|
|
129
129
|
```
|
|
130
|
-
/plugin marketplace add github:
|
|
130
|
+
/plugin marketplace add github:hamr0/liteagents
|
|
131
131
|
```
|
|
132
132
|
|
|
133
133
|
### Option 3: Submit to Community Marketplaces
|
|
@@ -221,7 +221,7 @@ npm login
|
|
|
221
221
|
|
|
222
222
|
#### GitHub Install Not Working
|
|
223
223
|
|
|
224
|
-
**Problem:** Users can't install via `/plugin add github:
|
|
224
|
+
**Problem:** Users can't install via `/plugin add github:hamr0/liteagents`
|
|
225
225
|
|
|
226
226
|
**Checklist:**
|
|
227
227
|
- [ ] Repository is public
|
|
@@ -245,7 +245,7 @@ Before publishing a new release:
|
|
|
245
245
|
- [ ] Changes pushed to GitHub with tags
|
|
246
246
|
- [ ] Published to npm: `./scripts/publish.sh`
|
|
247
247
|
- [ ] Verified npm installation: `npm install -g liteagents`
|
|
248
|
-
- [ ] Verified GitHub installation: `/plugin add github:
|
|
248
|
+
- [ ] Verified GitHub installation: `/plugin add github:hamr0/liteagents`
|
|
249
249
|
|
|
250
250
|
---
|
|
251
251
|
|
|
@@ -254,7 +254,7 @@ Before publishing a new release:
|
|
|
254
254
|
After publishing, your package will be available at:
|
|
255
255
|
|
|
256
256
|
- **npm:** https://www.npmjs.com/package/liteagents
|
|
257
|
-
- **GitHub Repository:** https://github.com/
|
|
257
|
+
- **GitHub Repository:** https://github.com/hamr0/liteagents
|
|
258
258
|
|
|
259
259
|
## Support & Resources
|
|
260
260
|
|
|
@@ -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/
|
|
304
|
-
- **Issues**: https://github.com/
|
|
303
|
+
- **Documentation**: https://github.com/hamr0/liteagents/docs
|
|
304
|
+
- **Issues**: https://github.com/hamr0/liteagents/issues
|
|
305
305
|
- **Security**: See [SECURITY.md](docs/SECURITY.md) for vulnerability reporting
|
|
306
306
|
|
|
307
307
|
---
|
|
@@ -466,7 +466,7 @@ If you encounter issues:
|
|
|
466
466
|
2. Review the installation log at `~/.liteagents-install.log`
|
|
467
467
|
3. Run with `--help` to see all available options
|
|
468
468
|
4. Try interactive mode first to diagnose issues
|
|
469
|
-
5. Report issues at: https://github.com/
|
|
469
|
+
5. Report issues at: https://github.com/hamr0/liteagents/issues
|
|
470
470
|
|
|
471
471
|
## Best Practices
|
|
472
472
|
|
package/installer/cli.js
CHANGED
|
@@ -456,7 +456,7 @@ ${colors.bright}${colors.cyan}██╔══██║██║ ██║█
|
|
|
456
456
|
${colors.bright}${colors.cyan}██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║╚██████╗ ██║ ██╗██║ ██║${colors.reset}
|
|
457
457
|
${colors.bright}${colors.cyan}╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝${colors.reset}
|
|
458
458
|
|
|
459
|
-
${colors.bright}v2.5.
|
|
459
|
+
${colors.bright}v2.5.3 | 11 agents + 22 commands per tool${colors.reset}
|
|
460
460
|
`);
|
|
461
461
|
}
|
|
462
462
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "liteagents",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.3",
|
|
4
4
|
"description": "AI development toolkit with 11 specialized agents and 22 commands. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -44,16 +44,16 @@
|
|
|
44
44
|
"cli",
|
|
45
45
|
"variant-system"
|
|
46
46
|
],
|
|
47
|
-
"author": "
|
|
47
|
+
"author": "hamr0 <avoidaccess@msn.com>",
|
|
48
48
|
"license": "MIT",
|
|
49
49
|
"repository": {
|
|
50
50
|
"type": "git",
|
|
51
|
-
"url": "https://github.com/
|
|
51
|
+
"url": "https://github.com/hamr0/liteagents.git"
|
|
52
52
|
},
|
|
53
53
|
"bugs": {
|
|
54
|
-
"url": "https://github.com/
|
|
54
|
+
"url": "https://github.com/hamr0/liteagents/issues"
|
|
55
55
|
},
|
|
56
|
-
"homepage": "https://github.com/
|
|
56
|
+
"homepage": "https://github.com/hamr0/liteagents#readme",
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"registry": "https://registry.npmjs.org",
|
|
59
59
|
"access": "public"
|
|
@@ -23,7 +23,7 @@ Production-ready AI agent framework providing specialized subagents, workflow co
|
|
|
23
23
|
|
|
24
24
|
Clone the toolkit:
|
|
25
25
|
```bash
|
|
26
|
-
git clone https://github.com/
|
|
26
|
+
git clone https://github.com/hamr0/agentic-toolkit
|
|
27
27
|
cd agentic-toolkit/ai/subagentic
|
|
28
28
|
```
|
|
29
29
|
|
|
@@ -363,5 +363,5 @@ See repository for contribution guidelines.
|
|
|
363
363
|
---
|
|
364
364
|
|
|
365
365
|
**License**: [Specify license]
|
|
366
|
-
**Repository**: https://github.com/
|
|
367
|
-
**Issues**: https://github.com/
|
|
366
|
+
**Repository**: https://github.com/hamr0/agentic-toolkit
|
|
367
|
+
**Issues**: https://github.com/hamr0/agentic-toolkit/issues
|