@agenticmail/enterprise 0.5.532 → 0.5.534
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/dist/agent-tools-DPFLLLPX.js +14677 -0
- package/dist/agent-tools-LGYJAAQC.js +14677 -0
- package/dist/chunk-444JTF2W.js +2309 -0
- package/dist/chunk-7QK66JEZ.js +5703 -0
- package/dist/chunk-AQC7U6S5.js +1728 -0
- package/dist/chunk-BEGUEOCV.js +6049 -0
- package/dist/chunk-COW5UCDA.js +2309 -0
- package/dist/chunk-ELB4CQC7.js +1687 -0
- package/dist/chunk-KGQJAVN7.js +1728 -0
- package/dist/chunk-MKEIIEBO.js +1728 -0
- package/dist/chunk-QZZZYL2Q.js +5703 -0
- package/dist/chunk-R47IXZFZ.js +7951 -0
- package/dist/chunk-R5VQMEP6.js +6057 -0
- package/dist/chunk-WIGW5DJ5.js +7951 -0
- package/dist/chunk-XDUUWZOB.js +1687 -0
- package/dist/chunk-YDUBYJQR.js +7951 -0
- package/dist/cli-agent-BEEZSY3N.js +2882 -0
- package/dist/cli-agent-RQHYDDF5.js +2882 -0
- package/dist/cli-serve-AOTSNL3X.js +322 -0
- package/dist/cli-serve-GKF73PPW.js +322 -0
- package/dist/cli-serve-W74VFK3H.js +322 -0
- package/dist/cli.js +3 -3
- package/dist/dashboard/pages/polymarket.js +24 -16
- package/dist/index.js +6 -6
- package/dist/polymarket-3CPMIB2W.js +17 -0
- package/dist/polymarket-NISQEHN6.js +17 -0
- package/dist/polymarket-runtime-QEVWVBSL.js +108 -0
- package/dist/polymarket-runtime-QN5ICQNC.js +108 -0
- package/dist/polymarket-watcher-FZNJC5GF.js +23 -0
- package/dist/polymarket-watcher-I46HUKZ4.js +23 -0
- package/dist/runtime-D242TS34.js +50 -0
- package/dist/runtime-IKTJLO7L.js +50 -0
- package/dist/server-OHV5ONUB.js +36 -0
- package/dist/server-RXMHX4JW.js +36 -0
- package/dist/server-UYEMOR7X.js +36 -0
- package/dist/setup-6QBAONHF.js +20 -0
- package/dist/setup-HZKTR3X3.js +20 -0
- package/dist/setup-PDTOPLVS.js +20 -0
- package/logs/cloudflared-error.log +40 -0
- package/package.json +1 -1
- package/indeed-apply.cjs +0 -82
- package/indeed-bot.cjs +0 -296
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import {
|
|
2
|
+
analyzeWithAI,
|
|
3
|
+
controlWatcherEngine,
|
|
4
|
+
createWatcherTools,
|
|
5
|
+
getAIConfig,
|
|
6
|
+
getWatcherEngineStatus,
|
|
7
|
+
initWatcherTables,
|
|
8
|
+
setWatcherRuntime,
|
|
9
|
+
startWatcherEngine,
|
|
10
|
+
stopWatcherEngine
|
|
11
|
+
} from "./chunk-444JTF2W.js";
|
|
12
|
+
import "./chunk-KFQGP6VL.js";
|
|
13
|
+
export {
|
|
14
|
+
analyzeWithAI,
|
|
15
|
+
controlWatcherEngine,
|
|
16
|
+
createWatcherTools,
|
|
17
|
+
getAIConfig,
|
|
18
|
+
getWatcherEngineStatus,
|
|
19
|
+
initWatcherTables,
|
|
20
|
+
setWatcherRuntime,
|
|
21
|
+
startWatcherEngine,
|
|
22
|
+
stopWatcherEngine
|
|
23
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import {
|
|
2
|
+
analyzeWithAI,
|
|
3
|
+
controlWatcherEngine,
|
|
4
|
+
createWatcherTools,
|
|
5
|
+
getAIConfig,
|
|
6
|
+
getWatcherEngineStatus,
|
|
7
|
+
initWatcherTables,
|
|
8
|
+
setWatcherRuntime,
|
|
9
|
+
startWatcherEngine,
|
|
10
|
+
stopWatcherEngine
|
|
11
|
+
} from "./chunk-COW5UCDA.js";
|
|
12
|
+
import "./chunk-KFQGP6VL.js";
|
|
13
|
+
export {
|
|
14
|
+
analyzeWithAI,
|
|
15
|
+
controlWatcherEngine,
|
|
16
|
+
createWatcherTools,
|
|
17
|
+
getAIConfig,
|
|
18
|
+
getWatcherEngineStatus,
|
|
19
|
+
initWatcherTables,
|
|
20
|
+
setWatcherRuntime,
|
|
21
|
+
startWatcherEngine,
|
|
22
|
+
stopWatcherEngine
|
|
23
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AgentRuntime,
|
|
3
|
+
EmailChannel,
|
|
4
|
+
FollowUpScheduler,
|
|
5
|
+
SessionManager,
|
|
6
|
+
SubAgentManager,
|
|
7
|
+
ToolRegistry,
|
|
8
|
+
ageStaleMessages,
|
|
9
|
+
callLLM,
|
|
10
|
+
createAgentRuntime,
|
|
11
|
+
createNoopHooks,
|
|
12
|
+
createRuntimeHooks,
|
|
13
|
+
estimateMessageTokens,
|
|
14
|
+
estimateTokens,
|
|
15
|
+
executeTool,
|
|
16
|
+
runAgentLoop,
|
|
17
|
+
toolsToDefinitions,
|
|
18
|
+
truncateToolResults
|
|
19
|
+
} from "./chunk-7QK66JEZ.js";
|
|
20
|
+
import "./chunk-HP63Q326.js";
|
|
21
|
+
import {
|
|
22
|
+
PROVIDER_REGISTRY,
|
|
23
|
+
listAllProviders,
|
|
24
|
+
resolveApiKeyForProvider,
|
|
25
|
+
resolveProvider
|
|
26
|
+
} from "./chunk-UF3ZJMJO.js";
|
|
27
|
+
import "./chunk-KFQGP6VL.js";
|
|
28
|
+
export {
|
|
29
|
+
AgentRuntime,
|
|
30
|
+
EmailChannel,
|
|
31
|
+
FollowUpScheduler,
|
|
32
|
+
PROVIDER_REGISTRY,
|
|
33
|
+
SessionManager,
|
|
34
|
+
SubAgentManager,
|
|
35
|
+
ToolRegistry,
|
|
36
|
+
ageStaleMessages,
|
|
37
|
+
callLLM,
|
|
38
|
+
createAgentRuntime,
|
|
39
|
+
createNoopHooks,
|
|
40
|
+
createRuntimeHooks,
|
|
41
|
+
estimateMessageTokens,
|
|
42
|
+
estimateTokens,
|
|
43
|
+
executeTool,
|
|
44
|
+
listAllProviders,
|
|
45
|
+
resolveApiKeyForProvider,
|
|
46
|
+
resolveProvider,
|
|
47
|
+
runAgentLoop,
|
|
48
|
+
toolsToDefinitions,
|
|
49
|
+
truncateToolResults
|
|
50
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AgentRuntime,
|
|
3
|
+
EmailChannel,
|
|
4
|
+
FollowUpScheduler,
|
|
5
|
+
SessionManager,
|
|
6
|
+
SubAgentManager,
|
|
7
|
+
ToolRegistry,
|
|
8
|
+
ageStaleMessages,
|
|
9
|
+
callLLM,
|
|
10
|
+
createAgentRuntime,
|
|
11
|
+
createNoopHooks,
|
|
12
|
+
createRuntimeHooks,
|
|
13
|
+
estimateMessageTokens,
|
|
14
|
+
estimateTokens,
|
|
15
|
+
executeTool,
|
|
16
|
+
runAgentLoop,
|
|
17
|
+
toolsToDefinitions,
|
|
18
|
+
truncateToolResults
|
|
19
|
+
} from "./chunk-QZZZYL2Q.js";
|
|
20
|
+
import "./chunk-HP63Q326.js";
|
|
21
|
+
import {
|
|
22
|
+
PROVIDER_REGISTRY,
|
|
23
|
+
listAllProviders,
|
|
24
|
+
resolveApiKeyForProvider,
|
|
25
|
+
resolveProvider
|
|
26
|
+
} from "./chunk-UF3ZJMJO.js";
|
|
27
|
+
import "./chunk-KFQGP6VL.js";
|
|
28
|
+
export {
|
|
29
|
+
AgentRuntime,
|
|
30
|
+
EmailChannel,
|
|
31
|
+
FollowUpScheduler,
|
|
32
|
+
PROVIDER_REGISTRY,
|
|
33
|
+
SessionManager,
|
|
34
|
+
SubAgentManager,
|
|
35
|
+
ToolRegistry,
|
|
36
|
+
ageStaleMessages,
|
|
37
|
+
callLLM,
|
|
38
|
+
createAgentRuntime,
|
|
39
|
+
createNoopHooks,
|
|
40
|
+
createRuntimeHooks,
|
|
41
|
+
estimateMessageTokens,
|
|
42
|
+
estimateTokens,
|
|
43
|
+
executeTool,
|
|
44
|
+
listAllProviders,
|
|
45
|
+
resolveApiKeyForProvider,
|
|
46
|
+
resolveProvider,
|
|
47
|
+
runAgentLoop,
|
|
48
|
+
toolsToDefinitions,
|
|
49
|
+
truncateToolResults
|
|
50
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createServer
|
|
3
|
+
} from "./chunk-R47IXZFZ.js";
|
|
4
|
+
import "./chunk-DJBCRQTD.js";
|
|
5
|
+
import "./chunk-UF3ZJMJO.js";
|
|
6
|
+
import "./chunk-TPL2J2U2.js";
|
|
7
|
+
import "./chunk-TK55CSBH.js";
|
|
8
|
+
import "./chunk-Z7NVD3OQ.js";
|
|
9
|
+
import "./chunk-VSBC4SWO.js";
|
|
10
|
+
import "./chunk-AF3WSNVX.js";
|
|
11
|
+
import "./chunk-74ZCQKYU.js";
|
|
12
|
+
import "./chunk-ET6WZFPS.js";
|
|
13
|
+
import "./chunk-FQWJMPKW.js";
|
|
14
|
+
import "./chunk-K2GKUQSB.js";
|
|
15
|
+
import "./chunk-NCODRQSS.js";
|
|
16
|
+
import "./chunk-PSZU6FMQ.js";
|
|
17
|
+
import "./chunk-NQADUYFR.js";
|
|
18
|
+
import "./chunk-X5IZUXDC.js";
|
|
19
|
+
import "./chunk-I5IGHBXW.js";
|
|
20
|
+
import "./chunk-QY4FR2FK.js";
|
|
21
|
+
import "./chunk-WUAWWKTN.js";
|
|
22
|
+
import "./chunk-2CDGYMJK.js";
|
|
23
|
+
import "./chunk-V3LPIDTL.js";
|
|
24
|
+
import "./chunk-A4CX3XQS.js";
|
|
25
|
+
import "./chunk-2VHXTMIZ.js";
|
|
26
|
+
import "./chunk-YDD5TC5Q.js";
|
|
27
|
+
import "./chunk-37ABTUFU.js";
|
|
28
|
+
import "./chunk-NU657BBQ.js";
|
|
29
|
+
import "./chunk-PGAU3W3M.js";
|
|
30
|
+
import "./chunk-FLQ5FLHW.js";
|
|
31
|
+
import "./chunk-TOGMCQSJ.js";
|
|
32
|
+
import "./chunk-22U7TZPN.js";
|
|
33
|
+
import "./chunk-KFQGP6VL.js";
|
|
34
|
+
export {
|
|
35
|
+
createServer
|
|
36
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createServer
|
|
3
|
+
} from "./chunk-WIGW5DJ5.js";
|
|
4
|
+
import "./chunk-DJBCRQTD.js";
|
|
5
|
+
import "./chunk-UF3ZJMJO.js";
|
|
6
|
+
import "./chunk-TPL2J2U2.js";
|
|
7
|
+
import "./chunk-TK55CSBH.js";
|
|
8
|
+
import "./chunk-Z7NVD3OQ.js";
|
|
9
|
+
import "./chunk-VSBC4SWO.js";
|
|
10
|
+
import "./chunk-AF3WSNVX.js";
|
|
11
|
+
import "./chunk-74ZCQKYU.js";
|
|
12
|
+
import "./chunk-ET6WZFPS.js";
|
|
13
|
+
import "./chunk-FQWJMPKW.js";
|
|
14
|
+
import "./chunk-K2GKUQSB.js";
|
|
15
|
+
import "./chunk-NCODRQSS.js";
|
|
16
|
+
import "./chunk-PSZU6FMQ.js";
|
|
17
|
+
import "./chunk-BEGUEOCV.js";
|
|
18
|
+
import "./chunk-X5IZUXDC.js";
|
|
19
|
+
import "./chunk-I5IGHBXW.js";
|
|
20
|
+
import "./chunk-ELB4CQC7.js";
|
|
21
|
+
import "./chunk-WUAWWKTN.js";
|
|
22
|
+
import "./chunk-2CDGYMJK.js";
|
|
23
|
+
import "./chunk-V3LPIDTL.js";
|
|
24
|
+
import "./chunk-A4CX3XQS.js";
|
|
25
|
+
import "./chunk-444JTF2W.js";
|
|
26
|
+
import "./chunk-YDD5TC5Q.js";
|
|
27
|
+
import "./chunk-37ABTUFU.js";
|
|
28
|
+
import "./chunk-NU657BBQ.js";
|
|
29
|
+
import "./chunk-PGAU3W3M.js";
|
|
30
|
+
import "./chunk-FLQ5FLHW.js";
|
|
31
|
+
import "./chunk-TOGMCQSJ.js";
|
|
32
|
+
import "./chunk-22U7TZPN.js";
|
|
33
|
+
import "./chunk-KFQGP6VL.js";
|
|
34
|
+
export {
|
|
35
|
+
createServer
|
|
36
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createServer
|
|
3
|
+
} from "./chunk-YDUBYJQR.js";
|
|
4
|
+
import "./chunk-DJBCRQTD.js";
|
|
5
|
+
import "./chunk-UF3ZJMJO.js";
|
|
6
|
+
import "./chunk-TPL2J2U2.js";
|
|
7
|
+
import "./chunk-TK55CSBH.js";
|
|
8
|
+
import "./chunk-Z7NVD3OQ.js";
|
|
9
|
+
import "./chunk-VSBC4SWO.js";
|
|
10
|
+
import "./chunk-AF3WSNVX.js";
|
|
11
|
+
import "./chunk-74ZCQKYU.js";
|
|
12
|
+
import "./chunk-ET6WZFPS.js";
|
|
13
|
+
import "./chunk-FQWJMPKW.js";
|
|
14
|
+
import "./chunk-K2GKUQSB.js";
|
|
15
|
+
import "./chunk-NCODRQSS.js";
|
|
16
|
+
import "./chunk-PSZU6FMQ.js";
|
|
17
|
+
import "./chunk-R5VQMEP6.js";
|
|
18
|
+
import "./chunk-X5IZUXDC.js";
|
|
19
|
+
import "./chunk-I5IGHBXW.js";
|
|
20
|
+
import "./chunk-XDUUWZOB.js";
|
|
21
|
+
import "./chunk-WUAWWKTN.js";
|
|
22
|
+
import "./chunk-2CDGYMJK.js";
|
|
23
|
+
import "./chunk-V3LPIDTL.js";
|
|
24
|
+
import "./chunk-A4CX3XQS.js";
|
|
25
|
+
import "./chunk-COW5UCDA.js";
|
|
26
|
+
import "./chunk-YDD5TC5Q.js";
|
|
27
|
+
import "./chunk-37ABTUFU.js";
|
|
28
|
+
import "./chunk-NU657BBQ.js";
|
|
29
|
+
import "./chunk-PGAU3W3M.js";
|
|
30
|
+
import "./chunk-FLQ5FLHW.js";
|
|
31
|
+
import "./chunk-TOGMCQSJ.js";
|
|
32
|
+
import "./chunk-22U7TZPN.js";
|
|
33
|
+
import "./chunk-KFQGP6VL.js";
|
|
34
|
+
export {
|
|
35
|
+
createServer
|
|
36
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import {
|
|
2
|
+
promptCompanyInfo,
|
|
3
|
+
promptDatabase,
|
|
4
|
+
promptDeployment,
|
|
5
|
+
promptDomain,
|
|
6
|
+
promptRegistration,
|
|
7
|
+
provision,
|
|
8
|
+
runSetupWizard
|
|
9
|
+
} from "./chunk-MKEIIEBO.js";
|
|
10
|
+
import "./chunk-5KB5MAZK.js";
|
|
11
|
+
import "./chunk-KFQGP6VL.js";
|
|
12
|
+
export {
|
|
13
|
+
promptCompanyInfo,
|
|
14
|
+
promptDatabase,
|
|
15
|
+
promptDeployment,
|
|
16
|
+
promptDomain,
|
|
17
|
+
promptRegistration,
|
|
18
|
+
provision,
|
|
19
|
+
runSetupWizard
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import {
|
|
2
|
+
promptCompanyInfo,
|
|
3
|
+
promptDatabase,
|
|
4
|
+
promptDeployment,
|
|
5
|
+
promptDomain,
|
|
6
|
+
promptRegistration,
|
|
7
|
+
provision,
|
|
8
|
+
runSetupWizard
|
|
9
|
+
} from "./chunk-KGQJAVN7.js";
|
|
10
|
+
import "./chunk-5KB5MAZK.js";
|
|
11
|
+
import "./chunk-KFQGP6VL.js";
|
|
12
|
+
export {
|
|
13
|
+
promptCompanyInfo,
|
|
14
|
+
promptDatabase,
|
|
15
|
+
promptDeployment,
|
|
16
|
+
promptDomain,
|
|
17
|
+
promptRegistration,
|
|
18
|
+
provision,
|
|
19
|
+
runSetupWizard
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import {
|
|
2
|
+
promptCompanyInfo,
|
|
3
|
+
promptDatabase,
|
|
4
|
+
promptDeployment,
|
|
5
|
+
promptDomain,
|
|
6
|
+
promptRegistration,
|
|
7
|
+
provision,
|
|
8
|
+
runSetupWizard
|
|
9
|
+
} from "./chunk-AQC7U6S5.js";
|
|
10
|
+
import "./chunk-5KB5MAZK.js";
|
|
11
|
+
import "./chunk-KFQGP6VL.js";
|
|
12
|
+
export {
|
|
13
|
+
promptCompanyInfo,
|
|
14
|
+
promptDatabase,
|
|
15
|
+
promptDeployment,
|
|
16
|
+
promptDomain,
|
|
17
|
+
promptRegistration,
|
|
18
|
+
provision,
|
|
19
|
+
runSetupWizard
|
|
20
|
+
};
|
|
@@ -386,3 +386,43 @@
|
|
|
386
386
|
2026-03-15 17:14:39: 2026-03-15T16:14:39Z ERR Request failed error="stream 20493 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
387
387
|
2026-03-15 17:14:44: 2026-03-15T16:14:44Z ERR error="stream 1025 canceled by remote with error code 0" connIndex=2 event=1 ingressRule=0 originService=http://localhost:3100
|
|
388
388
|
2026-03-15 17:14:44: 2026-03-15T16:14:44Z ERR Request failed error="stream 1025 canceled by remote with error code 0" connIndex=2 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.192.167 type=http
|
|
389
|
+
2026-03-15 17:30:59: 2026-03-15T16:30:59Z ERR error="stream 21173 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
390
|
+
2026-03-15 17:30:59: 2026-03-15T16:30:59Z ERR Request failed error="stream 21173 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
391
|
+
2026-03-15 17:31:05: 2026-03-15T16:31:05Z ERR error="stream 21169 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
392
|
+
2026-03-15 17:31:05: 2026-03-15T16:31:05Z ERR Request failed error="stream 21169 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
393
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
394
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
395
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
396
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
397
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
398
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
399
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
400
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
401
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=0 event=1 ingressRule=0 originService=http://localhost:3100
|
|
402
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=0 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.192.7 type=http
|
|
403
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
404
|
+
2026-03-15 17:31:38: 2026-03-15T16:31:38Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
405
|
+
2026-03-15 17:31:39: 2026-03-15T16:31:39Z ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:3100: connect: connection refused" connIndex=1 event=1 ingressRule=0 originService=http://localhost:3100
|
|
406
|
+
2026-03-15 17:31:39: 2026-03-15T16:31:39Z ERR Request failed error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: dial tcp [::1]:3100: connect: connection refused" connIndex=1 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/wallet/balance event=0 ip=198.41.200.113 type=http
|
|
407
|
+
2026-03-15 17:32:00: 2026-03-15T16:32:00Z ERR error="stream 2917 canceled by remote with error code 0" connIndex=0 event=1 ingressRule=0 originService=http://localhost:3100
|
|
408
|
+
2026-03-15 17:32:00: 2026-03-15T16:32:00Z ERR Request failed error="stream 2917 canceled by remote with error code 0" connIndex=0 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.192.7 type=http
|
|
409
|
+
2026-03-15 17:32:05: 2026-03-15T16:32:05Z ERR error="stream 23201 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
410
|
+
2026-03-15 17:32:05: 2026-03-15T16:32:05Z ERR Request failed error="stream 23201 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
411
|
+
2026-03-15 17:44:59: 2026-03-15T16:44:59Z ERR error="stream 23981 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
412
|
+
2026-03-15 17:44:59: 2026-03-15T16:44:59Z ERR Request failed error="stream 23981 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
413
|
+
2026-03-15 17:45:07: 2026-03-15T16:45:07Z ERR error="stream 23977 canceled by remote with error code 0" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
414
|
+
2026-03-15 17:45:07: 2026-03-15T16:45:07Z ERR Request failed error="stream 23977 canceled by remote with error code 0" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
415
|
+
2026-03-15 17:45:43: 2026-03-15T16:45:43Z ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: read tcp [::1]:60729->[::1]:3100: read: connection reset by peer" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
416
|
+
2026-03-15 17:45:43: 2026-03-15T16:45:43Z ERR Request failed error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: read tcp [::1]:60729->[::1]:3100: read: connection reset by peer" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/wallet/balance event=0 ip=198.41.200.23 type=http
|
|
417
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
418
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
419
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
420
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
421
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
422
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
423
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
424
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.200.23 type=http
|
|
425
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
426
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
|
427
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR error="unexpected EOF" connIndex=3 event=1 ingressRule=0 originService=http://localhost:3100
|
|
428
|
+
2026-03-15 17:45:45: 2026-03-15T16:45:45Z ERR Request failed error="unexpected EOF" connIndex=3 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.200.23 type=http
|
package/package.json
CHANGED
package/indeed-apply.cjs
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Indeed Job Application Bot — Headed Chrome with persistent login
|
|
3
|
-
* Step 1: Launch browser, verify login, search for jobs, screenshot results
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
const { chromium } = require('playwright');
|
|
7
|
-
const path = require('path');
|
|
8
|
-
const fs = require('fs');
|
|
9
|
-
|
|
10
|
-
const PROFILE_DIR = path.join(process.env.HOME, '.agenticmail', 'browser-profile-indeed');
|
|
11
|
-
const SCREENSHOT_DIR = '/tmp';
|
|
12
|
-
|
|
13
|
-
async function screenshot(page, name) {
|
|
14
|
-
const p = path.join(SCREENSHOT_DIR, `indeed-${name}.png`);
|
|
15
|
-
await page.screenshot({ path: p, fullPage: false });
|
|
16
|
-
return p;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
async function main() {
|
|
20
|
-
const action = process.argv[2] || 'search';
|
|
21
|
-
|
|
22
|
-
const ctx = await chromium.launchPersistentContext(PROFILE_DIR, {
|
|
23
|
-
headless: false,
|
|
24
|
-
channel: 'chrome',
|
|
25
|
-
args: ['--no-first-run', '--disable-blink-features=AutomationControlled'],
|
|
26
|
-
viewport: { width: 1400, height: 900 },
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
// Use existing page or create new one
|
|
30
|
-
const page = ctx.pages()[0] || await ctx.newPage();
|
|
31
|
-
|
|
32
|
-
if (action === 'search') {
|
|
33
|
-
// Navigate to Indeed and search
|
|
34
|
-
const query = process.argv[3] || 'AI Engineer';
|
|
35
|
-
const location = process.argv[4] || 'Charlotte, NC';
|
|
36
|
-
|
|
37
|
-
console.log(`Searching Indeed for "${query}" in "${location}"...`);
|
|
38
|
-
await page.goto(`https://www.indeed.com/jobs?q=${encodeURIComponent(query)}&l=${encodeURIComponent(location)}&radius=50&fromage=14`, {
|
|
39
|
-
waitUntil: 'domcontentloaded', timeout: 30000
|
|
40
|
-
});
|
|
41
|
-
await page.waitForTimeout(3000);
|
|
42
|
-
|
|
43
|
-
const ss = await screenshot(page, 'search');
|
|
44
|
-
console.log(`Screenshot: ${ss}`);
|
|
45
|
-
|
|
46
|
-
// Extract job listings
|
|
47
|
-
const jobs = await page.evaluate(() => {
|
|
48
|
-
const cards = document.querySelectorAll('.job_seen_beacon, .jobsearch-ResultsList > li, [data-jk]');
|
|
49
|
-
const results = [];
|
|
50
|
-
cards.forEach(card => {
|
|
51
|
-
const titleEl = card.querySelector('h2 a, .jobTitle a, [data-jk] a');
|
|
52
|
-
const companyEl = card.querySelector('[data-testid="company-name"], .companyName, .company');
|
|
53
|
-
const locationEl = card.querySelector('[data-testid="text-location"], .companyLocation, .location');
|
|
54
|
-
if (titleEl) {
|
|
55
|
-
results.push({
|
|
56
|
-
title: titleEl.textContent?.trim() || '',
|
|
57
|
-
company: companyEl?.textContent?.trim() || '',
|
|
58
|
-
location: locationEl?.textContent?.trim() || '',
|
|
59
|
-
href: titleEl.href || '',
|
|
60
|
-
jk: card.getAttribute('data-jk') || titleEl.href?.match(/jk=([^&]+)/)?.[1] || '',
|
|
61
|
-
});
|
|
62
|
-
}
|
|
63
|
-
});
|
|
64
|
-
return results;
|
|
65
|
-
});
|
|
66
|
-
|
|
67
|
-
console.log(`\nFound ${jobs.length} jobs:`);
|
|
68
|
-
jobs.forEach((j, i) => {
|
|
69
|
-
console.log(`${i+1}. ${j.title} @ ${j.company} (${j.location})`);
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
-
// Output as JSON for piping
|
|
73
|
-
fs.writeFileSync('/tmp/indeed-jobs.json', JSON.stringify(jobs, null, 2));
|
|
74
|
-
console.log('\nJobs saved to /tmp/indeed-jobs.json');
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// Keep browser open
|
|
78
|
-
console.log('\nBROWSER_READY');
|
|
79
|
-
await new Promise(() => {});
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
main().catch(e => { console.error('ERROR:', e.message); process.exit(1); });
|