# arXiv Submission Package — capx-paper-2026-04

> 사용자가 https://arxiv.org/submit 에서 직접 업로드할 자료입니다. v1 hypothesis-framed paper 기준 메타데이터와 절차 가이드입니다.

## 1. Tar 만들기 (업로드 직전)

```bash
cd /Users/ryeol-13/GitHub/oh-my-cap-x/docs/paper
PDFLATEX=/Users/ryeol-13/Library/TinyTeX/bin/universal-darwin/pdflatex
$PDFLATEX -interaction=nonstopmode capx-paper-2026-04.tex
$PDFLATEX -interaction=nonstopmode capx-paper-2026-04.tex

cp capx-paper-2026-04.tex arxiv-submission/
cp capx-paper-2026-04.pdf arxiv-submission/
rsync -a --delete figures/*.pdf arxiv-submission/figures/
cd arxiv-submission
tar czf capx-paper-arxiv.tar.gz capx-paper-2026-04.tex figures/*.pdf
ls -lh capx-paper-arxiv.tar.gz
```

PDF는 검증용입니다. arXiv upload에는 `capx-paper-arxiv.tar.gz`를 사용하십시오. tar 안에는 TeX source와 실제 사용 figure PDF만 넣습니다.

## 2. arXiv 메타데이터 (제출 폼 입력값)

### Title
```
When Auto-Mined Robot Skills Help: A CaP-X-Style Ablation of Executable Skill Libraries
```

### Authors
```
realkim93 (capx, independent)
```

AI assistance는 paper Acknowledgements에 disclosure되어 있습니다. arXiv Authors field에는 Claude/Anthropic을 저자로 넣지 마십시오.

### Abstract (arXiv metadata, <1920 chars)
```
We test whether an LLM-controlled robot code-generation agent benefits from executable skills mined from its own prior programs. Starting from NVIDIA CaP-X, capx adds a skill-memory layer to a Code-as-Policies-style cube_lifting pipeline: generated Python functions are extracted by AST, filtered, optionally deduplicated, and reinjected into later prompts and execution namespaces. The no-skills baseline P21_a reaches 39/50 = 78.0% (Wilson 95% CI [64.8, 87.2]). No-dedup mined-skill conditions reach 67/70 = 95.7% and 68/70 = 97.1%, beating baseline by about +18 to +19 percentage points with disjoint CIs. A typed-empty stub control reaches 13/30 = 43.3%, showing that executable function bodies, not just namespace scaffolding, matter. The production structural-hash dedup condition reaches only 58/70 = 82.9%, statistically indistinguishable from baseline and 14 points below C2. A same-size manual 11-skill selection reaches 66/70 = 94.3%, suggesting that the dedup loss is a survivor-selection problem rather than a size limit. Held-out cube_stack and LIBERO tests floor, so transfer remains open. Claude and DeepSeek C2 endpoints are high but lack matched no-skills baselines. v1 therefore supports a bounded claim: auto-mined executable skills help this cube_lifting pipeline under no-dedup selection, but current dedup can erase the benefit.
```

### Primary Category
```
cs.RO  (Robotics)
```

### Secondary Categories
```
cs.AI  (Artificial Intelligence)
cs.LG  (Machine Learning)
```

### Comments (arXiv comment field)
```
10 pages, 8 figures, 8 references. CaP-X-style robot code-generation ablation of executable mined-skill libraries, with explicit transfer and baseline-delta limits. Open-sourced at https://github.com/realkim93/oh-my-cap-x. AI assistance disclosed in Acknowledgements.
```

### License
```
arXiv perpetual non-exclusive license to distribute
```

또는 더 permissive하게 배포하려면 `CC BY 4.0` 선택.

### ACM Class (optional)
```
ACM: I.2.9 (Robotics), I.2.6 (Learning)
```

## 3. 업로드 절차

1. https://arxiv.org/submit 접속 (계정 필요 — endorsement 필요할 수 있음)
2. **Start a new submission**
3. **Step 1 — License**: 위 license 선택
4. **Step 2 — Categories**: cs.RO primary, cs.AI + cs.LG secondary
5. **Step 3 — Authors / Title / Abstract / Comments**: 위 메타데이터 입력
6. **Step 4 — Upload**: `capx-paper-arxiv.tar.gz` upload
7. **Step 5 — Process**: arXiv server-side compile 확인
8. **Step 6 — Preview**: PDF page count, figures, refs, AI assistance disclosure, author field 확인
9. **Step 7 — Submit**

## 4. Endorsement 주의

cs.RO 첫 제출이면 arXiv가 endorsement를 요구할 수 있습니다. 가능한 경로:

- 같은 카테고리(cs.RO) 기존 arXiv author에게 endorsement 요청
- 소속기관 endorsement가 가능하면 institutional route 사용
- 연구 포커스에 따라 cs.AI/cs.LG primary를 검토하되, robotics 실험이 핵심이면 cs.RO 유지 권장

## 5. 제출 후 repo 업데이트

- arXiv id를 받으면 `docs/paper/README.md`, paper front matter 또는 repo README에 arXiv link 추가
- `docs/capx-current-status.md`와 `docs/capx-log.md`에 submitted/announced 상태 append
- 필요하면 paper citation snippet 추가

## 6. 본 패키지 내용

- `capx-paper-2026-04.tex` — main LaTeX source
- `figures/*.pdf` — paper에서 사용하는 8개 PDF figure
- `capx-paper-2026-04.pdf` — local compile 검증용, tar에는 넣지 않음
- `SUBMISSION_README.md` — 본 가이드, tar에는 넣지 않음

## 7. 컴파일 의존성

paper가 사용하는 주요 패키지:

- IEEEtran, cite, amsmath, amssymb, amsfonts, algorithm, algorithmic
- graphicx, booktabs, subcaption, tikz, xcolor, url, hyperref

추가 custom `.sty`나 external data file은 필요 없습니다. References는 `thebibliography`로 paper source 안에 inline 포함되어 있습니다.

## 8. 최종 sanity checklist

- [ ] arXiv Authors field가 `realkim93` 단독인지 확인
- [ ] metadata abstract가 1920자 미만인지 확인
- [ ] Comments가 10 pages / 8 figures / 8 references인지 확인
- [ ] PDF preview에서 Table 2, Figure 3, Figure 6가 최종 n=70 수치와 일치하는지 확인
- [ ] Acknowledgements의 AI assistance disclosure 확인
- [ ] arXiv server-side PDF와 local PDF가 내용상 동일한지 확인
