agents-gitflow-guard 0.0.1

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/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "agents-gitflow-guard",
3
+ "version": "0.0.1",
4
+ "description": "DSH plugin: enforce the feature → preview → baseline merge order from local git facts; the user holds the only exception right",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "lib/index.mjs",
8
+ "types": "lib/index.d.mts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./lib/index.d.mts",
12
+ "default": "./lib/index.mjs"
13
+ },
14
+ "./package.json": "./package.json"
15
+ },
16
+ "files": [
17
+ "lib",
18
+ "bin",
19
+ "patch.yml",
20
+ "README.md",
21
+ "README.zh.md"
22
+ ],
23
+ "bin": {
24
+ "gitflow-guard": "bin/gitflow-guard.mjs"
25
+ },
26
+ "keywords": [
27
+ "dsh",
28
+ "deepseek-harness",
29
+ "plugin",
30
+ "gitflow",
31
+ "git",
32
+ "workflow",
33
+ "guard",
34
+ "agent"
35
+ ],
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://github.com/FeatureAgents/AgentsGitFlowController.git"
39
+ },
40
+ "dsh": {
41
+ "bundle": {
42
+ "patch": "./patch.yml"
43
+ }
44
+ },
45
+ "scripts": {
46
+ "build": "tsdown",
47
+ "prepack": "pnpm build",
48
+ "test": "vitest run",
49
+ "typecheck": "tsc --noEmit"
50
+ },
51
+ "peerDependencies": {
52
+ "@deepseek-ai/cordis": "^4.0.1",
53
+ "@deepseek-ai/dsh-tools": "^0.1.0-rc.5"
54
+ },
55
+ "devDependencies": {
56
+ "@deepseek-ai/cordis": "^4.0.1",
57
+ "@deepseek-ai/dsh-agent": "0.1.0-rc.6",
58
+ "@deepseek-ai/dsh-llm": "0.1.0-rc.6",
59
+ "@deepseek-ai/dsh-scope": "0.1.0-rc.6",
60
+ "@deepseek-ai/dsh-session": "0.1.0-rc.6",
61
+ "@deepseek-ai/dsh-tools": "^0.1.0-rc.5",
62
+ "@types/node": "^22",
63
+ "tsdown": "^0.22.2",
64
+ "typescript": "^6.0.3",
65
+ "vitest": "^4.1.8"
66
+ }
67
+ }
package/patch.yml ADDED
@@ -0,0 +1,8 @@
1
+ # agents-gitflow-guard 插件挂载层(dsh plugin add 后自动成为 profile 层)
2
+ # 行配置可在 profile 的 cordis.patch.yml 中按 id 覆盖
3
+
4
+ - insert:
5
+ - id: gitflow-guard
6
+ name: agents-gitflow-guard
7
+ config:
8
+ toolNames: ['pwsh', 'bash']