@weavelogic/knowledge-graph-agent 0.7.1 → 0.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/README.md +14 -0
- package/dist/node_modules/@typescript-eslint/project-service/dist/index.js +1 -1
- package/dist/node_modules/@typescript-eslint/types/dist/index.js +1 -1
- package/dist/node_modules/@typescript-eslint/visitor-keys/dist/index.js +1 -1
- package/dist/node_modules/tinyglobby/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -724,6 +724,18 @@ import {
|
|
|
724
724
|
|
|
725
725
|
## Changelog
|
|
726
726
|
|
|
727
|
+
### v0.7.3
|
|
728
|
+
|
|
729
|
+
- Added SOP Governance documentation (`docs/guides/sop-governance.md`)
|
|
730
|
+
- Added SOP Reference documentation (`docs/reference/sops.md`)
|
|
731
|
+
- Complete documentation for all 40 AI-SDLC SOPs with requirements and checkpoints
|
|
732
|
+
- Updated docs README and main README with governance documentation links
|
|
733
|
+
|
|
734
|
+
### v0.7.2
|
|
735
|
+
|
|
736
|
+
- Fixed repository URL in package.json to correct GitHub repo
|
|
737
|
+
- Resolved stale Dependabot security alerts (Next.js not a dependency)
|
|
738
|
+
|
|
727
739
|
### v0.7.1
|
|
728
740
|
|
|
729
741
|
- Fixed documentation links to use new organized reference structure
|
|
@@ -822,6 +834,7 @@ Comprehensive documentation is available in the [docs/](./docs/) directory, orga
|
|
|
822
834
|
- [Knowledge Graph Management](./docs/guides/knowledge-graph.md) - Create, query, and traverse graphs
|
|
823
835
|
- [Cultivation System](./docs/guides/cultivation.md) - Analyze codebases and generate primitives
|
|
824
836
|
- [Agent System](./docs/guides/agents.md) - Work with AI agents and rules engine
|
|
837
|
+
- [SOP Governance](./docs/guides/sop-governance.md) - AI-SDLC compliance and governance enforcement
|
|
825
838
|
|
|
826
839
|
### Enterprise Features
|
|
827
840
|
|
|
@@ -838,6 +851,7 @@ Comprehensive documentation is available in the [docs/](./docs/) directory, orga
|
|
|
838
851
|
- [Graph API](./docs/reference/api/graph.md) - Graph operations
|
|
839
852
|
- [CLI Commands](./docs/reference/cli/commands.md) - All CLI commands
|
|
840
853
|
- [MCP Tools](./docs/reference/mcp/tools.md) - MCP server tools
|
|
854
|
+
- [SOP Reference](./docs/reference/sops.md) - AI-SDLC SOPs technical reference
|
|
841
855
|
|
|
842
856
|
### Architecture
|
|
843
857
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as dist } from "../../../../_virtual/
|
|
1
|
+
import { __exports as dist } from "../../../../_virtual/index8.js";
|
|
2
2
|
import { __require as requireCreateProjectService } from "./createProjectService.js";
|
|
3
3
|
var hasRequiredDist;
|
|
4
4
|
function requireDist() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as dist } from "../../../../_virtual/
|
|
1
|
+
import { __exports as dist } from "../../../../_virtual/index5.js";
|
|
2
2
|
import { __require as requireAstSpec } from "./generated/ast-spec.js";
|
|
3
3
|
import { __require as requireLib } from "./lib.js";
|
|
4
4
|
import { __require as requireParserOptions } from "./parser-options.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as dist } from "../../../../_virtual/
|
|
1
|
+
import { __exports as dist } from "../../../../_virtual/index6.js";
|
|
2
2
|
import { __require as requireGetKeys } from "./get-keys.js";
|
|
3
3
|
import { __require as requireVisitorKeys } from "./visitor-keys.js";
|
|
4
4
|
var hasRequiredDist;
|
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.3",
|
|
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"
|