agentic-flow 1.6.5 → 1.7.2

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.
Files changed (34) hide show
  1. package/.claude/agents/test-neural.md +5 -0
  2. package/.claude/settings.json +20 -19
  3. package/.claude/skills/.claude-flow/metrics/agent-metrics.json +1 -0
  4. package/.claude/skills/.claude-flow/metrics/performance.json +87 -0
  5. package/.claude/skills/.claude-flow/metrics/task-metrics.json +10 -0
  6. package/.claude/skills/agentdb-memory-patterns/SKILL.md +166 -0
  7. package/.claude/skills/agentdb-vector-search/SKILL.md +126 -0
  8. package/.claude/skills/agentic-flow/agentdb-memory-patterns/SKILL.md +166 -0
  9. package/.claude/skills/agentic-flow/agentdb-vector-search/SKILL.md +126 -0
  10. package/.claude/skills/agentic-flow/reasoningbank-intelligence/SKILL.md +201 -0
  11. package/.claude/skills/agentic-flow/swarm-orchestration/SKILL.md +179 -0
  12. package/.claude/skills/reasoningbank-intelligence/SKILL.md +201 -0
  13. package/.claude/skills/skill-builder/.claude-flow/metrics/agent-metrics.json +1 -0
  14. package/.claude/skills/skill-builder/.claude-flow/metrics/performance.json +87 -0
  15. package/.claude/skills/skill-builder/.claude-flow/metrics/task-metrics.json +10 -0
  16. package/.claude/skills/skill-builder/README.md +308 -0
  17. package/.claude/skills/skill-builder/SKILL.md +910 -0
  18. package/.claude/skills/skill-builder/docs/SPECIFICATION.md +358 -0
  19. package/.claude/skills/skill-builder/resources/schemas/skill-frontmatter.schema.json +41 -0
  20. package/.claude/skills/skill-builder/resources/templates/full-skill.template +118 -0
  21. package/.claude/skills/skill-builder/resources/templates/minimal-skill.template +38 -0
  22. package/.claude/skills/skill-builder/scripts/generate-skill.sh +334 -0
  23. package/.claude/skills/skill-builder/scripts/validate-skill.sh +198 -0
  24. package/.claude/skills/swarm-orchestration/SKILL.md +179 -0
  25. package/CHANGELOG.md +71 -0
  26. package/README.md +79 -1
  27. package/dist/cli/skills-manager.js +1295 -0
  28. package/dist/cli/update-message.js +175 -0
  29. package/dist/cli-proxy.js +8 -1
  30. package/dist/utils/cli.js +17 -0
  31. package/package.json +2 -2
  32. package/wasm/reasoningbank/reasoningbank_wasm_bg.js +2 -2
  33. package/wasm/reasoningbank/reasoningbank_wasm_bg.wasm +0 -0
  34. package/.claude/answer.md +0 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,77 @@ 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.2] - 2025-10-19
