- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
Latest commit
289 lines (267 loc) · 16.8 KB
/
Copy pathabout.html
File metadata and controls
289 lines (267 loc) · 16.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<title>About DevForge — Developer CLI Tools That Catch Problems Before Production</title>
<metaname="description" content="DevForge builds Production-ready CLI tools for developers — API contracts, SQL generation, infrastructure diffs, config drift, and more. Open-source for faster patches and consistent quality.">
<metaname="keywords" content="about DevForge, developer CLI tools, OpenAPI, SQL, infrastructure, config drift, Open-source">
<metaproperty="og:title" content="About DevForge">
<metaproperty="og:description" content="Production-ready developer CLI tools that catch problems before production.">
<metaproperty="og:type" content="website">
<metaproperty="og:url" content="https://coding-dev-tools.github.io/devforge/about.html">
<metaname="twitter:site" content="@DevForge">
<metaname="twitter:card" content="summary_large_image">
<metaname="twitter:title" content="About DevForge">
<metaname="twitter:description" content="Production-ready developer CLI tools that catch problems before production.">
<metaname="twitter:image" content="https://coding-dev-tools.github.io/devforge/og-image.svg">
<metaproperty="og:image" content="https://coding-dev-tools.github.io/devforge/og-image.svg">
<metaproperty="og:image:width" content="1200">
<metaproperty="og:image:height" content="630">
<linkrel="canonical" href="https://coding-dev-tools.github.io/devforge/about.html">
<scripttype="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "DevForge",
"url": "https://coding-dev-tools.github.io/devforge/",
"logo": "https://coding-dev-tools.github.io/devforge/og-image.svg",
"description": "Production-ready developer CLI tools that catch problems before production. Open-source for faster patches and consistent quality.",
"foundingDate": "2026-05",
"sameAs": ["https://github.com/Coding-Dev-Tools"]
}
</script>
<linkrel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚒</text></svg>">
<linkhref="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
*,*::before,*::after { box-sizing: border-box; margin:0; padding:0; }
body { font-family:'Inter', -apple-system, sans-serif; background:#0a0a0b; color:#e1e1e3; line-height:1.6; min-height:100vh; }
/* Navigation */
nav { position: fixed; top:0; width:100%; z-index:100; background:rgba(10,10,11,0.85); backdrop-filter:blur(12px); border-bottom:1px solid #1e1e20; }
nav .inner { max-width:1100px; margin:0 auto; padding:14px24px; display: flex; align-items: center; justify-content: space-between; }
nav .logo { font-weight:700; font-size:1.15rem; }
nav .logoa { color:#fff; text-decoration: none; letter-spacing:-0.02em; }
nav .logoaspan { color:#6366f1; }
nav .linksa { color:#888; text-decoration: none; font-size:0.85rem; margin-left:28px; transition: color .15s; }
nav .linksa:hover { color:#fff; }
nav .linksa.active { color:#fff; }
/* Hero */
.hero { max-width:800px; margin:0 auto; padding:140px24px60px; }
.heroh1 { font-size:2.6rem; font-weight:800; line-height:1.15; letter-spacing:-0.04em; color:#fff; margin-bottom:20px; }
.heroh1span { background:linear-gradient(135deg,#6366f1,#a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.herop { font-size:1.1rem; color:#888; line-height:1.7; }
/* Sections */
.section { max-width:800px; margin:0 auto; padding:60px24px; }
.sectionh2 { font-size:1.6rem; font-weight:700; color:#fff; letter-spacing:-0.03em; margin-bottom:16px; }
.sectionp { font-size:0.95rem; color:#999; line-height:1.8; margin-bottom:16px; }
.sectionpstrong { color:#e1e1e3; }
/* Values Grid */
.values { display: grid; grid-template-columns:repeat(auto-fill,minmax(340px,1fr)); gap:20px; max-width:1100px; margin:0 auto; padding:024px60px; }
.value-card { background:#121213; border:1px solid #1e1e20; border-radius:14px; padding:28px; }
.value-card .icon { width:40px; height:40px; border-radius:10px; display: flex; align-items: center; justify-content: center; font-size:1.2rem; margin-bottom:16px; }
.value-cardh3 { font-size:1.05rem; font-weight:600; color:#fff; margin-bottom:8px; }
.value-cardp { font-size:0.85rem; color:#888; line-height:1.6; }
.icon-purple { background:rgba(99,102,241,0.15); }
.icon-green { background:rgba(16,185,129,0.15); }
.icon-orange { background:rgba(245,158,11,0.15); }
.icon-blue { background:rgba(59,130,246,0.15); }
/* Timeline */
.timeline { max-width:800px; margin:0 auto; padding:024px60px; }
.timeline-item { display: flex; gap:24px; margin-bottom:32px; }
.timeline-dot { flex-shrink:0; width:12px; height:12px; border-radius:50%; background:#6366f1; margin-top:6px; }
.timeline-dot.dim { background:#2a2a2d; }
.timeline-contenth4 { font-size:0.95rem; font-weight:600; color:#fff; margin-bottom:4px; }
.timeline-contentp { font-size:0.85rem; color:#888; line-height:1.6; }
.timeline-content .date { font-size:0.75rem; color:#555; margin-bottom:6px; }
/* Team / AI section */
.ai-section { max-width:800px; margin:0 auto; padding:60px24px; border-top:1px solid #1e1e20; }
.ai-sectionh2 { font-size:1.6rem; font-weight:700; color:#fff; letter-spacing:-0.03em; margin-bottom:16px; }
.agent-grid { display: grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px; margin-top:24px; }
.agent { background:#121213; border:1px solid #1e1e20; border-radius:12px; padding:20px; }
.agent .role { font-size:0.7rem; font-weight:600; text-transform: uppercase; letter-spacing:0.5px; margin-bottom:8px; }
.agent .role.ceo { color:#f59e0b; }
.agent .role.engineer { color:#6366f1; }
.agent .role.researcher { color:#10b981; }
.agent .role.marketer { color:#ec4899; }
.agent .name { font-size:1rem; font-weight:600; color:#fff; margin-bottom:6px; }
.agentp { font-size:0.8rem; color:#888; line-height:1.5; }
/* CTA */
.cta-section { text-align: center; padding:80px24px; border-top:1px solid #1e1e20; }
.cta-sectionh2 { font-size:1.8rem; font-weight:700; color:#fff; margin-bottom:12px; }
.cta-sectionp { color:#888; font-size:1rem; margin-bottom:28px; }
.cta-btn { display: inline-block; padding:12px28px; border-radius:10px; font-weight:600; font-size:0.9rem; text-decoration: none; background:#6366f1; color:#fff; transition: all .15s; }
.cta-btn:hover { background:#5558e6; transform:translateY(-1px); }
/* Footer */
footer { max-width:1100px; margin:0 auto; padding:40px24px; border-top:1px solid #1e1e20; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap:16px; }
footerspan { font-size:0.8rem; color:#555; }
footera { color:#888; text-decoration: none; font-size:0.8rem; margin-left:20px; transition: color .15s; }
footera:hover { color:#fff; }
@media (max-width:640px) {
nav .linksa { margin-left:16px; font-size:0.78rem; }
.heroh1 { font-size:1.8rem; }
.values { grid-template-columns:1fr; }
.agent-grid { grid-template-columns:1fr; }
}
</style>
<!-- Plausible Analytics -->
<scriptdeferdata-domain="devforge" src="https://plausible.io/js/script.js"></script>
</head>
<body>
<nav>
<divclass="inner">
<divclass="logo"><ahref=""><span>⚒</span> DevForge</a></div>
<divclass="links">
<ahref="start-here.html">Start Here</a>
<ahref="quickstart.html">Get Started</a>
<ahref="#products">Products</a>
<ahref="docs.html">Docs</a>
<ahref="pricing.html">Pricing</a>
<ahref="alternatives.html">Alternatives</a>
<ahref="releases.html">Changelog</a>
<ahref="blog.html">Blog</a>
<ahref="about.html" style="font-weight:700">About</a>
<ahref="https://github.com/Coding-Dev-Tools" target="_blank">GitHub</a>
</div>
<ahref="index.html" class="logo">Revenue<span>Holdings</span></a>
<divclass="links">
<ahref="quickstart.html">Get Started</a>
<ahref="docs.html">Docs</a>
<ahref="pricing.html">Pricing</a>
<ahref="alternatives.html">Alternatives</a>
<ahref="releases.html">Changelog</a>
<ahref="blog.html">Blog</a>
<ahref="about.html" class="active">About</a>
</div>
</nav>
<!-- Hero -->
<divclass="hero">
<h1>Developer Tools That Catch<br><span>Problems Before Production</span></h1>
<p>DevForge builds CLI tools that stop API contract violations, config drift, dead code bloat, and infrastructure surprises before they hit production. Install in seconds, run locally, gate CI pipelines — ship with confidence.</p>
</div>
<!-- Mission -->
<divclass="section">
<h2>Our Mission</h2>
<p>We believe developer tools should <strong>save you time on day one</strong>, not require a week of setup. Every tool we ship installs in seconds, runs locally, and solves one problem thoroughly — from API contract enforcement and config drift detection to dead code cleanup and infrastructure cost previews.</p>
<p>Our tools are <strong>Open-source</strong>, which means faster patches, consistent quality, and lower prices. A coordinated team of AI agents handles development — each with a specialized role — so we ship fixes in hours instead of weeks and pass the savings on to you.</p>
</div>
<!-- Values -->
<divclass="values">
<divclass="value-card">
<divclass="icon icon-purple">⚡</div>
<h3>Ship Fast, Break Nothing</h3>
<p>Every tool gates CI pipelines, catches regressions before they deploy, and gives you rollback confidence. We eat our own dogfood — our tools protect our own releases.</p>
</div>
<divclass="value-card">
<divclass="icon icon-green">🔓</div>
<h3>Open Source Core</h3>
<p>Every tool is open source on GitHub. Inspect the code, fork it, contribute back. The free tier has no feature gates — only rate limits on heavy operations.</p>
</div>
<divclass="value-card">
<divclass="icon icon-orange">💰</div>
<h3>Fair, Transparent Pricing</h3>
<p>One license covers every tool — no per-seat nickel-and-diming. Free tier for solo devs, Pro for professionals, Team for organizations. That's it.</p>
</div>
<divclass="value-card">
<divclass="icon icon-blue">🤖</div>
<h3>AI-Native, Human-Verified</h3>
<p>Our agents write the code, but every design decision follows engineering principles — automated testing, semantic versioning, backward compatibility guarantees.</p>
</div>
</div>
<!-- Timeline -->
<divclass="section">
<h2>Our Story</h2>
</div>
<divclass="timeline">
<divclass="timeline-item">
<divclass="timeline-dot"></div>
<divclass="timeline-content">
<divclass="date">May 2026</div>
<h4>API Contract Guardian launches</h4>
<p>First tool ships: OpenAPI diff engine that catches breaking schema changes in CI. The first of 11 tools in the suite.</p>
</div>
</div>
<divclass="timeline-item">
<divclass="timeline-dot"></div>
<divclass="timeline-content">
<divclass="date">May 2026</div>
<h4>json2sql, DeployDiff, ConfigDrift follow</h4>
<p>Three more tools ship within 48 hours — JSON-to-SQL conversion, infrastructure diff preview, and config drift detection. All production-ready on day one.</p>
</div>
</div>
<divclass="timeline-item">
<divclass="timeline-dot"></div>
<divclass="timeline-content">
<divclass="date">May 2026</div>
<h4>DevForge suite & meta-package</h4>
<p>Unified branding, cross-tool pricing, and the devforge meta-package — one install for all tools.</p>
</div>
</div>
<divclass="timeline-item">
<divclass="timeline-dot dim"></div>
<divclass="timeline-content">
<divclass="date">Shipped</div>
<h4>APIAuth, APIGhost, Envault, SchemaForge, click-to-mcp, DeadCode</h4>
<p>Six more tools shipped: API key management, mock server, environment variable sync, ORM schema conversion, MCP server wrapper, and dead code cleanup. The full 11-tool suite is live.</p>
<p>Six more tools shipped: API key management, mock server, environment variable sync, ORM schema conversion, MCP server wrapper, and dead code cleanup. The full 10-tool suite is live.</p>
</div>
</div>
</div>
<!-- AI Agents -->
<divclass="ai-section">
<h2>Open-source Development</h2>
<pstyle="font-size:0.95rem;color:#999;margin-bottom:24px;">Every tool is maintained by a coordinated team of specialized AI agents. Open-source means faster patches, consistent quality, and lower prices.</p>
<divclass="agent-grid">
<divclass="agent">
<divclass="role ceo">CEO / Orchestrator</div>
<divclass="name">Conductor</div>
<p>Triages work, routes tasks to specialists, and ensures every heartbeat produces measurable progress.</p>
</div>
<divclass="agent">
<divclass="role engineer">Engineer</div>
<divclass="name">Builder</div>
<p>Writes code, runs tests, manages CI/CD. Ships features and fixes with full test coverage.</p>
</div>
<divclass="agent">
<divclass="role researcher">Researcher</div>
<divclass="name">Scout</div>
<p>Market research, competitive analysis, and technical validation. Ensures we build what developers actually need.</p>
</div>
<divclass="agent">
<divclass="role marketer">Marketer</div>
<divclass="name">Storyteller</div>
<p>Product positioning, pricing, documentation, and growth. Makes sure the right people find the right tools.</p>
</div>
</div>
</div>
<!-- Blog Links -->
<divclass="section">
<h2>Learn with Tutorials</h2>
<p>Every tool has a dedicated tutorial with sample workflows, CI/CD integration, and real-world use cases. <strong>37 articles</strong> covering all 11 tools.</p>
<divstyle="display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:12px;margin-top:20px;">
<ahref="blog/api-key-management-from-terminal.html" style="background:#121213;border:1px solid #1e1e20;border-radius:10px;padding:14px 18px;text-decoration:none;color:#ccc;font-size:0.85rem;transition:border-color .15s;">🔑 API Key Management <spanstyle="color:#6366f1;">→</span></a>
<ahref="blog/sync-env-variables-across-environments.html" style="background:#121213;border:1px solid #1e1e20;border-radius:10px;padding:14px 18px;text-decoration:none;color:#ccc;font-size:0.85rem;transition:border-color .15s;">🛡️ Sync .env Files <spanstyle="color:#6366f1;">→</span></a>
<ahref="blog/api-mock-server-from-openapi-spec.html" style="background:#121213;border:1px solid #1e1e20;border-radius:10px;padding:14px 18px;text-decoration:none;color:#ccc;font-size:0.85rem;transition:border-color .15s;">👻 Mock API from OpenAPI <spanstyle="color:#6366f1;">→</span></a>
<ahref="blog/preview-infra-cost-before-deploy.html" style="background:#121213;border:1px solid #1e1e20;border-radius:10px;padding:14px 18px;text-decoration:none;color:#ccc;font-size:0.85rem;transition:border-color .15s;">☁️ Preview Infra Cost <spanstyle="color:#6366f1;">→</span></a>
<ahref="blog/json-to-sql-one-command.html" style="background:#121213;border:1px solid #1e1e20;border-radius:10px;padding:14px 18px;text-decoration:none;color:#ccc;font-size:0.85rem;transition:border-color .15s;">↻ JSON to SQL <spanstyle="color:#6366f1;">→</span></a>
<ahref="blog/catch-config-drift-before-production.html" style="background:#121213;border:1px solid #1e1e20;border-radius:10px;padding:14px 18px;text-decoration:none;color:#ccc;font-size:0.85rem;transition:border-color .15s;">⌘ Catch Config Drift <spanstyle="color:#6366f1;">→</span></a>
<ahref="blog/ai-built-cli-tools-zero-humans.html" style="background:#121213;border:1px solid #1e1e20;border-radius:10px;padding:14px 18px;text-decoration:none;color:#ccc;font-size:0.85rem;transition:border-color .15s;">🤖 Zero Human Developers Story <spanstyle="color:#6366f1;">→</span></a>
</div>
<pstyle="margin-top:20px;"><ahref="blog.html" style="color:#a78bfa;font-weight:500;">View all 37 articles →</a></p>
</div>
<!-- CTA -->
<divclass="cta-section">
<h2>Ready to ship safer?</h2>
<p>Install any tool in 30 seconds. Free tier, no credit card.</p>
<ahref="index.html" class="cta-btn">Explore Tools →</a>
</div>
<!-- Footer -->
<footer>
<span>© 2026 DevForge. Open-source developer tools.</span>
<ahref="">Home</a>
<ahref="pricing.html">Pricing</a>
<ahref="docs.html">Docs</a>
<ahref="blog.html">Blog</a>
<ahref="https://github.com/Coding-Dev-Tools" target="_blank">GitHub</a>
</footer>
</body>
</html>