-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "agent-rollback",
"version": "1.1.1",
"description": "Git-like undo, revert, and rollback checkpoints for OpenAI Codex CLI. MCP server + hooks snapshot every edit. Restore in one cmd. Free, MIT licensed.",
"type": "module",
"bin": {
"agent-rollback": "./bin/agent-rollback.js",
"arb": "./bin/arb.js"
},
"homepage": "https://github.com/Nainish-Rai/agent-rollback#readme",
"bugs": "https://github.com/Nainish-Rai/agent-rollback/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/Nainish-Rai/agent-rollback.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Nainish-Rai"
},
"files": [
"AGENTS.md",
"bin",
"roadmap.md",
"schema.json",
"scripts",
"skills",
"src",
"README.md",
"agent-rollback-prd.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CITATION.cff"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test",
"check": "find bin src test -name '*.js' -print0 | xargs -0 -n1 node --check",
"prepublishOnly": "npm run check && npm test"
},
"keywords": [
"agent-rollback",
"codex-undo",
"codex-revert",
"codex-checkpoint",
"codex-rollback",
"codex-snapshot",
"codex-backup",
"codex-safety-net",
"codex-mcp",
"codex-restore",
"codex-diff",
"codex-file-history",
"openai-codex",
"codex-cli",
"ai-rollback",
"agent-snapshot",
"ai-undo",
"ai-revert",
"ai-checkpoint",
"ai-safety-net",
"mcp-server",
"codex",
"rollback",
"checkpoint",
"undo",
"revert",
"restore",
"snapshot",
"diff",
"workspace-snapshot",
"file-history",
"point-in-time-recovery",
"safety-net",
"ai-agent",
"agent",
"cli",
"mcp",
"model-context-protocol",
"claude-code",
"cursor",
"windsurf",
"copilot",
"cline",
"gemini-cli",
"dev-tools",
"developer-tools"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
}
}