9
+
10
+ ### Added
11
+ - **Skills System Integration** - Full CLI support for Claude Code Skills management
12
+ - `npx agentic-flow skills list` - List all installed skills (personal + project)
13
+ - `npx agentic-flow skills init` - Initialize skills directories (~/.claude/skills and .claude/skills)
14
+ - `npx agentic-flow skills create` - Create agentic-flow example skills (AgentDB, swarm, reasoningbank)
15
+ - `npx agentic-flow skills init-builder` - Install skill-builder framework for creating custom skills
16
+ - `npx agentic-flow skills help` - Show comprehensive skills command documentation
17
+ - Skills automatically discovered by Claude Code across all surfaces (Claude.ai, CLI, SDK, API)
18
+
19
+ ### Changed
20
+ - **README Updates** - Added comprehensive Skills System documentation
21
+ - New Skills System section with Quick Start guide
22
+ - Updated Quick Navigation table to highlight Skills
23
+ - Updated CLI Commands section with all 5 skills commands
24
+ - Added skill structure examples with YAML frontmatter
25
+ - Listed 5 built-in skills: skill-builder, agentdb-memory-patterns, agentdb-vector-search, reasoningbank-intelligence, swarm-orchestration
26
+
27
+ ### Documentation
28
+ - Updated both main README.md and npm package README.md with identical Skills documentation
29
+ - Added skills to Quick Navigation for easy discovery
30
+ - Included benefits: reusable, discoverable, structured, progressive, validated
31
+
32
+ ## [1.7.1] - 2025-10-19
33
+
34
+ ### Fixed
35
+ - **CRITICAL: Skills Top-Level Installation** - Fixed skills to install at top level for Claude Code discovery
36
+ - **Claude Code requires**: `~/.claude/skills/[skill-name]/` (top level)
37
+ - **NOT supported**: `~/.claude/skills/namespace/[skill-name]/` (nested subdirectories)
38
+ - All skills now correctly install at top level: `~/.claude/skills/skill-builder/`, `~/.claude/skills/swarm-orchestration/`, etc.
39
+ - Skills are now properly discovered by Claude Code after restart
40
+ - Reverted incorrect v1.7.0 namespace changes that broke skill discovery
41
+
42
+ ### Changed
43
+ - Updated `skills-manager.ts` to install all skills at top level (removed nested namespace)
44
+ - Moved skill source files from `agentic-flow/` subdirectory to top level in `.claude/skills/`
45
+ - Simplified source detection paths
46
+
47
+ ### Documentation
48
+ - Added `docs/plans/skills/SKILLS_TOP_LEVEL_FIX.md` - Explanation of fix and testing
49
+ - Updated `docs/plans/skills/SKILL_INSTALLATION_ANALYSIS.md` - Corrected with top-level requirement
50
+ - Deprecated `docs/plans/skills/MIGRATION_v1.7.0.md` - Namespace approach was incorrect
51
+
52
+ ### Migration
53
+ If you installed skills with v1.7.0:
54
+ ```bash
55
+ # Move skills from namespace to top level
56
+ cd ~/.claude/skills
57
+ for skill in agentic-flow/*; do
58
+ mv "agentic-flow/$skill" "$(basename $skill)"
59
+ done
60
+ rm -rf agentic-flow
61
+ # Restart Claude Code
62
+ ```
63
+
64
+ Or simply reinstall:
65
+ ```bash
66
+ npx agentic-flow skills init personal --with-builder
67
+ ```
68
+
69
+ ## [1.6.6] - 2025-10-18
70
+
71
+ ### Changed
72
+
73
+ - **AgentDB v1.0.5** - Updated to latest version with browser bundle support
74
+ - Now includes `dist/agentdb.min.js` (196KB) and `dist/agentdb.js` (380KB) for CDN usage
75
+ - Browser bundles support direct import via unpkg/jsDelivr
76
+ - Source maps included for debugging
77
+ - WASM backend fully functional in browser environments
78
+
8
79
  ## [1.6.5] - 2025-10-18
9
80
 
10
81
  ### Changed
package/README.md CHANGED
@@ -17,7 +17,7 @@
17
17
  |-------------|---------------|---------------|
