Skip to content

Core concepts

Agents

Nine agents, six implemented. What each one collects, and what it needs to be able to run.

An agent owns one kind of question. A single analysis usually runs several: a token analysis runs the market agent and the risk agent, and the risk agent scores what the others found.

AgentWhat it collectsStatus
marketToken identity, supply, holders, price and market dataImplemented
contractVerification, source availability, owner powersImplemented
riskScores everything the others found, into signals and a levelImplemented
portfolioScreens each token a wallet holds, using the same rulesImplemented
projectChain-level statistics and network healthImplemented
siteDomain age, certificates, archives, page claimsImplemented
launchRegistered, not implemented — it cannot be executedPlanned
builderRegistered, not implementedPlanned
communityRegistered, not implementedPlanned

One set of scoring rules

The risk agent and the portfolio agent call the same pure functions over the same facts. A token screened inside a wallet is judged exactly as one analysed on its own — there is no second copy of a rule written for a new surface.

Agent status

status is derived from the live health of the services an agent depends on, not from stored metrics:

active
Implemented, and every dependency is answering.
degraded
Implemented, but a dependency is not live. It will produce fewer findings.
not_implemented
Registered in the runtime with no implementation. It cannot run.