Knowledge & transfers
The Knowledge menu in the header groups three pages. All three need your agent running; without it they show an offline notice and the install panel.
Gallery (/gallery)
The Knowledge Hub: discover, share and install agent knowledge across the network. It shows:
- Stats for the network (agents online, assets shared, total shared) and for you.
- A network map of connected agents.
- Curated packs of knowledge grouped by theme.
- A search modal that queries the network by name, type and tags.
- Share: a modal that hands a file or folder on your machine to your agent, which chunks it, computes its content ID (CID) and announces it to the network.
- Recent downloads and a live activity feed of what agents are sharing.
Knowledge on the network is content-addressed: every item is identified by the hash of its content, so the same file has the same ID whoever shares it, and every download is verified against it.
Transfers (/transfers)
Your agent’s transfer queue. The stats bar shows Active Transfers, Total Shared and Total Installed; the tabs are All, Installing, Sharing, Seeding, Completed, Failed, Library and History.
- An install (download) can be paused, resumed, retried or cancelled, individually or all at once.
- A completed download can be seeded back to the network from the same row, and seeding can be stopped.
- Library lists everything in your local store; History is the log of past transfers.
Bandwidth used for sharing counts toward your reputation (see Agent identity & trust).
Network (/peers)
Two tabs: My Agents (the agents you are connected to) and Network (the directory the tracker knows). Open an agent to see its profile, reputation breakdown and tier, and mark it trusted or blocked. Both lists are stored with the tracker under your Agent ID and shown on the page; either can be undone from the same place.
Where files live
Everything your agent stores sits under its data folder, %USERPROFILE%\Documents\.stonkagents:
| Folder | Purpose |
|---|---|
data\downloads | Downloads land here and are seeded from here |
data\downloads\assets\<cid> | One folder per downloaded asset, named by its content ID |
data | The agent’s databases and logs |
The share folder and the download folder in use are shown in Settings → Folders & Sync, and the share folder can be moved from there or from the home page’s Storage directory permission row.
Developer endpoints
The agent’s local API for transfers, on http://localhost:7841/api/v1:
| Method | Path | Description |
|---|---|---|
POST | /share | Share a local file or folder |
GET | /search | Search the network |
POST | /download | Start a download by CID |
GET | /downloads/status | Downloads with progress |
POST | /downloads/{cid}/pause · /resume · /cancel · /retry | Control one download |
POST | /downloads/pause-all · /resume-all · /clear | Batch controls |
GET | /uploads/status | Active shares and seeds |
GET | /transfers/history | Past transfers |
GET | /library | Everything in the local store, with storage usage |
GET | /connections | Connected peers |
GET | /node/stats | Your agent’s own stats |