squalid-singularity 0.0.1

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.
Files changed (94) hide show
  1. package/.vscode/extensions.json +4 -0
  2. package/.vscode/launch.json +11 -0
  3. package/.wrangler/tmp/pages-pHhhPx/_routes-0.7693472831665579.json +9 -0
  4. package/.wrangler/tmp/pages-pHhhPx/functions-filepath-routing-config-0.7436749681606077.json +21 -0
  5. package/.wrangler/tmp/pages-pHhhPx/functionsRoutes-0.14872757927825653.mjs +19 -0
  6. package/.wrangler/tmp/pages-pHhhPx/functionsWorker-0.7091847872345003.js +491 -0
  7. package/.wrangler/tmp/pages-yKW4pG/_routes-0.6780167228686584.json +9 -0
  8. package/.wrangler/tmp/pages-yKW4pG/functions-filepath-routing-config-0.6268818876758142.json +21 -0
  9. package/.wrangler/tmp/pages-yKW4pG/functionsRoutes-0.016215448179317304.mjs +19 -0
  10. package/.wrangler/tmp/pages-yKW4pG/functionsWorker-0.29714428274758986.js +491 -0
  11. package/README.md +43 -0
  12. package/astro.config.mjs +26 -0
  13. package/functions/agent/[[path]].ts +9 -0
  14. package/functions/starlight/[[path]].ts +9 -0
  15. package/functions/task/[[path]].ts +9 -0
  16. package/index.html.bak +1755 -0
  17. package/package.json +24 -0
  18. package/public/_redirects +1 -0
  19. package/public/art/hero.webp +0 -0
  20. package/public/favicon.ico +0 -0
  21. package/public/favicon.svg +5 -0
  22. package/public/images/generated/01-red-cube-editorial.png +0 -0
  23. package/public/images/generated/02-hero-network.png +0 -0
  24. package/public/images/generated/03-protocol-vault.png +0 -0
  25. package/public/images/generated/04-token-flow.png +0 -0
  26. package/public/images/generated/05-how-escrow.png +0 -0
  27. package/public/images/generated/06-agent-robot.png +0 -0
  28. package/public/images/generated/video-final/music-v1.mp3 +0 -0
  29. package/public/images/generated/video-final/music.mp3 +0 -0
  30. package/public/images/hero-bg.png +0 -0
  31. package/public/images/hero-bg.webp +0 -0
  32. package/public/logo-white-bg.png +0 -0
  33. package/public/logo-white-bg.svg +5 -0
  34. package/public/logo-white.png +0 -0
  35. package/public/logo-white.svg +4 -0
  36. package/public/logo.png +0 -0
  37. package/public/og/agents.png +0 -0
  38. package/public/og/blog-final-chapter.png +0 -0
  39. package/public/og/blog-mandate-vs-virtuals.png +0 -0
  40. package/public/og/blog.png +0 -0
  41. package/public/og/dashboard.png +0 -0
  42. package/public/og/docs.png +0 -0
  43. package/public/og/home.png +0 -0
  44. package/public/og/how.png +0 -0
  45. package/public/og/leaderboard.png +0 -0
  46. package/public/og/protocol.png +0 -0
  47. package/public/og/tasks.png +0 -0
  48. package/public/og/token.png +0 -0
  49. package/public/og/updates.png +0 -0
  50. package/public/skill.md +427 -0
  51. package/public/skills/conway.md +311 -0
  52. package/public/twitter-header.png +0 -0
  53. package/public/twitter-header.svg +51 -0
  54. package/src/components/AgentGridCard.astro +99 -0
  55. package/src/components/AgentRow.astro +57 -0
  56. package/src/components/ColorBends.tsx +306 -0
  57. package/src/components/Footer.astro +45 -0
  58. package/src/components/GigCard.astro +36 -0
  59. package/src/components/Navbar.astro +244 -0
  60. package/src/components/ReviewCard.astro +29 -0
  61. package/src/components/SkillPill.astro +19 -0
  62. package/src/components/StarlightChat.tsx +359 -0
  63. package/src/components/StatusBadge.astro +28 -0
  64. package/src/components/TaskEntry.astro +98 -0
  65. package/src/layouts/Layout.astro +233 -0
  66. package/src/lib/api.ts +365 -0
  67. package/src/pages/404.astro +33 -0
  68. package/src/pages/admin.astro +495 -0
  69. package/src/pages/agent/[...id].astro +1055 -0
  70. package/src/pages/agents/index.astro +309 -0
  71. package/src/pages/blog/conway-automaton.astro +192 -0
  72. package/src/pages/blog/index.astro +49 -0
  73. package/src/pages/blog/mandate-vs-virtuals.astro +542 -0
  74. package/src/pages/blog/the-final-chapter.astro +329 -0
  75. package/src/pages/bounties/index.astro +260 -0
  76. package/src/pages/dashboard.astro +364 -0
  77. package/src/pages/docs.astro +220 -0
  78. package/src/pages/gigs/index.astro +215 -0
  79. package/src/pages/how.astro +172 -0
  80. package/src/pages/index.astro +513 -0
  81. package/src/pages/leaderboard.astro +228 -0
  82. package/src/pages/og/home.astro +65 -0
  83. package/src/pages/protocol/stats.astro +845 -0
  84. package/src/pages/protocol.astro +422 -0
  85. package/src/pages/starlight.astro +13 -0
  86. package/src/pages/task/[...id].astro +1656 -0
  87. package/src/pages/tasks.astro +12 -0
  88. package/src/pages/terms.astro +133 -0
  89. package/src/pages/token.astro +268 -0
  90. package/src/pages/updates.astro +180 -0
  91. package/src/styles/global.css +128 -0
  92. package/tailwind.config.mjs +51 -0
  93. package/tsconfig.json +14 -0
  94. package/wrangler.toml +5 -0
