@pieai/doc-gov 0.7.3 → 0.8.0
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/dist/cli.js +3 -16
- package/package.json +4 -4
package/dist/cli.js
CHANGED
|
@@ -69,10 +69,7 @@ import { existsSync, readdirSync, statSync } from "node:fs";
|
|
|
69
69
|
import { join, relative } from "node:path";
|
|
70
70
|
|
|
71
71
|
// src/core/external-artifacts.ts
|
|
72
|
-
var EXTERNAL_ARTIFACT_PREFIXES = [
|
|
73
|
-
"docs/brainstorms/",
|
|
74
|
-
"docs/pulse-reports/"
|
|
75
|
-
];
|
|
72
|
+
var EXTERNAL_ARTIFACT_PREFIXES = ["docs/brainstorms/", "docs/pulse-reports/"];
|
|
76
73
|
function isExternalArtifactPath(repoPath) {
|
|
77
74
|
if (EXTERNAL_ARTIFACT_PREFIXES.some((prefix) => repoPath.startsWith(prefix))) {
|
|
78
75
|
return true;
|
|
@@ -893,13 +890,7 @@ import { existsSync as existsSync7, readFileSync as readFileSync7 } from "node:f
|
|
|
893
890
|
import { isAbsolute, join as join9, resolve as resolve2 } from "node:path";
|
|
894
891
|
|
|
895
892
|
// src/core/router-integrity.ts
|
|
896
|
-
import {
|
|
897
|
-
existsSync as existsSync6,
|
|
898
|
-
lstatSync as lstatSync2,
|
|
899
|
-
readlinkSync,
|
|
900
|
-
readdirSync as readdirSync5,
|
|
901
|
-
readFileSync as readFileSync6
|
|
902
|
-
} from "node:fs";
|
|
893
|
+
import { existsSync as existsSync6, lstatSync as lstatSync2, readlinkSync, readdirSync as readdirSync5, readFileSync as readFileSync6 } from "node:fs";
|
|
903
894
|
import { join as join8, relative as relative2 } from "node:path";
|
|
904
895
|
var CENTRAL_REQUIRED_FILES = [
|
|
905
896
|
"AGENTS.md",
|
|
@@ -977,11 +968,7 @@ var FORBIDDEN_PROJECT_ROOTS = ["integrations"];
|
|
|
977
968
|
var FORBIDDEN_CENTRAL_ROOTS = ["shared-rules"];
|
|
978
969
|
var ROUTER_BLOCK_BEGIN = "<!-- PGS-ROUTER:BEGIN v1.1 -->";
|
|
979
970
|
var ROUTER_BLOCK_END = "<!-- PGS-ROUTER:END -->";
|
|
980
|
-
var EXTERNAL_ROUTER_MARKERS = [
|
|
981
|
-
"## gstack",
|
|
982
|
-
"## GStack",
|
|
983
|
-
"## Skill routing"
|
|
984
|
-
];
|
|
971
|
+
var EXTERNAL_ROUTER_MARKERS = ["## gstack", "## GStack", "## Skill routing"];
|
|
985
972
|
var CENTRAL_REQUIRED_NEEDLES = [
|
|
986
973
|
{
|
|
987
974
|
file: "AGENTS.md",
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pieai/doc-gov",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "AI-native documentation governance CLI for project docs, agent routing, and lifecycle checks.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
7
|
+
"cli",
|
|
7
8
|
"documentation",
|
|
8
9
|
"governance",
|
|
9
|
-
"
|
|
10
|
-
"project-management"
|
|
11
|
-
"markdown"
|
|
10
|
+
"markdown",
|
|
11
|
+
"project-management"
|
|
12
12
|
],
|
|
13
13
|
"homepage": "https://github.com/PieAIStudio/ProjectGovernanceSystem#readme",
|
|
14
14
|
"bugs": {
|