@weavelogic/knowledge-graph-agent 0.7.2 → 0.7.4
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 +13 -0
- package/dist/_virtual/index10.js +4 -2
- package/dist/_virtual/index10.js.map +1 -1
- package/dist/_virtual/index11.js +2 -2
- package/dist/_virtual/index12.js +2 -4
- package/dist/_virtual/index12.js.map +1 -1
- package/dist/node_modules/fdir/dist/index.js +1 -1
- package/dist/node_modules/onnxruntime-web/dist/ort-web.min.js +1 -1
- package/dist/node_modules/ts-api-utils/lib/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -724,6 +724,17 @@ import {
|
|
|
724
724
|
|
|
725
725
|
## Changelog
|
|
726
726
|
|
|
727
|
+
### v0.7.4
|
|
728
|
+
|
|
729
|
+
- Fixed repository URL in package.json to match actual GitHub repo name
|
|
730
|
+
|
|
731
|
+
### v0.7.3
|
|
732
|
+
|
|
733
|
+
- Added SOP Governance documentation (`docs/guides/sop-governance.md`)
|
|
734
|
+
- Added SOP Reference documentation (`docs/reference/sops.md`)
|
|
735
|
+
- Complete documentation for all 40 AI-SDLC SOPs with requirements and checkpoints
|
|
736
|
+
- Updated docs README and main README with governance documentation links
|
|
737
|
+
|
|
727
738
|
### v0.7.2
|
|
728
739
|
|
|
729
740
|
- Fixed repository URL in package.json to correct GitHub repo
|
|
@@ -827,6 +838,7 @@ Comprehensive documentation is available in the [docs/](./docs/) directory, orga
|
|
|
827
838
|
- [Knowledge Graph Management](./docs/guides/knowledge-graph.md) - Create, query, and traverse graphs
|
|
828
839
|
- [Cultivation System](./docs/guides/cultivation.md) - Analyze codebases and generate primitives
|
|
829
840
|
- [Agent System](./docs/guides/agents.md) - Work with AI agents and rules engine
|
|
841
|
+
- [SOP Governance](./docs/guides/sop-governance.md) - AI-SDLC compliance and governance enforcement
|
|
830
842
|
|
|
831
843
|
### Enterprise Features
|
|
832
844
|
|
|
@@ -843,6 +855,7 @@ Comprehensive documentation is available in the [docs/](./docs/) directory, orga
|
|
|
843
855
|
- [Graph API](./docs/reference/api/graph.md) - Graph operations
|
|
844
856
|
- [CLI Commands](./docs/reference/cli/commands.md) - All CLI commands
|
|
845
857
|
- [MCP Tools](./docs/reference/mcp/tools.md) - MCP server tools
|
|
858
|
+
- [SOP Reference](./docs/reference/sops.md) - AI-SDLC SOPs technical reference
|
|
846
859
|
|
|
847
860
|
### Architecture
|
|
848
861
|
|
package/dist/_virtual/index10.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { getAugmentedNamespace } from "./_commonjsHelpers.js";
|
|
2
|
+
import * as index from "../node_modules/onnxruntime-common/dist/lib/index.js";
|
|
3
|
+
const require$$0 = /* @__PURE__ */ getAugmentedNamespace(index);
|
|
2
4
|
export {
|
|
3
|
-
|
|
5
|
+
require$$0 as default
|
|
4
6
|
};
|
|
5
7
|
//# sourceMappingURL=index10.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index10.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index10.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
|
package/dist/_virtual/index11.js
CHANGED
package/dist/_virtual/index12.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
import * as index from "../node_modules/onnxruntime-common/dist/lib/index.js";
|
|
3
|
-
const require$$0 = /* @__PURE__ */ getAugmentedNamespace(index);
|
|
1
|
+
var lib = {};
|
|
4
2
|
export {
|
|
5
|
-
|
|
3
|
+
lib as __exports
|
|
6
4
|
};
|
|
7
5
|
//# sourceMappingURL=index12.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index12.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index12.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __module as ortWeb_min } from "../../../_virtual/ort-web.min2.js";
|
|
2
|
-
import require$$0 from "../../../_virtual/
|
|
2
|
+
import require$$0 from "../../../_virtual/index10.js";
|
|
3
3
|
/*!
|
|
4
4
|
* ONNX Runtime Web v1.14.0
|
|
5
5
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
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.4",
|
|
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/weave-logic-ai/
|
|
99
|
+
"url": "https://github.com/weave-logic-ai/knowlege-graph-agent"
|
|
100
100
|
},
|
|
101
101
|
"publishConfig": {
|
|
102
102
|
"access": "public"
|