agent-scope 0.2.0 → 0.2.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/README.md +56 -163
- package/dist/cli.js +1 -1
- package/dist/public/404/index.html +1 -1
- package/dist/public/404.html +1 -1
- package/dist/public/index.html +1 -1
- package/dist/public/index.txt +1 -1
- package/package.json +1 -1
- /package/dist/public/_next/static/{EjG9asgaOWf0-7fNJq_Sd → A6N9GtF30z_GVyVzO-PGY}/_buildManifest.js +0 -0
- /package/dist/public/_next/static/{EjG9asgaOWf0-7fNJq_Sd → A6N9GtF30z_GVyVzO-PGY}/_ssgManifest.js +0 -0
package/README.md
CHANGED
|
@@ -1,92 +1,73 @@
|
|
|
1
1
|
# agent-scope
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
See what your AI agent is actually doing.
|
|
4
4
|
|
|
5
|
-
[](https://opensource.org/licenses/MIT)
|
|
6
|
-
[](https://www.typescriptlang.org/)
|
|
7
5
|
[](https://www.npmjs.com/package/agent-scope)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
8
7
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
## Features
|
|
12
|
-
|
|
13
|
-
- **Live Mode** - Zero-config observation of Claude Code's TodoWrite tasks in real-time
|
|
14
|
-
- **Plan Mode** - Structured task planning with markdown DSL, dependencies, and acceptance criteria
|
|
15
|
-
- **Kanban Dashboard** - Visual board with Pending / In Progress / Completed columns
|
|
16
|
-
- **Real-time Updates** - SSE-powered file watching, no manual refresh needed
|
|
17
|
-
- **Deterministic** - Pure function state computation from files
|
|
18
|
-
- **Local-first** - All data stays on your machine
|
|
19
|
-
- **Type-safe** - Built with TypeScript in strict mode
|
|
20
|
-
|
|
21
|
-
## How It Works
|
|
22
|
-
|
|
23
|
-
agent-scope supports two complementary modes:
|
|
24
|
-
|
|
25
|
-
| Mode | Data Source | Setup | Use Case |
|
|
26
|
-
|------|-----------|-------|----------|
|
|
27
|
-
| **Live** | `~/.claude/tasks/` (TodoWrite) | Zero config | Watch Claude Code work in real-time |
|
|
28
|
-
| **Plan** | `.agent-scope/queue.md` + `execution.log` | `agent-scope init` | Structured project planning with dependencies |
|
|
8
|
+
---
|
|
29
9
|
|
|
30
|
-
##
|
|
10
|
+
## The problem
|
|
31
11
|
|
|
32
|
-
|
|
12
|
+
You tell Claude Code to refactor your auth system. It says "on it." You wait. Terminal scrolls. Minutes pass. You have no idea if it's on task 2 of 12 or stuck in a loop. You're flying blind.
|
|
33
13
|
|
|
34
|
-
|
|
14
|
+
agent-scope fixes that. One command, zero config. It reads Claude Code's own task files and gives you a live Kanban board.
|
|
35
15
|
|
|
36
16
|
```bash
|
|
37
17
|
npx agent-scope start
|
|
38
18
|
```
|
|
39
19
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
### Plan Mode
|
|
20
|
+
That's it. Open `localhost:4317`. Watch your agent work.
|
|
43
21
|
|
|
44
|
-
|
|
22
|
+

|
|
45
23
|
|
|
46
|
-
|
|
47
|
-
# 1. Initialize
|
|
48
|
-
npx agent-scope init
|
|
24
|
+
## How it works
|
|
49
25
|
|
|
50
|
-
|
|
26
|
+
Claude Code already writes task state to `~/.claude/tasks/` via TodoWrite. agent-scope reads those files, watches for changes, and streams updates to your browser via SSE. No database. No auth. No cloud. Just files.
|
|
51
27
|
|
|
52
|
-
|
|
53
|
-
npx agent-scope start
|
|
54
|
-
```
|
|
28
|
+
## Two modes
|
|
55
29
|
|
|
56
|
-
|
|
30
|
+
| | Live | Plan |
|
|
31
|
+
|---|---|---|
|
|
32
|
+
| **What** | Watch Claude Code work | Structured project planning |
|
|
33
|
+
| **Source** | `~/.claude/tasks/` | `.agent-scope/queue.md` |
|
|
34
|
+
| **Setup** | None | `npx agent-scope init` |
|
|
35
|
+
| **Use when** | You want visibility | You want control |
|
|
57
36
|
|
|
58
|
-
|
|
59
|
-
- **Session sidebar** with progress bars and active session indicators
|
|
60
|
-
- **Kanban board** with three columns: Pending, In Progress, Completed
|
|
61
|
-
- **Task detail panel** with description, dependencies (blockedBy/blocks)
|
|
62
|
-
- **Real-time updates** via Server-Sent Events (no polling)
|
|
37
|
+
Live mode is the default. Plan mode adds dependencies, acceptance criteria, and execution tracking on top.
|
|
63
38
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
-
|
|
67
|
-
- **Status overview** with summary cards, slice progress bars
|
|
68
|
-
- **Agent activity** tracking with execution traces
|
|
69
|
-
- **BLOCKED status** support (both computed from dependencies and explicit agent declarations)
|
|
39
|
+
| Live mode | Plan mode |
|
|
40
|
+
|---|---|
|
|
41
|
+
|  |  |
|
|
70
42
|
|
|
71
|
-
##
|
|
43
|
+
## Install
|
|
72
44
|
|
|
73
45
|
```bash
|
|
74
|
-
#
|
|
46
|
+
# Run directly
|
|
75
47
|
npx agent-scope start
|
|
76
48
|
|
|
77
|
-
#
|
|
78
|
-
|
|
49
|
+
# Or install globally
|
|
50
|
+
npm i -g agent-scope
|
|
51
|
+
```
|
|
79
52
|
|
|
80
|
-
|
|
81
|
-
npx agent-scope start -p 3000
|
|
53
|
+
### Plan mode setup
|
|
82
54
|
|
|
83
|
-
|
|
84
|
-
|
|
55
|
+
```bash
|
|
56
|
+
agent-scope init # Creates .agent-scope/ with queue.md template
|
|
57
|
+
# Edit .agent-scope/queue.md with your tasks
|
|
58
|
+
agent-scope start
|
|
85
59
|
```
|
|
86
60
|
|
|
87
|
-
##
|
|
61
|
+
## CLI
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
agent-scope start # Auto-detect modes, open dashboard
|
|
65
|
+
agent-scope start --claude-dir /path # Custom Claude directory
|
|
66
|
+
agent-scope start -p 3000 # Custom port
|
|
67
|
+
agent-scope init # Init plan mode in current dir
|
|
68
|
+
```
|
|
88
69
|
|
|
89
|
-
|
|
70
|
+
## Queue format (Plan mode)
|
|
90
71
|
|
|
91
72
|
```markdown
|
|
92
73
|
# Slice S1
|
|
@@ -104,30 +85,11 @@ Description: Implement user authentication
|
|
|
104
85
|
AC: Login and registration endpoints working
|
|
105
86
|
```
|
|
106
87
|
|
|
107
|
-
|
|
88
|
+
Validates: required fields, duplicate IDs, unknown deps, circular deps.
|
|
108
89
|
|
|
109
|
-
|
|
90
|
+
## Execution log (Plan mode)
|
|
110
91
|
|
|
111
|
-
|
|
112
|
-
{
|
|
113
|
-
"taskModel": {
|
|
114
|
-
"id": "{slice}-T{n}",
|
|
115
|
-
"headings": {
|
|
116
|
-
"slice": "# Slice {name}",
|
|
117
|
-
"task": "## {id}"
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
```
|
|
122
|
-
|
|
123
|
-
### Validation
|
|
124
|
-
|
|
125
|
-
- All required fields present (Area, Depends, Description, AC)
|
|
126
|
-
- No duplicate task IDs
|
|
127
|
-
- No unknown dependencies
|
|
128
|
-
- No circular dependencies (DFS detection)
|
|
129
|
-
|
|
130
|
-
## Execution Log Format (Plan Mode)
|
|
92
|
+
Append-only JSONL:
|
|
131
93
|
|
|
132
94
|
```json
|
|
133
95
|
{"task_id":"S1-T1","status":"DONE","timestamp":"2026-02-16T14:31:22Z","agent":"claude"}
|
|
@@ -135,101 +97,32 @@ Configure heading patterns in `.agent-scope/config.json`:
|
|
|
135
97
|
{"task_id":"S1-T3","status":"BLOCKED","reason":"API key missing","timestamp":"2026-02-16T14:35:00Z","agent":"claude"}
|
|
136
98
|
```
|
|
137
99
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
## Architecture
|
|
100
|
+
## API
|
|
141
101
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
else if lastEvent.status === BLOCKED → BLOCKED (with reason)
|
|
150
|
-
else if lastEvent.status === DONE → DONE
|
|
151
|
-
else if any dependency.status !== DONE → BLOCKED (computed)
|
|
152
|
-
else → READY
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
### Tech Stack
|
|
156
|
-
|
|
157
|
-
- **Language**: TypeScript (strict mode)
|
|
158
|
-
- **CLI**: Commander
|
|
159
|
-
- **Server**: Fastify + chokidar (file watching)
|
|
160
|
-
- **Real-time**: Server-Sent Events (SSE)
|
|
161
|
-
- **UI**: Next.js + Tailwind CSS
|
|
162
|
-
- **Testing**: Vitest (85 tests)
|
|
163
|
-
|
|
164
|
-
## API Reference
|
|
165
|
-
|
|
166
|
-
### `GET /health`
|
|
167
|
-
|
|
168
|
-
```json
|
|
169
|
-
{"status": "ok", "modes": {"live": true, "plan": true}}
|
|
170
|
-
```
|
|
171
|
-
|
|
172
|
-
### `GET /sessions`
|
|
173
|
-
|
|
174
|
-
Lists all Claude Code sessions with their tasks.
|
|
175
|
-
|
|
176
|
-
### `GET /sessions/:id`
|
|
177
|
-
|
|
178
|
-
Get tasks for a specific session.
|
|
179
|
-
|
|
180
|
-
### `GET /events`
|
|
181
|
-
|
|
182
|
-
SSE stream for real-time file change notifications.
|
|
183
|
-
|
|
184
|
-
### `GET /snapshot`
|
|
185
|
-
|
|
186
|
-
Returns Plan mode state (queue.md + execution.log).
|
|
102
|
+
| Endpoint | Description |
|
|
103
|
+
|---|---|
|
|
104
|
+
| `GET /health` | Status + available modes |
|
|
105
|
+
| `GET /sessions` | All Claude Code sessions |
|
|
106
|
+
| `GET /sessions/:id` | Tasks for a session |
|
|
107
|
+
| `GET /events` | SSE stream |
|
|
108
|
+
| `GET /snapshot` | Plan mode state |
|
|
187
109
|
|
|
188
110
|
## Development
|
|
189
111
|
|
|
190
112
|
```bash
|
|
191
113
|
git clone https://github.com/yunusemrgrl/agent-scope.git
|
|
192
|
-
cd agent-scope
|
|
193
|
-
npm install
|
|
114
|
+
cd agent-scope && npm install
|
|
194
115
|
cd dashboard && npm install && cd ..
|
|
195
116
|
|
|
196
117
|
npm run build # Build core + dashboard
|
|
197
|
-
npm test #
|
|
118
|
+
npm test # 97 tests
|
|
198
119
|
npm run dev # Dev server with watch
|
|
199
120
|
```
|
|
200
121
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
```
|
|
204
|
-
agent-scope/
|
|
205
|
-
├─ src/
|
|
206
|
-
│ ├─ core/
|
|
207
|
-
│ │ ├─ types.ts # Domain model (Plan + Live types)
|
|
208
|
-
│ │ ├─ queueParser.ts # Markdown parser with template support
|
|
209
|
-
│ │ ├─ logParser.ts # JSONL parser with BLOCKED validation
|
|
210
|
-
│ │ ├─ stateEngine.ts # Snapshot computation
|
|
211
|
-
│ │ └─ todoReader.ts # Claude Code TodoWrite reader
|
|
212
|
-
│ ├─ server/
|
|
213
|
-
│ │ ├─ server.ts # Fastify API + SSE
|
|
214
|
-
│ │ └─ watcher.ts # chokidar file watching
|
|
215
|
-
│ └─ cli.ts # Commander CLI
|
|
216
|
-
├─ tests/core/ # Unit tests (85 tests)
|
|
217
|
-
├─ dashboard/ # Next.js UI
|
|
218
|
-
│ └─ src/app/page.tsx # Dual-mode dashboard (Live + Plan)
|
|
219
|
-
├─ dist/ # Build output
|
|
220
|
-
└─ .agent-scope/ # Created by init (gitignored)
|
|
221
|
-
```
|
|
222
|
-
|
|
223
|
-
## Contributing
|
|
224
|
-
|
|
225
|
-
Contributions welcome! Please:
|
|
122
|
+
## Stack
|
|
226
123
|
|
|
227
|
-
|
|
228
|
-
2. Create a feature branch
|
|
229
|
-
3. Write tests for new functionality
|
|
230
|
-
4. Ensure `npm test` passes
|
|
231
|
-
5. Submit a pull request
|
|
124
|
+
TypeScript, Fastify, chokidar, SSE, Next.js, Tailwind, Vitest.
|
|
232
125
|
|
|
233
126
|
## License
|
|
234
127
|
|
|
235
|
-
MIT
|
|
128
|
+
MIT
|
package/dist/cli.js
CHANGED
|
@@ -8,7 +8,7 @@ const program = new Command();
|
|
|
8
8
|
program
|
|
9
9
|
.name('agent-scope')
|
|
10
10
|
.description('Deterministic, local, passive execution observer for AI agent workflows')
|
|
11
|
-
.version('0.2.
|
|
11
|
+
.version('0.2.1');
|
|
12
12
|
program
|
|
13
13
|
.command('init')
|
|
14
14
|
.description('Initialize agent-scope in current directory')
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/9056dd3cc8c03e80.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-8658fdbc42bfbbae.js"/><script src="/_next/static/chunks/fd9d1056-9e191f0896c1d560.js" async=""></script><script src="/_next/static/chunks/117-c710cb30aa7ed4f8.js" async=""></script><script src="/_next/static/chunks/main-app-feb0e3b0cc6fb4c7.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>agent-scope</title><meta name="description" content="Execution observer for AI agent workflows"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><script src="/_next/static/chunks/webpack-8658fdbc42bfbbae.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/9056dd3cc8c03e80.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[4707,[],\"\"]\n5:I[6423,[],\"\"]\nb:I[1060,[],\"\"]\n6:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\n7:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\n8:{\"display\":\"inline-block\"}\n9:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\nc:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"
|
|
1
|
+
<!DOCTYPE html><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/9056dd3cc8c03e80.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-8658fdbc42bfbbae.js"/><script src="/_next/static/chunks/fd9d1056-9e191f0896c1d560.js" async=""></script><script src="/_next/static/chunks/117-c710cb30aa7ed4f8.js" async=""></script><script src="/_next/static/chunks/main-app-feb0e3b0cc6fb4c7.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>agent-scope</title><meta name="description" content="Execution observer for AI agent workflows"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><script src="/_next/static/chunks/webpack-8658fdbc42bfbbae.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/9056dd3cc8c03e80.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[4707,[],\"\"]\n5:I[6423,[],\"\"]\nb:I[1060,[],\"\"]\n6:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\n7:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\n8:{\"display\":\"inline-block\"}\n9:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\nc:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"A6N9GtF30z_GVyVzO-PGY\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"_not-found\",\"\"],\"initialTree\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null],null],null]},[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"/_not-found\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/9056dd3cc8c03e80.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$6\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$7\",\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":\"$8\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$9\",\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],\"$La\"],\"globalErrorComponent\":\"$b\",\"missingSlots\":\"$Wc\"}]\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"agent-scope\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Execution observer for AI agent workflows\"}]]\n3:null\n"])</script></body></html>
|
package/dist/public/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/9056dd3cc8c03e80.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-8658fdbc42bfbbae.js"/><script src="/_next/static/chunks/fd9d1056-9e191f0896c1d560.js" async=""></script><script src="/_next/static/chunks/117-c710cb30aa7ed4f8.js" async=""></script><script src="/_next/static/chunks/main-app-feb0e3b0cc6fb4c7.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>agent-scope</title><meta name="description" content="Execution observer for AI agent workflows"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><script src="/_next/static/chunks/webpack-8658fdbc42bfbbae.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/9056dd3cc8c03e80.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[4707,[],\"\"]\n5:I[6423,[],\"\"]\nb:I[1060,[],\"\"]\n6:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\n7:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\n8:{\"display\":\"inline-block\"}\n9:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\nc:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"
|
|
1
|
+
<!DOCTYPE html><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/9056dd3cc8c03e80.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-8658fdbc42bfbbae.js"/><script src="/_next/static/chunks/fd9d1056-9e191f0896c1d560.js" async=""></script><script src="/_next/static/chunks/117-c710cb30aa7ed4f8.js" async=""></script><script src="/_next/static/chunks/main-app-feb0e3b0cc6fb4c7.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>agent-scope</title><meta name="description" content="Execution observer for AI agent workflows"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><script src="/_next/static/chunks/webpack-8658fdbc42bfbbae.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/9056dd3cc8c03e80.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[4707,[],\"\"]\n5:I[6423,[],\"\"]\nb:I[1060,[],\"\"]\n6:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\n7:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\n8:{\"display\":\"inline-block\"}\n9:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\nc:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"A6N9GtF30z_GVyVzO-PGY\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"_not-found\",\"\"],\"initialTree\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null],null],null]},[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"/_not-found\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/9056dd3cc8c03e80.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$6\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$7\",\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":\"$8\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$9\",\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],\"$La\"],\"globalErrorComponent\":\"$b\",\"missingSlots\":\"$Wc\"}]\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"agent-scope\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Execution observer for AI agent workflows\"}]]\n3:null\n"])</script></body></html>
|
package/dist/public/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/9056dd3cc8c03e80.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-8658fdbc42bfbbae.js"/><script src="/_next/static/chunks/fd9d1056-9e191f0896c1d560.js" async=""></script><script src="/_next/static/chunks/117-c710cb30aa7ed4f8.js" async=""></script><script src="/_next/static/chunks/main-app-feb0e3b0cc6fb4c7.js" async=""></script><script src="/_next/static/chunks/46-3b308c2fb194eb7d.js" async=""></script><script src="/_next/static/chunks/app/page-525816f75fc4208f.js" async=""></script><title>agent-scope</title><meta name="description" content="Execution observer for AI agent workflows"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="h-screen bg-background flex items-center justify-center"><div class="text-muted-foreground">Loading...</div></div><script src="/_next/static/chunks/webpack-8658fdbc42bfbbae.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/9056dd3cc8c03e80.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[8205,[\"46\",\"static/chunks/46-3b308c2fb194eb7d.js\",\"931\",\"static/chunks/app/page-525816f75fc4208f.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n0:[\"$\",\"$L2\",null,{\"buildId\":\"
|
|
1
|
+
<!DOCTYPE html><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/9056dd3cc8c03e80.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-8658fdbc42bfbbae.js"/><script src="/_next/static/chunks/fd9d1056-9e191f0896c1d560.js" async=""></script><script src="/_next/static/chunks/117-c710cb30aa7ed4f8.js" async=""></script><script src="/_next/static/chunks/main-app-feb0e3b0cc6fb4c7.js" async=""></script><script src="/_next/static/chunks/46-3b308c2fb194eb7d.js" async=""></script><script src="/_next/static/chunks/app/page-525816f75fc4208f.js" async=""></script><title>agent-scope</title><meta name="description" content="Execution observer for AI agent workflows"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="h-screen bg-background flex items-center justify-center"><div class="text-muted-foreground">Loading...</div></div><script src="/_next/static/chunks/webpack-8658fdbc42bfbbae.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/9056dd3cc8c03e80.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[8205,[\"46\",\"static/chunks/46-3b308c2fb194eb7d.js\",\"931\",\"static/chunks/app/page-525816f75fc4208f.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n0:[\"$\",\"$L2\",null,{\"buildId\":\"A6N9GtF30z_GVyVzO-PGY\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"\"],\"initialTree\":[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/9056dd3cc8c03e80.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"ch"])</script><script>self.__next_f.push([1,"ildren\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"agent-scope\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Execution observer for AI agent workflows\"}]]\n3:null\n"])</script></body></html>
|
package/dist/public/index.txt
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
3:I[8205,["46","static/chunks/46-3b308c2fb194eb7d.js","931","static/chunks/app/page-525816f75fc4208f.js"],"default",1]
|
|
3
3
|
4:I[4707,[],""]
|
|
4
4
|
5:I[6423,[],""]
|
|
5
|
-
0:["
|
|
5
|
+
0:["A6N9GtF30z_GVyVzO-PGY",[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/9056dd3cc8c03e80.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
6
|
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"agent-scope"}],["$","meta","3",{"name":"description","content":"Execution observer for AI agent workflows"}]]
|
|
7
7
|
1:null
|
package/package.json
CHANGED
/package/dist/public/_next/static/{EjG9asgaOWf0-7fNJq_Sd → A6N9GtF30z_GVyVzO-PGY}/_buildManifest.js
RENAMED
|
File without changes
|
/package/dist/public/_next/static/{EjG9asgaOWf0-7fNJq_Sd → A6N9GtF30z_GVyVzO-PGY}/_ssgManifest.js
RENAMED
|
File without changes
|