Transferred ShieldAI-related files mistakenly placed in ~/code/FrenoCorp:
- Services: spamshield (feature-flags, audit-logger, error-handler), voiceprint (config, service, feature-flags), darkwatch (pipeline, scan, scheduler, watchlist, webhook)
- Packages: shared-analytics, shared-auth, shared-ui, shared-utils (new); shared-billing, jobs supplemented with unique FC files
- Server: alerts (FC version newer), routes (spamshield, darkwatch, voiceprint)
- Config: turbo.json, tsconfig.base.json, vite/vitest configs, drizzle, Dockerfile
- VoicePrint ML service
- Examples
Pending: apps/{api,web,mobile}/ structured merge, shared-db/db mapping
Co-Authored-By: Paperclip <noreply@paperclip.ing>
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
const http = require('http');
|
|
|
|
const agentId = process.env.PAPERCLIP_AGENT_ID;
|
|
const apiKey = process.env.PAPERCLIP_API_KEY;
|
|
const apiUrl = process.env.PAPERCLIP_API_URL;
|
|
const runId = process.env.PAPERCLIP_RUN_ID;
|
|
|
|
console.log('Agent ID:', agentId);
|
|
console.log('API URL:', apiUrl);
|
|
console.log('Run ID:', runId);
|
|
|
|
if (!apiKey || !apiUrl) {
|
|
console.error('Missing environment variables');
|
|
process.exit(1);
|
|
}
|
|
|
|
async function fetchJson(url, options = {}) {
|
|
const request = http.request({
|
|
hostname: new URL(url).hostname,
|
|
port: new URL(url).port,
|
|
path: new URL(url).pathname,
|
|
method: options.method || 'GET',
|
|
headers: {
|
|
'Authorization': `Bearer ${apiKey}`,
|
|
'X-Paperclip-Run-Id': runId,
|
|
...options.headers
|
|
}
|
|
}, (response) => {
|
|
let data = '';
|
|
response.on('data', chunk => data += chunk);
|
|
response.on('end', () => {
|
|
try {
|
|
console.log(JSON.stringify(JSON.parse(data), null, 2));
|
|
} catch (e) {
|
|
console.log(data);
|
|
}
|
|
});
|
|
});
|
|
request.on('error', console.error);
|
|
request.end();
|
|
}
|
|
|
|
console.log('\n=== FETCHING AGENT IDENTITY ===\n');
|
|
fetchJson(`${apiUrl}/api/agents/me`).catch(console.error);
|
|
|
|
console.log('\n=== FETCHING INBOX-LITE ===\n');
|
|
fetchJson(`${apiUrl}/api/agents/me/inbox-lite`).catch(console.error);
|
|
|
|
console.log('\n=== FETCHING ALL ASSIGNED ISSUES ===\n');
|
|
fetchJson(`${apiUrl}/api/companies/${apiKey.split('-')[0] || 'unknown'}/issues?assigneeAgentId=${agentId}&status=todo,in_progress,blocked`).catch(console.error);
|