@@ -0,0 +1,128 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ /* Base resets */
6
+ html, body {
7
+ background-color: #0a0a0a;
8
+ color-scheme: dark;
9
+ }
10
+
11
+ html {
12
+ scroll-behavior: smooth;
13
+ -webkit-font-smoothing: antialiased;
14
+ -moz-osx-font-smoothing: grayscale;
15
+ overscroll-behavior: none;
16
+ }
17
+
18
+ body {
19
+ text-rendering: optimizeLegibility;
20
+ }
21
+
22
+ ::selection {
23
+ background-color: rgba(220, 38, 38, 0.15);
24
+ color: #e5e5e5;
25
+ }
26
+
27
+ /* Scrollbar */
28
+ ::-webkit-scrollbar {
29
+ width: 6px;
30
+ height: 6px;
31
+ }
32
+ ::-webkit-scrollbar-track {
33
+ background: transparent;
34
+ }
35
+ ::-webkit-scrollbar-thumb {
36
+ background: #333333;
37
+ }
38
+ ::-webkit-scrollbar-thumb:hover {
39
+ background: #555555;
40
+ }
41
+
42
+ /* Focus ring */
43
+ *:focus-visible {
44
+ outline: 2px solid #dc2626;
45
+ outline-offset: 2px;
46
+ border-radius: 0;
47
+ }
48
+
49
+ /* Section divider */
50
+ .section-divider {
51
+ height: 1px;
52
+ background: #1e1e1e;
53
+ }
54
+
55
+ /* Smooth transitions */
56
+ a, button, input, textarea, select {
57
+ transition-property: color, background-color, border-color, box-shadow, opacity, transform;
58
+ transition-duration: 200ms;
59
+ transition-timing-function: ease;
60
+ }
61
+
62
+ /* --- Activity Ticker --- */
63
+ .ticker-track {
64
+ display: flex;
65
+ gap: 3rem;
66
+ animation: ticker-scroll 60s linear infinite;
67
+ width: max-content;
68
+ }
69
+ .ticker-track:hover {
70
+ animation-play-state: paused;
71
+ }
72
+ @keyframes ticker-scroll {
73
+ 0% { transform: translateX(0); }
74
+ 100% { transform: translateX(-50%); }
75
+ }
76
+
77
+ /* --- Fade-in-up entrance --- */
78
+ .fade-in-up {
79
+ opacity: 0;
80
+ transform: translateY(16px);
81
+ transition: opacity 0.5s ease, transform 0.5s ease;
82
+ }
83
+ .fade-in-up.visible {
84
+ opacity: 1;
85
+ transform: translateY(0);
86
+ }
87
+
88
+ /* --- Reduced motion --- */
89
+ @media (prefers-reduced-motion: reduce) {
90
+ .ticker-track { animation: none !important; }
91
+ .fade-in-up { opacity: 1; transform: none; transition: none; }
92
+ }
93
+
94
+ /* Mobile overlay transition */
95
+ .mobile-overlay-transition {
96
+ transition: opacity 200ms ease;
97
+ }
98
+
99
+ /* Red text highlight — thick red underline marker */
100
+ .text-highlight {
101
+ background-image: linear-gradient(#dc2626, #dc2626);
102
+ background-size: 100% 0.12em;
103
+ background-position: 0 92%;
104
+ background-repeat: no-repeat;
105
+ padding-bottom: 0.04em;
106
+ }
107
+
108
+ /* Thick red horizontal rule */
109
+ .red-rule {
110
+ height: 4px;
111
+ background: #dc2626;
112
+ border: none;
113
+ }
114
+
115
+ /* Full-width red background section */
116
+ .section-red {
117
+ background: #dc2626;
118
+ color: #ffffff;
119
+ }
120
+
121
+ /* Editorial label — small caps section label */
122
+ .editorial-label {
123
+ font-family: 'JetBrains Mono', monospace;
124
+ font-size: 11px;
125
+ letter-spacing: 0.08em;
126
+ text-transform: uppercase;
127
+ color: #555555;
128
+ }
@@ -0,0 +1,51 @@
1
+ /** @type {import('tailwindcss').Config} */
2
+ export default {
3
+ content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
4
+ theme: {
5
+ extend: {
6
+ colors: {
7
+ bg: '#0a0a0a',
8
+ surface: '#111111',
9
+ 'surface-2': '#1a1a1a',
10
+ 'surface-3': '#262626',
11
+ border: '#1e1e1e',
12
+ 'border-hover': '#383838',
13
+ text: '#e5e5e5',
14
+ 'text-dim': '#888888',
15
+ 'text-muted': '#555555',
16
+ primary: '#dc2626',
17
+ 'primary-hover': '#ef4444',
18
+ 'primary-soft': 'rgba(220, 38, 38, 0.15)',
19
+ accent: '#dc2626',
20
+ red: '#ef4444',
21
+ green: '#16a34a',
22
+ blue: '#2563eb',
23
+ yellow: '#ca8a04',
24
+ },
25
+ fontFamily: {
26
+ sans: ['Plus Jakarta Sans', 'system-ui', 'sans-serif'],
27
+ display: ['Plus Jakarta Sans', 'system-ui', 'sans-serif'],
28
+ mono: ['JetBrains Mono', 'monospace'],
29
+ },
30
+ fontSize: {
31
+ 'display-xl': ['clamp(3.5rem, 10vw, 6rem)', { lineHeight: '0.92', letterSpacing: '-0.04em', fontWeight: '800' }],
32
+ 'display-lg': ['clamp(2rem, 5vw, 3rem)', { lineHeight: '1.1', letterSpacing: '-0.03em', fontWeight: '700' }],
33
+ 'display-stat': ['clamp(3rem, 8vw, 5rem)', { lineHeight: '1', letterSpacing: '-0.03em', fontWeight: '800' }],
34
+ },
35
+ boxShadow: {
36
+ 'card': '0 1px 3px rgba(0,0,0,0.3)',
37
+ 'card-hover': '0 4px 12px rgba(0,0,0,0.4)',
38
+ },
39
+ keyframes: {
40
+ 'fade-in': {
41
+ '0%': { opacity: '0', transform: 'translateY(8px)' },
42
+ '100%': { opacity: '1', transform: 'translateY(0)' },
43
+ },
44
+ },
45
+ animation: {
46
+ 'fade-in': 'fade-in 0.3s ease-out forwards',
47
+ },
48
+ },
49
+ },
50
+ plugins: [],
51
+ };
package/tsconfig.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "extends": "astro/tsconfigs/strict",
3
+ "include": [
4
+ ".astro/types.d.ts",
5
+ "**/*"
6
+ ],
7
+ "exclude": [
8
+ "dist"
9
+ ],
10
+ "compilerOptions": {
11
+ "jsx": "react-jsx",
12
+ "jsxImportSource": "react"
13
+ }
14
+ }
package/wrangler.toml ADDED
@@ -0,0 +1,5 @@
1
+ name = "moltlaunch"
2
+ pages_build_output_dir = "dist"
3
+
4
+ # Deploys to moltlaunch.com (custom domain already configured)
5
+ # Deploy: npm run build && npx wrangler pages deploy dist --project-name moltlaunch