https://github.com/sdeveer/DungeonDepths
· scanned 2026-06-16 00:05 UTC (2 months, 3 weeks ago)
36 raw signals (0 security + 36 graph)
Last scanned 2 months, 3 weeks ago · v1 · 36 actionable findings from 1 signal source. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.
All 258 nodes from the latest scan, grouped by kind. Each node is a unit the engine identified (file, function, endpoint, table…). Most users won't need this view — it's primarily for debugging the engine's graph extraction or for AI agents that want to enumerate the project structure.
| Label | Layer | Status | Path |
|---|---|---|---|
Net |
software | healthy | public/js/net.js:Net |
api |
software | healthy | public/js/net.js:api |
Sprites |
software | healthy | public/js/sprites.js:Sprites |
shade |
software | healthy | public/js/sprites.js:shade |
ch |
software | healthy | public/js/sprites.js:ch |
ell |
software | healthy | public/js/sprites.js:ell |
limb |
software | healthy | public/js/sprites.js:limb |
drawSword |
software | healthy | public/js/sprites.js:drawSword |
drawDagger |
software | healthy | public/js/sprites.js:drawDagger |
drawStaff |
software | healthy | public/js/sprites.js:drawStaff |
drawShield |
software | healthy | public/js/sprites.js:drawShield |
drawHero |
software | healthy | public/js/sprites.js:drawHero |
drawHeroSprite |
software | healthy | public/js/sprites.js:drawHeroSprite |
drawEnemySprite |
software | healthy | public/js/sprites.js:drawEnemySprite |
drawPortrait |
software | healthy | public/js/sprites.js:drawPortrait |
xpForLevel |
software | healthy | public/js/shared.js:xpForLevel |
baseAttributes |
software | healthy | public/js/shared.js:baseAttributes |
derive |
software | healthy | public/js/shared.js:derive |
enemyStats |
software | healthy | public/js/shared.js:enemyStats |
mitigate |
software | healthy | public/js/shared.js:mitigate |
skillMult |
software | healthy | public/js/shared.js:skillMult |
skillPointsTotal |
software | healthy | public/js/shared.js:skillPointsTotal |
skillPointsSpent |
software | healthy | public/js/shared.js:skillPointsSpent |
skillPointsAvailable |
software | healthy | public/js/shared.js:skillPointsAvailable |
UI |
software | healthy | public/js/ui.js:UI |
$ |
software | healthy | public/js/ui.js:$ |
toast |
software | healthy | public/js/ui.js:toast |
showTooltip |
software | healthy | public/js/ui.js:showTooltip |
hideTooltip |
software | healthy | public/js/ui.js:hideTooltip |
cellFor |
software | healthy | public/js/ui.js:cellFor |
refreshInventory |
software | healthy | public/js/ui.js:refreshInventory |
toggleInventory |
software | healthy | public/js/ui.js:toggleInventory |
hideInventory |
software | healthy | public/js/ui.js:hideInventory |
showDeath |
software | healthy | public/js/ui.js:showDeath |
hideDeath |
software | healthy | public/js/ui.js:hideDeath |
rankPips |
software | healthy | public/js/ui.js:rankPips |
refreshSkillTree |
software | healthy | public/js/ui.js:refreshSkillTree |
toggleSkillTree |
software | healthy | public/js/ui.js:toggleSkillTree |
hideSkillTree |
software | healthy | public/js/ui.js:hideSkillTree |
Dungeon |
software | healthy | public/js/dungeon.js:Dungeon |
rng |
software | healthy | public/js/dungeon.js:rng |
carveRoom |
software | healthy | public/js/dungeon.js:carveRoom |
carveCorridor |
software | healthy | public/js/dungeon.js:carveCorridor |
carve |
software | healthy | public/js/dungeon.js:carve |
center |
software | healthy | public/js/dungeon.js:center |
generateTown |
software | healthy | public/js/dungeon.js:generateTown |
generate |
software | healthy | public/js/dungeon.js:generate |
d |
software | healthy | public/js/dungeon.js:d |
tileAt |
software | healthy | public/js/dungeon.js:tileAt |
walkable |
software | healthy | public/js/dungeon.js:walkable |
Showing first 50 of this kind. Full payload available via the JSON button at the top of the page.
| Label | Layer | Status | Path |
|---|---|---|---|
README.md |
software | healthy | README.md |
package.json |
software | healthy | package.json |
Dockerfile |
software | healthy | Dockerfile |
.env.example |
software | healthy | .env.example |
docker-compose.yml |
software | healthy | docker-compose.yml |
schema.sql |
software | healthy | db/schema.sql |
index.html |
software | healthy | public/index.html |
style.css |
software | healthy | public/style.css |
net.js |
software | healthy | public/js/net.js |
sprites.js |
software | healthy | public/js/sprites.js |
shared.js |
software | healthy | public/js/shared.js |
ui.js |
software | healthy | public/js/ui.js |
dungeon.js |
software | healthy | public/js/dungeon.js |
render.js |
software | healthy | public/js/render.js |
main.js |
software | healthy | public/js/main.js |
game.js |
software | healthy | public/js/game.js |
db.js |
software | healthy | src/db.js |
auth.js |
software | healthy | src/auth.js |
server.js |
software | healthy | src/server.js |
loot.js |
software | healthy | src/loot.js |
game.js |
software | healthy | src/game.js |
| Label | Layer | Status | Path |
|---|---|---|---|
POST /register |
api | healthy | src/auth.js |
POST /login |
api | healthy | src/auth.js |
POST /logout |
api | healthy | src/auth.js |
GET /me |
api | healthy | src/auth.js |
USE /api |
api | healthy | src/server.js |
GET /characters |
api | healthy | src/game.js |
POST /characters |
api | healthy | src/game.js |
DELETE /characters/:id |
api | healthy | src/game.js |
GET /characters/:id |
api | healthy | src/game.js |
POST /characters/:id/save |
api | healthy | src/game.js |
POST /characters/:id/kill |
api | healthy | src/game.js |
POST /characters/:id/death |
api | healthy | src/game.js |
POST /characters/:id/skill |
api | healthy | src/game.js |
POST /characters/:id/trap |
api | healthy | src/game.js |
POST /characters/:id/items/:itemId/equip |
api | healthy | src/game.js |
POST /characters/:id/items/:itemId/unequip |
api | healthy | src/game.js |
POST /characters/:id/items/:itemId/use |
api | healthy | src/game.js |
DELETE /characters/:id/items/:itemId |
api | healthy | src/game.js |
| Label | Layer | Status | Path |
|---|---|---|---|
has |
software | healthy | public/js/sprites.js:has |
at |
software | healthy | public/js/shared.js:at |
skill |
software | healthy | public/js/shared.js:skill |
skills |
software | healthy | public/js/render.js:skills |
skill |
software | healthy | public/js/main.js:skill |
skill |
software | healthy | src/game.js:skill |
| Label | Layer | Status | Path |
|---|---|---|---|
db |
software | healthy | db |
public |
software | healthy | public |
js |
software | healthy | public/js |
src |
software | healthy | src |
| Label | Layer | Status | Path |
|---|---|---|---|
accounts |
data | healthy | db/schema.sql |
characters |
data | healthy | db/schema.sql |
items |
data | healthy | db/schema.sql |
| Label | Layer | Status | Path |
|---|---|---|---|
image::Dockerfile |
hardware | healthy | Dockerfile |
game |
hardware | healthy | docker-compose.yml |
db |
hardware | healthy | docker-compose.yml |
| Label | Layer | Status | Path |
|---|---|---|---|
postgresql |
data | healthy | README.md |
postgres |
data | healthy | README.md |
| Label | Layer | Status | Path |
|---|---|---|---|
repobility-clone-r942ycel |
software | healthy | /tmp/repobility-clone-r942ycel |
| Label | Layer | Status | Path |
|---|---|---|---|
port:3000 |
network | healthy | Dockerfile |
This page is publicly accessible at:
https://repobility.com/scan/37b11d8d-e933-4178-b215-ef328f4e43fa/
To check status programmatically (no auth required):
curl -s https://repobility.com/api/v1/public/scan/37b11d8d-e933-4178-b215-ef328f4e43fa/
Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.