diff --git a/apps/basic/20260130-000000/.npmrc b/apps/basic/20260130-000000/.npmrc
deleted file mode 100644
index 6c57d5c..0000000
--- a/apps/basic/20260130-000000/.npmrc
+++ /dev/null
@@ -1 +0,0 @@
-registry=https://npm.nose.space
diff --git a/apps/basic/20260130-000000/bun.lock b/apps/basic/20260130-000000/bun.lock
deleted file mode 100644
index 8ce7d2f..0000000
--- a/apps/basic/20260130-000000/bun.lock
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "lockfileVersion": 1,
- "configVersion": 1,
- "workspaces": {
- "": {
- "name": "toes-app",
- "dependencies": {
- "@because/forge": "^0.0.1",
- "@because/hype": "^0.0.1",
- },
- "devDependencies": {
- "@types/bun": "latest",
- },
- "peerDependencies": {
- "typescript": "^5.9.2",
- },
- },
- },
- "packages": {
- "@because/forge": ["@because/forge@0.0.1", "https://npm.nose.space/@because/forge/-/forge-0.0.1.tgz", { "peerDependencies": { "typescript": "^5" } }, "sha512-QS5CK51gcWma91i4uECWe4HPJeNHcE+Af4SQHOcfEovyzOEa7VOTAjei+jIWr2i+abGWqQCEC9wIuFgPgyr2Bg=="],
-
- "@because/hype": ["@because/hype@0.0.1", "https://npm.nose.space/@because/hype/-/hype-0.0.1.tgz", { "dependencies": { "hono": "^4.10.4", "kleur": "^4.1.5" }, "peerDependencies": { "typescript": "^5" } }, "sha512-i92DNUXJOwt3J8dN1x8sh7i86blelcTCk8XDpwD839Ic8oe710lkDSVXJ7xYZb/i8YtzGhRg+L6eXDhaRiU2Pw=="],
-
- "@types/bun": ["@types/bun@1.3.7", "https://npm.nose.space/@types/bun/-/bun-1.3.7.tgz", { "dependencies": { "bun-types": "1.3.7" } }, "sha512-lmNuMda+Z9b7tmhA0tohwy8ZWFSnmQm1UDWXtH5r9F7wZCfkeO3Jx7wKQ1EOiKq43yHts7ky6r8SDJQWRNupkA=="],
-
- "@types/node": ["@types/node@25.1.0", "https://npm.nose.space/@types/node/-/node-25.1.0.tgz", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-t7frlewr6+cbx+9Ohpl0NOTKXZNV9xHRmNOvql47BFJKcEG1CxtxlPEEe+gR9uhVWM4DwhnvTF110mIL4yP9RA=="],
-
- "bun-types": ["bun-types@1.3.7", "https://npm.nose.space/bun-types/-/bun-types-1.3.7.tgz", { "dependencies": { "@types/node": "*" } }, "sha512-qyschsA03Qz+gou+apt6HNl6HnI+sJJLL4wLDke4iugsE6584CMupOtTY1n+2YC9nGVrEKUlTs99jjRLKgWnjQ=="],
-
- "hono": ["hono@4.11.7", "https://npm.nose.space/hono/-/hono-4.11.7.tgz", {}, "sha512-l7qMiNee7t82bH3SeyUCt9UF15EVmaBvsppY2zQtrbIhl/yzBTny+YUxsVjSjQ6gaqaeVtZmGocom8TzBlA4Yw=="],
-
- "kleur": ["kleur@4.1.5", "https://npm.nose.space/kleur/-/kleur-4.1.5.tgz", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="],
-
- "typescript": ["typescript@5.9.3", "https://npm.nose.space/typescript/-/typescript-5.9.3.tgz", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
-
- "undici-types": ["undici-types@7.16.0", "https://npm.nose.space/undici-types/-/undici-types-7.16.0.tgz", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="],
- }
-}
diff --git a/apps/basic/20260130-000000/index.tsx b/apps/basic/20260130-000000/index.tsx
deleted file mode 100644
index fd2b077..0000000
--- a/apps/basic/20260130-000000/index.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-import { Hype } from '@because/hype'
-
-const app = new Hype
-
-app.get('/', c => c.html(
Hi there!
))
-app.get('/ok', c => c.text('ok'))
-
-const apps = () => {
-}
-
-export default app.defaults
diff --git a/apps/basic/20260130-000000/package.json b/apps/basic/20260130-000000/package.json
deleted file mode 100644
index 1caed85..0000000
--- a/apps/basic/20260130-000000/package.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "name": "basic",
- "module": "src/index.ts",
- "type": "module",
- "private": true,
- "scripts": {
- "toes": "bun run --watch index.tsx",
- "start": "bun toes",
- "dev": "bun run --hot index.tsx"
- },
- "devDependencies": {
- "@types/bun": "latest"
- },
- "peerDependencies": {
- "typescript": "^5.9.2"
- },
- "dependencies": {
- "@because/forge": "^0.0.1",
- "@because/hype": "^0.0.1"
- }
-}
\ No newline at end of file
diff --git a/apps/basic/20260130-000000/tsconfig.json b/apps/basic/20260130-000000/tsconfig.json
deleted file mode 100644
index 545396c..0000000
--- a/apps/basic/20260130-000000/tsconfig.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "compilerOptions": {
- // Environment setup & latest features
- "lib": ["ESNext"],
- "target": "ESNext",
- "module": "Preserve",
- "moduleDetection": "force",
- "jsx": "react-jsx",
- "jsxImportSource": "hono/jsx",
- "allowJs": true,
-
- // Bundler mode
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": true,
- "noEmit": true,
-
- // Best practices
- "strict": true,
- "skipLibCheck": true,
- "noFallthroughCasesInSwitch": true,
- "noUncheckedIndexedAccess": true,
- "noImplicitOverride": true,
-
- // Some stricter flags (disabled by default)
- "noUnusedLocals": false,
- "noUnusedParameters": false,
- "noPropertyAccessFromIndexSignature": false
- }
-}
diff --git a/apps/file.txt b/apps/file.txt
deleted file mode 100644
index 45b983b..0000000
--- a/apps/file.txt
+++ /dev/null
@@ -1 +0,0 @@
-hi
diff --git a/apps/profile/20260130-000000/.npmrc b/apps/profile/20260130-000000/.npmrc
deleted file mode 100644
index 6c57d5c..0000000
--- a/apps/profile/20260130-000000/.npmrc
+++ /dev/null
@@ -1 +0,0 @@
-registry=https://npm.nose.space
diff --git a/apps/profile/20260130-000000/bun.lock b/apps/profile/20260130-000000/bun.lock
deleted file mode 100644
index 8ce7d2f..0000000
--- a/apps/profile/20260130-000000/bun.lock
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "lockfileVersion": 1,
- "configVersion": 1,
- "workspaces": {
- "": {
- "name": "toes-app",
- "dependencies": {
- "@because/forge": "^0.0.1",
- "@because/hype": "^0.0.1",
- },
- "devDependencies": {
- "@types/bun": "latest",
- },
- "peerDependencies": {
- "typescript": "^5.9.2",
- },
- },
- },
- "packages": {
- "@because/forge": ["@because/forge@0.0.1", "https://npm.nose.space/@because/forge/-/forge-0.0.1.tgz", { "peerDependencies": { "typescript": "^5" } }, "sha512-QS5CK51gcWma91i4uECWe4HPJeNHcE+Af4SQHOcfEovyzOEa7VOTAjei+jIWr2i+abGWqQCEC9wIuFgPgyr2Bg=="],
-
- "@because/hype": ["@because/hype@0.0.1", "https://npm.nose.space/@because/hype/-/hype-0.0.1.tgz", { "dependencies": { "hono": "^4.10.4", "kleur": "^4.1.5" }, "peerDependencies": { "typescript": "^5" } }, "sha512-i92DNUXJOwt3J8dN1x8sh7i86blelcTCk8XDpwD839Ic8oe710lkDSVXJ7xYZb/i8YtzGhRg+L6eXDhaRiU2Pw=="],
-
- "@types/bun": ["@types/bun@1.3.7", "https://npm.nose.space/@types/bun/-/bun-1.3.7.tgz", { "dependencies": { "bun-types": "1.3.7" } }, "sha512-lmNuMda+Z9b7tmhA0tohwy8ZWFSnmQm1UDWXtH5r9F7wZCfkeO3Jx7wKQ1EOiKq43yHts7ky6r8SDJQWRNupkA=="],
-
- "@types/node": ["@types/node@25.1.0", "https://npm.nose.space/@types/node/-/node-25.1.0.tgz", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-t7frlewr6+cbx+9Ohpl0NOTKXZNV9xHRmNOvql47BFJKcEG1CxtxlPEEe+gR9uhVWM4DwhnvTF110mIL4yP9RA=="],
-
- "bun-types": ["bun-types@1.3.7", "https://npm.nose.space/bun-types/-/bun-types-1.3.7.tgz", { "dependencies": { "@types/node": "*" } }, "sha512-qyschsA03Qz+gou+apt6HNl6HnI+sJJLL4wLDke4iugsE6584CMupOtTY1n+2YC9nGVrEKUlTs99jjRLKgWnjQ=="],
-
- "hono": ["hono@4.11.7", "https://npm.nose.space/hono/-/hono-4.11.7.tgz", {}, "sha512-l7qMiNee7t82bH3SeyUCt9UF15EVmaBvsppY2zQtrbIhl/yzBTny+YUxsVjSjQ6gaqaeVtZmGocom8TzBlA4Yw=="],
-
- "kleur": ["kleur@4.1.5", "https://npm.nose.space/kleur/-/kleur-4.1.5.tgz", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="],
-
- "typescript": ["typescript@5.9.3", "https://npm.nose.space/typescript/-/typescript-5.9.3.tgz", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
-
- "undici-types": ["undici-types@7.16.0", "https://npm.nose.space/undici-types/-/undici-types-7.16.0.tgz", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="],
- }
-}
diff --git a/apps/profile/20260130-000000/index.tsx b/apps/profile/20260130-000000/index.tsx
deleted file mode 100644
index 9213c19..0000000
--- a/apps/profile/20260130-000000/index.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import { Hype } from '@because/hype'
-
-const app = new Hype
-
-app.get('/', c => c.html(My Profile!!!
))
-app.get('/ok', c => c.text('ok'))
-
-export default app.defaults
diff --git a/apps/profile/20260130-000000/package.json b/apps/profile/20260130-000000/package.json
deleted file mode 100644
index 8fe4132..0000000
--- a/apps/profile/20260130-000000/package.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "name": "profile",
- "module": "src/index.ts",
- "type": "module",
- "private": true,
- "toes": {
- "icon": "👤"
- },
- "scripts": {
- "toes": "bun run --watch index.tsx",
- "start": "bun toes",
- "dev": "bun run --hot index.tsx"
- },
- "devDependencies": {
- "@types/bun": "latest"
- },
- "peerDependencies": {
- "typescript": "^5.9.2"
- },
- "dependencies": {
- "@because/forge": "^0.0.1",
- "@because/hype": "^0.0.1"
- }
-}
\ No newline at end of file
diff --git a/apps/profile/20260130-000000/tsconfig.json b/apps/profile/20260130-000000/tsconfig.json
deleted file mode 100644
index 545396c..0000000
--- a/apps/profile/20260130-000000/tsconfig.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "compilerOptions": {
- // Environment setup & latest features
- "lib": ["ESNext"],
- "target": "ESNext",
- "module": "Preserve",
- "moduleDetection": "force",
- "jsx": "react-jsx",
- "jsxImportSource": "hono/jsx",
- "allowJs": true,
-
- // Bundler mode
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": true,
- "noEmit": true,
-
- // Best practices
- "strict": true,
- "skipLibCheck": true,
- "noFallthroughCasesInSwitch": true,
- "noUncheckedIndexedAccess": true,
- "noImplicitOverride": true,
-
- // Some stricter flags (disabled by default)
- "noUnusedLocals": false,
- "noUnusedParameters": false,
- "noPropertyAccessFromIndexSignature": false
- }
-}
diff --git a/apps/risk/20260130-000000/.npmrc b/apps/risk/20260130-000000/.npmrc
deleted file mode 100644
index 6c57d5c..0000000
--- a/apps/risk/20260130-000000/.npmrc
+++ /dev/null
@@ -1 +0,0 @@
-registry=https://npm.nose.space
diff --git a/apps/risk/20260130-000000/package.json b/apps/risk/20260130-000000/package.json
deleted file mode 100644
index 0967ef4..0000000
--- a/apps/risk/20260130-000000/package.json
+++ /dev/null
@@ -1 +0,0 @@
-{}