@justinforfun/redo-skill 0.1.0 → 0.1.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.
- package/README.md +50 -0
- package/package.json +12 -1
- package/skills/redo/README.md +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# redo skill
|
|
2
|
+
|
|
3
|
+
Reverse-learn any programming technology, framework, tool, or infrastructure system by reconstructing its evolution through real engineering constraints, trade-offs, technical debt, later fixes, and unresolved pain points.
|
|
4
|
+
|
|
5
|
+
> Every mature system is a fossil record of the constraints it survived.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @justinforfun/redo-skill
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The installer supports:
|
|
14
|
+
|
|
15
|
+
- Codex
|
|
16
|
+
- Codex CLI
|
|
17
|
+
- Claude Code
|
|
18
|
+
|
|
19
|
+
## Invocation
|
|
20
|
+
|
|
21
|
+
```text
|
|
22
|
+
Claude Code: /redo kafka
|
|
23
|
+
Codex: $redo kafka, redo kafka, or select redo from the skill picker
|
|
24
|
+
Codex CLI: $redo kafka, redo kafka, or /skills then choose redo
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Language
|
|
28
|
+
|
|
29
|
+
`redo` replies in the user's current conversation language by default.
|
|
30
|
+
|
|
31
|
+
Use explicit language flags when needed:
|
|
32
|
+
|
|
33
|
+
```text
|
|
34
|
+
redo kafka --lang en
|
|
35
|
+
redo kafka --lang zh
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## What redo Produces
|
|
39
|
+
|
|
40
|
+
For each technology, `redo` reconstructs:
|
|
41
|
+
|
|
42
|
+
- The core evolution stages
|
|
43
|
+
- The engineering constraint at each stage
|
|
44
|
+
- Candidate options and their costs
|
|
45
|
+
- Why the chosen design won
|
|
46
|
+
- Key trade-offs
|
|
47
|
+
- Technical debt introduced
|
|
48
|
+
- Debt that was later resolved
|
|
49
|
+
- Pain points that still remain
|
|
50
|
+
- A final causal chain that connects the system's history
|
package/package.json
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justinforfun/redo-skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Install the redo skill for Codex, Codex CLI, and Claude Code.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"ai",
|
|
8
|
+
"skill",
|
|
9
|
+
"codex",
|
|
10
|
+
"codex-cli",
|
|
11
|
+
"claude-code",
|
|
12
|
+
"redo",
|
|
13
|
+
"reverse-learning",
|
|
14
|
+
"engineering-tradeoffs"
|
|
15
|
+
],
|
|
6
16
|
"bin": {
|
|
7
17
|
"redo-skill": "bin/install.js"
|
|
8
18
|
},
|
|
9
19
|
"files": [
|
|
20
|
+
"README.md",
|
|
10
21
|
"bin/",
|
|
11
22
|
"skills/redo/"
|
|
12
23
|
],
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# redo skill
|
|
2
|
+
|
|
3
|
+
Reverse-learn any programming technology, framework, tool, or infrastructure system by reconstructing its evolution through real engineering constraints, trade-offs, technical debt, later fixes, and unresolved pain points.
|
|
4
|
+
|
|
5
|
+
> Every mature system is a fossil record of the constraints it survived.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @justinforfun/redo-skill
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The installer supports:
|
|
14
|
+
|
|
15
|
+
- Codex
|
|
16
|
+
- Codex CLI
|
|
17
|
+
- Claude Code
|
|
18
|
+
|
|
19
|
+
## Invocation
|
|
20
|
+
|
|
21
|
+
```text
|
|
22
|
+
Claude Code: /redo kafka
|
|
23
|
+
Codex: $redo kafka, redo kafka, or select redo from the skill picker
|
|
24
|
+
Codex CLI: $redo kafka, redo kafka, or /skills then choose redo
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Language
|
|
28
|
+
|
|
29
|
+
`redo` replies in the user's current conversation language by default.
|
|
30
|
+
|
|
31
|
+
Use explicit language flags when needed:
|
|
32
|
+
|
|
33
|
+
```text
|
|
34
|
+
redo kafka --lang en
|
|
35
|
+
redo kafka --lang zh
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## What redo Produces
|
|
39
|
+
|
|
40
|
+
For each technology, `redo` reconstructs:
|
|
41
|
+
|
|
42
|
+
- The core evolution stages
|
|
43
|
+
- The engineering constraint at each stage
|
|
44
|
+
- Candidate options and their costs
|
|
45
|
+
- Why the chosen design won
|
|
46
|
+
- Key trade-offs
|
|
47
|
+
- Technical debt introduced
|
|
48
|
+
- Debt that was later resolved
|
|
49
|
+
- Pain points that still remain
|
|
50
|
+
- A final causal chain that connects the system's history
|