agconf 0.2.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/LICENSE +21 -0
- package/README.md +150 -0
- package/dist/chunk-B53WKCQU.js +653 -0
- package/dist/chunk-B53WKCQU.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3521 -0
- package/dist/index.js.map +1 -0
- package/dist/skill-metadata-XXNMIXLD.js +38 -0
- package/dist/skill-metadata-XXNMIXLD.js.map +1 -0
- package/package.json +94 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import {
|
|
3
|
+
addManagedMetadata,
|
|
4
|
+
checkAgentsMd,
|
|
5
|
+
checkAgentsMdRulesSection,
|
|
6
|
+
checkAllManagedFiles,
|
|
7
|
+
checkRuleFiles,
|
|
8
|
+
checkSkillFiles,
|
|
9
|
+
computeContentHash,
|
|
10
|
+
getMetadataKeyNames,
|
|
11
|
+
getModifiedManagedFiles,
|
|
12
|
+
getModifiedRuleFiles,
|
|
13
|
+
getModifiedSkillFiles,
|
|
14
|
+
hasManualChanges,
|
|
15
|
+
isManaged,
|
|
16
|
+
parseFrontmatter,
|
|
17
|
+
stripManagedMetadata,
|
|
18
|
+
validateSkillFrontmatter
|
|
19
|
+
} from "./chunk-B53WKCQU.js";
|
|
20
|
+
export {
|
|
21
|
+
addManagedMetadata,
|
|
22
|
+
checkAgentsMd,
|
|
23
|
+
checkAgentsMdRulesSection,
|
|
24
|
+
checkAllManagedFiles,
|
|
25
|
+
checkRuleFiles,
|
|
26
|
+
checkSkillFiles,
|
|
27
|
+
computeContentHash,
|
|
28
|
+
getMetadataKeyNames,
|
|
29
|
+
getModifiedManagedFiles,
|
|
30
|
+
getModifiedRuleFiles,
|
|
31
|
+
getModifiedSkillFiles,
|
|
32
|
+
hasManualChanges,
|
|
33
|
+
isManaged,
|
|
34
|
+
parseFrontmatter,
|
|
35
|
+
stripManagedMetadata,
|
|
36
|
+
validateSkillFrontmatter
|
|
37
|
+
};
|
|
38
|
+
//# sourceMappingURL=skill-metadata-XXNMIXLD.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agconf",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "CLI utility to sync AI agent configurations across repositories",
|
|
5
|
+
"author": "Julian Pani",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"agconf": "./dist/index.js",
|
|
9
|
+
"agent-conf": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"start": "tsx src/index.ts",
|
|
18
|
+
"build": "tsup",
|
|
19
|
+
"dev": "tsx --watch src/index.ts",
|
|
20
|
+
"test": "vitest run",
|
|
21
|
+
"test:watch": "vitest",
|
|
22
|
+
"test:coverage": "vitest run --coverage",
|
|
23
|
+
"lint": "biome lint",
|
|
24
|
+
"lint:fix": "biome lint --fix",
|
|
25
|
+
"format": "biome format --write",
|
|
26
|
+
"format:check": "biome format",
|
|
27
|
+
"check": "biome check",
|
|
28
|
+
"check:fix": "biome check --fix",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"prepublishOnly": "pnpm run build",
|
|
31
|
+
"install:global": "pnpm install && pnpm build && pnpm link --global",
|
|
32
|
+
"release": "semantic-release",
|
|
33
|
+
"release:dry-run": "semantic-release --dry-run"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@clack/prompts": "^0.7.0",
|
|
37
|
+
"commander": "^12.1.0",
|
|
38
|
+
"fast-glob": "^3.3.2",
|
|
39
|
+
"ora": "^8.0.1",
|
|
40
|
+
"picocolors": "^1.0.1",
|
|
41
|
+
"simple-git": "^3.25.0",
|
|
42
|
+
"tabtab": "^3.0.2",
|
|
43
|
+
"yaml": "^2.4.0",
|
|
44
|
+
"zod": "^3.23.8"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@biomejs/biome": "^2.3.13",
|
|
48
|
+
"@commitlint/cli": "^19.0.0",
|
|
49
|
+
"@commitlint/config-conventional": "^19.0.0",
|
|
50
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
51
|
+
"@semantic-release/exec": "^6.0.3",
|
|
52
|
+
"@semantic-release/git": "^10.0.1",
|
|
53
|
+
"@types/node": "^20.14.0",
|
|
54
|
+
"@types/tabtab": "^3.0.4",
|
|
55
|
+
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
56
|
+
"lint-staged": "^16.2.7",
|
|
57
|
+
"semantic-release": "^24.0.0",
|
|
58
|
+
"tsup": "^8.1.0",
|
|
59
|
+
"tsx": "^4.21.0",
|
|
60
|
+
"typescript": "^5.4.5",
|
|
61
|
+
"vitest": "^1.6.0"
|
|
62
|
+
},
|
|
63
|
+
"engines": {
|
|
64
|
+
"node": ">=20.0.0"
|
|
65
|
+
},
|
|
66
|
+
"keywords": [
|
|
67
|
+
"cli",
|
|
68
|
+
"ai-agents",
|
|
69
|
+
"claude",
|
|
70
|
+
"codex",
|
|
71
|
+
"developer-tools",
|
|
72
|
+
"config-sync",
|
|
73
|
+
"engineering-standards"
|
|
74
|
+
],
|
|
75
|
+
"repository": {
|
|
76
|
+
"type": "git",
|
|
77
|
+
"url": "git+https://github.com/julian-pani/agent-conf.git",
|
|
78
|
+
"directory": "cli"
|
|
79
|
+
},
|
|
80
|
+
"homepage": "https://github.com/julian-pani/agent-conf#readme",
|
|
81
|
+
"bugs": {
|
|
82
|
+
"url": "https://github.com/julian-pani/agent-conf/issues"
|
|
83
|
+
},
|
|
84
|
+
"license": "MIT",
|
|
85
|
+
"publishConfig": {
|
|
86
|
+
"access": "public",
|
|
87
|
+
"registry": "https://registry.npmjs.org/"
|
|
88
|
+
},
|
|
89
|
+
"lint-staged": {
|
|
90
|
+
"*.{ts,tsx,js,jsx}": [
|
|
91
|
+
"biome check --no-errors-on-unmatched"
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
}
|