docs: AG Native bundle reverse engineering analysis — plannerResponse/Whi renderer structure, V8 cache fix, known-issues update

This commit is contained in:
Variet Worker
2026-04-12 07:05:57 +09:00
parent eef59e6bb2
commit 353265bed8
25 changed files with 1236 additions and 33 deletions

26
scratch_reload_ag.js Normal file
View File

@@ -0,0 +1,26 @@
const http = require('http');
// Try to reload AG window via test-rpc
const payload = JSON.stringify({
method: "antigravity.reloadWindow",
args: {}
});
const req = http.request({
hostname: '127.0.0.1',
port: 34332,
path: '/test-rpc',
method: 'POST',
headers: { 'Content-Type': 'application/json' }
}, (res) => {
let data = '';
res.on('data', c => data += c);
res.on('end', () => {
console.log('Status:', res.statusCode);
console.log('Response:', data);
});
});
req.on('error', e => console.log('Error:', e.message));
req.write(payload);
req.end();