@c-d-cc/reap 0.1.0 → 0.1.2

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.ko.md CHANGED
@@ -11,9 +11,15 @@
11
11
 
12
12
  > For English version, see [README.md](README.md).
13
13
 
14
- ```
15
- Genome (설계와 지식) → Evolution (세대를 거친 진화) → Civilization (Source Code)
16
- ```
14
+ <table align="center">
15
+ <tr>
16
+ <td align="center"><strong>Genome</strong><br><sub>설계와 지식</sub></td>
17
+ <td align="center">→</td>
18
+ <td align="center"><strong>Evolution</strong><br><sub>세대를 거친 진화</sub></td>
19
+ <td align="center">→</td>
20
+ <td align="center"><strong>Civilization</strong><br><sub>Source Code</sub></td>
21
+ </tr>
22
+ </table>
17
23
 
18
24
  REAP은 Application의 유전 정보(Genome)를 정의하고, 각 세대에서 목표를 설정하여 구현하고, 그 과정에서 발견한 Genome 결함을 다음 단계에서 반영합니다. 세대를 거듭하며 Genome이 진화하고, Source Code(Civilization)가 성장합니다.
19
25
 
package/README.md CHANGED
@@ -11,9 +11,15 @@
11
11
 
12
12
  > 한국어 버전은 [README.ko.md](README.ko.md)를 참조하세요.
13
13
 
14
- ```
15
- Genome (Design & Knowledge) → Evolution (Generational Progress) → Civilization (Source Code)
16
- ```
14
+ <table align="center">
15
+ <tr>
16
+ <td align="center"><strong>Genome</strong><br><sub>Design & Knowledge</sub></td>
17
+ <td align="center">→</td>
18
+ <td align="center"><strong>Evolution</strong><br><sub>Generational Progress</sub></td>
19
+ <td align="center">→</td>
20
+ <td align="center"><strong>Civilization</strong><br><sub>Source Code</sub></td>
21
+ </tr>
22
+ </table>
17
23
 
18
24
  REAP defines an application's genetic information (Genome), sets objectives for each generation to implement, and feeds back any Genome defects discovered along the way into subsequent stages. As generations accumulate, the Genome evolves and the Source Code (Civilization) grows.
19
25
 
package/dist/cli.js CHANGED
@@ -9863,7 +9863,7 @@ async function fixProject(projectRoot) {
9863
9863
 
9864
9864
  // src/cli/index.ts
9865
9865
  import { join as join7 } from "path";
9866
- program.name("reap").description("REAP — Recursive Evolutionary Autonomous Pipeline").version("0.1.0");
9866
+ program.name("reap").description("REAP — Recursive Evolutionary Autonomous Pipeline").version("0.1.2");
9867
9867
  program.command("init").description("Initialize a new REAP project (Genesis)").argument("[project-name]", "Project name (defaults to current directory name)").option("-m, --mode <mode>", "Entry mode: greenfield, migration, adoption", "greenfield").option("-p, --preset <preset>", "Bootstrap with a genome preset (e.g., bun-hono-react)").action(async (projectName, options) => {
9868
9868
  try {
9869
9869
  const cwd = process.cwd();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-d-cc/reap",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Recursive Evolutionary Autonomous Pipeline — AI and humans evolve software across generations",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -9,7 +9,7 @@
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/c-d-cc/reap.git"
11
11
  },
12
- "homepage": "https://github.com/c-d-cc/reap",
12
+ "homepage": "https://reap.cc",
13
13
  "keywords": [
14
14
  "ai",
15
15
  "development",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "scripts": {
32
32
  "dev": "bun run src/cli/index.ts",
33
- "build": "bun build src/cli/index.ts --outfile dist/cli.js --target node && rm -rf dist/templates && cp -r src/templates dist/templates",
33
+ "build": "node scripts/build.js",
34
34
  "prepublishOnly": "npm run build",
35
35
  "test": "bun test"
36
36
  },