18
18
  | [Quick Start](#-quick-start) | [Agent Booster](#-core-components) | [Agent List](#-agent-types) |
19
19
  | [Deployment Options](#-deployment-options) | [ReasoningBank](#-core-components) | [MCP Tools](#-mcp-tools-213-total) |
20
- | [Model Optimization](#-model-optimization) | [Multi-Model Router](#-using-the-multi-model-router) | [Complete Docs](https://github.com/ruvnet/agentic-flow/tree/main/docs) |
20
+ | [Model Optimization](#-model-optimization) | [Skills System](#-skills-system-claude-code-integration) | [Complete Docs](https://github.com/ruvnet/agentic-flow/tree/main/docs) |
21
21
 
22
22
  ---
23
23
 
@@ -248,10 +248,18 @@ npx agentic-flow mcp status # Check server status
248
248
  npx agentic-flow --list # List all 79 agents
249
249
  npx agentic-flow agent info coder # Get agent details
250
250
  npx agentic-flow agent create # Create custom agent
251
+
252
+ # Skills management (NEW in v1.5.11+)
253
+ npx agentic-flow skills list # List all installed skills
254
+ npx agentic-flow skills init # Initialize skills directories
255
+ npx agentic-flow skills create # Create agentic-flow example skills
256
+ npx agentic-flow skills init-builder # Install skill-builder framework
257
+ npx agentic-flow skills help # Show skills help
251
258
  ```
252
259
 
253
260
  **Built-in MCP Tools** (7): agent execution, list agents, create agent, agent info, conflicts check, model optimizer, list all agents
254
261
  **External MCP Servers**: claude-flow (101 tools), flow-nexus (96 tools), agentic-payments (10 tools)
262
+ **Skills System**: Create reusable AI workflows with YAML frontmatter and progressive disclosure
255
263
 
256
264
  ---
257
265
 
@@ -367,6 +375,76 @@ for (const file of files) {
367
375
 
368
376
  ---
369
377
 
378
+ ## 🎓 Skills System (Claude Code Integration)
379
+
380
+ **NEW in v1.5.11+**: Create reusable AI workflows with proper YAML frontmatter, progressive disclosure, and Claude Code integration.
381
+
382
+ ### What Are Skills?
383
+
384
+ Skills are structured AI workflows that Claude can autonomously discover and execute across all surfaces (Claude.ai, Claude Code, SDK, API). Each skill is a self-contained SKILL.md file with YAML frontmatter defining its capabilities.
385
+
386
+ ### Quick Start
387
+
388
+ ```bash
389
+ # Initialize skills directories
390
+ npx agentic-flow skills init # Creates ~/.claude/skills and .claude/skills
391
+
392
+ # Install skill-builder framework (for creating custom skills)
393
+ npx agentic-flow skills init-builder # Adds skill-builder to your project
394
+
395
+ # Create example agentic-flow skills
396
+ npx agentic-flow skills create # Creates AgentDB, swarm, reasoningbank skills
397
+
398
+ # List all installed skills
399
+ npx agentic-flow skills list # Shows personal and project skills
400
+
401
+ # Get help
402
+ npx agentic-flow skills help # Show all commands and usage
403
+ ```
404
+
405
+ ### Skill Structure
406
+
407
+ Every skill requires a SKILL.md file with YAML frontmatter:
408
+
409
+ ```yaml
410
+ ---
411
+ name: "Skill Name" # REQUIRED: Max 64 chars
412
+ description: "What this skill does # REQUIRED: Max 1024 chars
413
+ and when Claude should use it." # Include BOTH what & when
414
+ ---
415
+
416
+ # Skill Name
417
+
418
+ ## What This Skill Does
419
+ [Instructions for Claude]
420
+
421
+ ## Quick Start
422
+ [Basic usage examples]
423
+
424
+ ## Prerequisites
425
+ [Requirements]
426
+ ```
427
+
428
+ ### Built-in Skills
429
+
430
+ - **skill-builder** - Create new Claude Code Skills with proper structure
431
+ - **agentdb-memory-patterns** - Persistent memory patterns for AI agents
432
+ - **agentdb-vector-search** - Semantic search with AgentDB
433
+ - **reasoningbank-intelligence** - Adaptive learning and pattern recognition
434
+ - **swarm-orchestration** - Multi-agent coordination workflows
435
+
436
+ ### Benefits
437
+
438
+ - ✅ **Reusable**: Share skills across projects and teams
439
+ - ✅ **Discoverable**: Claude finds and uses skills automatically
440
+ - ✅ **Structured**: YAML frontmatter ensures consistency
441
+ - ✅ **Progressive**: Expand details only when needed
442
+ - ✅ **Validated**: Built-in validation catches errors early
443
+
444
+ **Learn More:** [Skills Documentation](https://github.com/ruvnet/agentic-flow/tree/main/agentic-flow/.claude/skills)
445
+
446
+ ---
447
+
370
448
  ## 🎛️ Programmatic API
371
449
 
372
450
  ### Multi-Model Router