@weavelogic/knowledge-graph-agent 0.7.0 → 0.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.
- package/README.md +27 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -724,6 +724,17 @@ import {
|
|
|
724
724
|
|
|
725
725
|
## Changelog
|
|
726
726
|
|
|
727
|
+
### v0.7.2
|
|
728
|
+
|
|
729
|
+
- Fixed repository URL in package.json to correct GitHub repo
|
|
730
|
+
- Resolved stale Dependabot security alerts (Next.js not a dependency)
|
|
731
|
+
|
|
732
|
+
### v0.7.1
|
|
733
|
+
|
|
734
|
+
- Fixed documentation links to use new organized reference structure
|
|
735
|
+
- Updated Reference section with proper paths to `docs/reference/api/`, `docs/reference/cli/`, `docs/reference/mcp/`
|
|
736
|
+
- Added Architecture section with integration documentation links
|
|
737
|
+
|
|
727
738
|
### v0.7.0
|
|
728
739
|
|
|
729
740
|
**Core Features:**
|
|
@@ -826,16 +837,22 @@ Comprehensive documentation is available in the [docs/](./docs/) directory, orga
|
|
|
826
837
|
|
|
827
838
|
### Reference
|
|
828
839
|
|
|
829
|
-
- [API Reference](./docs/
|
|
830
|
-
- [
|
|
831
|
-
- [
|
|
832
|
-
- [
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
- [
|
|
840
|
+
- [API Reference](./docs/reference/api/index.md) - Complete API surface
|
|
841
|
+
- [Core API](./docs/reference/api/core.md) - Database, cache, knowledge graph
|
|
842
|
+
- [Agents API](./docs/reference/api/agents.md) - Agent system interfaces
|
|
843
|
+
- [Graph API](./docs/reference/api/graph.md) - Graph operations
|
|
844
|
+
- [CLI Commands](./docs/reference/cli/commands.md) - All CLI commands
|
|
845
|
+
- [MCP Tools](./docs/reference/mcp/tools.md) - MCP server tools
|
|
846
|
+
|
|
847
|
+
### Architecture
|
|
848
|
+
|
|
849
|
+
- [Architecture Overview](./docs/ARCHITECTURE.md) - System architecture
|
|
850
|
+
- [Integration Index](./docs/architecture/integrations/INDEX.md) - All integrations
|
|
851
|
+
- [Claude-Flow](./docs/architecture/integrations/claude-flow.md) - MCP orchestration
|
|
852
|
+
- [RuVector](./docs/architecture/integrations/ruvector.md) - Vector search
|
|
853
|
+
- [Exochain](./docs/architecture/integrations/exochain.md) - Audit trail
|
|
854
|
+
- [Agentic-Flow](./docs/architecture/integrations/agentic-flow.md) - Agent framework
|
|
855
|
+
- [ADR Index](./docs/architecture/decisions/README.md) - Architecture decisions
|
|
839
856
|
- [Dependencies](./docs/DEPENDENCIES.md) - Package dependencies and licenses
|
|
840
857
|
|
|
841
858
|
## Contributing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weavelogic/knowledge-graph-agent",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Knowledge graph agent for Claude Code - generates knowledge graphs, initializes docs, and integrates with claude-flow",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
],
|
|
97
97
|
"repository": {
|
|
98
98
|
"type": "git",
|
|
99
|
-
"url": "https://github.com/
|
|
99
|
+
"url": "https://github.com/weave-logic-ai/knowledge-graph-agent"
|
|
100
100
|
},
|
|
101
101
|
"publishConfig": {
|
|
102
102
|
"access": "public"
|