Skip to content

Commit 9a80449

Browse files
krlvizegl
authored andcommitted
Codeball's level of automation
A page describing the levels of automation in coding and what users can expect from CODEBALL-1.
1 parent 41ad99b commit 9a80449

File tree

1 file changed

+114
-0
lines changed

1 file changed

+114
-0
lines changed

src/routes/what.svelte

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
<article class="font-mono">
2+
<h1 class="text-6xl font-black uppercase tracking-tight sm:text-8xl lg:text-9xl">
3+
Levels of Automation
4+
</h1>
5+
6+
<p class="text-xl text-gray-500 sm:max-w-3xl">
7+
A guide to how much the AI overlords have taken over, per the official
8+
<a href="https://en.wikipedia.org/wiki/Self-driving_car#SAE_classification" class="underline"
9+
>SAE (J3016) classification</a
10+
>. Codeball is currently a level 3 system.
11+
</p>
12+
13+
<div class="my-8 flex flex-col gap-16 lg:flex-row">
14+
<div class="flex flex-col gap-8">
15+
<table class="text-md table-fixed border-2 border-dashed border-slate-500 text-gray-500">
16+
<thead>
17+
<tr>
18+
<th class="border-2 border-dashed border-slate-500" />
19+
<th class="border-2 border-dashed border-slate-500 text-2xl font-bold text-gray-700"
20+
>CARS 🚙</th
21+
>
22+
<th class="border-2 border-dashed border-slate-500 text-2xl font-bold text-gray-700"
23+
>CODE 💻</th
24+
>
25+
</tr>
26+
</thead>
27+
<tbody>
28+
<tr class="h-24">
29+
<td class="border-2 border-dashed border-slate-500 p-2">
30+
<div class="text-2xl font-bold text-gray-700">L0</div>
31+
<div class="text-gray-500">No automation</div>
32+
</td>
33+
<td class="border-2 border-dashed border-slate-500 p-2"
34+
>You drive the car (like a savage). Crashes happen.</td
35+
>
36+
<td class="border-2 border-dashed border-slate-500 p-2"
37+
>No assistance. Humans perform all code checks out of memory. Bugs happen.</td
38+
>
39+
</tr>
40+
<tr class="h-24">
41+
<td class="border-2 border-dashed border-slate-500 p-2">
42+
<div class="text-2xl font-bold text-gray-700">L1</div>
43+
<div class="text-gray-500">Some assistance</div>
44+
</td>
45+
<td class="border-2 border-dashed border-slate-500 p-2"
46+
>Cruise control. Or lane assist. But not both, that's L2.</td
47+
>
48+
<td class="border-2 border-dashed border-slate-500 p-2"
49+
>Rule-based tools that identify common mistakes. Eg: code linters and formatters.</td
50+
>
51+
</tr>
52+
<tr class="h-24">
53+
<td class="border-2 border-dashed border-slate-500 p-2">
54+
<div class="text-2xl font-bold text-gray-700">L2</div>
55+
<div class="text-gray-500">Partial automation</div>
56+
</td>
57+
<td class="border-2 border-dashed border-slate-500 p-2"
58+
>Both cruse control and lane assist, with some smart breaking sprinkled in.</td
59+
>
60+
<td class="border-2 border-dashed border-slate-500 p-2"
61+
>Tools aware of the immediate code context. Eg: Auto-complete, Refactoring
62+
suggestions, static code analysis.</td
63+
>
64+
</tr>
65+
<tr>
66+
<td class="border-2 border-dashed border-slate-500 p-2">
67+
<div class="text-2xl font-bold text-gray-700">L3</div>
68+
<div class="text-gray-500">Conditional automation</div>
69+
</td>
70+
<td class="border-2 border-dashed border-slate-500 p-2"
71+
>An AI drives the car when the conditions are right. You have to take over if the car
72+
gets confused. Eg: Tesla</td
73+
>
74+
<td class="border-2 border-dashed border-slate-500 p-2">
75+
The AI reviews and approves code contributions based on the repository context. You
76+
have to review the tricky pull requests yourself.
77+
<span class="font-extrabold text-gray-700">CODEBALL-1</span> is here.
78+
</td>
79+
</tr>
80+
<tr class="h-24">
81+
<td class="border-2 border-dashed border-slate-500 p-2">
82+
<div class="text-2xl font-bold text-gray-700">L4</div>
83+
<div class="text-gray-500">High automation</div>
84+
</td>
85+
<td class="border-2 border-dashed border-slate-500 p-2"
86+
>You can Netflix and relax while the car drives you, but it doesn't go everywhere. Eg:
87+
Waymo</td
88+
>
89+
<td class="border-2 border-dashed border-slate-500 p-2">
90+
The AI informs you of the exact impact of your code based on the production context.
91+
It tells you what's wrong with your code and how to fix it.
92+
</td>
93+
</tr>
94+
<tr class="h-24">
95+
<td class="border-2 border-dashed border-slate-500 p-2">
96+
<div class="text-2xl font-bold text-gray-700">L5</div>
97+
<div class="text-gray-500">Full automation</div>
98+
</td>
99+
<td class="border-2 border-dashed border-slate-500 p-2"
100+
>Goes everywhere by itself. Basically, Skynet.</td
101+
>
102+
<td class="border-2 border-dashed border-slate-500 p-2">You are now unemployed.</td>
103+
</tr>
104+
</tbody>
105+
</table>
106+
107+
<ul class="flex gap-2">
108+
<li>[<a href="/">index</a>]</li>
109+
<li>[<a href="/faq">faq</a>]</li>
110+
<li>[<a href="https://github.com/sturdy-dev/codeball-action">github action</a>]</li>
111+
</ul>
112+
</div>
113+
</div>
114+
</article>

0 commit comments

Comments
 (0)