agentic-flow 1.7.2 → 1.7.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 +26 -0
- package/dist/cli/skills-manager.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
|
|
|
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).
|
|
7
7
|
|
|
8
|
+
## [1.7.3] - 2025-10-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **CRITICAL: Skills Installation Path** - Fixed skills to install at top level for Claude Code discovery
|
|
12
|
+
- **Before**: Skills installed to `.claude/skills/agentic-flow/[skill-name]/` (WRONG - nested subdirectory)
|
|
13
|
+
- **After**: Skills install to `.claude/skills/[skill-name]/` (CORRECT - top level)
|
|
14
|
+
- Claude Code requires skills at top level, NOT in subdirectories
|
|
15
|
+
- Affects `npx agentic-flow skills create` command
|
|
16
|
+
- All 4 example skills (agentdb-vector-search, agentdb-memory-patterns, swarm-orchestration, reasoningbank-intelligence) now install correctly
|
|
17
|
+
|
|
18
|
+
### Migration
|
|
19
|
+
If you installed skills with v1.7.2:
|
|
20
|
+
```bash
|
|
21
|
+
# Move skills from subdirectory to top level
|
|
22
|
+
cd .claude/skills
|
|
23
|
+
mv agentic-flow/* .
|
|
24
|
+
rmdir agentic-flow
|
|
25
|
+
# Restart Claude Code
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Or simply reinstall:
|
|
29
|
+
```bash
|
|
30
|
+
rm -rf .claude/skills
|
|
31
|
+
npx agentic-flow@latest skills create
|
|
32
|
+
```
|
|
33
|
+
|
|
8
34
|
## [1.7.2] - 2025-10-19
|
|
9
35
|
|
|
10
36
|
### Added
|
|
@@ -503,7 +503,9 @@ async function handleSkillsCreate(args) {
|
|
|
503
503
|
let count = 0;
|
|
504
504
|
for (const skillContent of skills) {
|
|
505
505
|
const skillName = extractSkillName(skillContent);
|
|
506
|
-
|
|
506
|
+
// Claude Code requires skills at TOP LEVEL: .claude/skills/[skill-name]/
|
|
507
|
+
// NOT in subdirectories: .claude/skills/namespace/[skill-name]/
|
|
508
|
+
const skillDir = join(projectSkillsDir, skillName);
|
|
507
509
|
mkdirSync(skillDir, { recursive: true });
|
|
508
510
|
writeFileSync(join(skillDir, 'SKILL.md'), skillContent, 'utf-8');
|
|
509
511
|
count++;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-flow",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.3",
|
|
4
4
|
"description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, ReasoningBank learning memory, and autonomous multi-agent swarms. Built by @ruvnet with Claude Agent SDK, neural networks, memory persistence, GitHub integration, and distributed consensus protocols.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|