ai-nexus 1.4.8 → 1.5.0
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 +14 -1
- package/README.md +14 -1
- package/package.json +1 -1
package/README.ko.md
CHANGED
|
@@ -21,7 +21,7 @@ npx ai-nexus install
|
|
|
21
21
|
|
|
22
22
|
AI 코딩 도구마다 룰 형식이 다릅니다 — `.claude/rules/*.md`, `.cursor/rules/*.mdc`, `.codex/AGENTS.md`. 같은 룰을 여러 곳에 관리하다 보면 결국 서로 달라집니다. 게다가 매 프롬프트마다 모든 룰이 로드되어 불필요한 토큰이 낭비됩니다.
|
|
23
23
|
|
|
24
|
-
[ETH Zurich의 최근 연구](https://arxiv.org/pdf/2602.11988) (
|
|
24
|
+
[ETH Zurich의 최근 연구](https://arxiv.org/pdf/2602.11988) (12개 레포, 5,694개 PR 대상)가 이를 확인합니다: **모든 룰을 한꺼번에 로드하면 성능이 ~3% 하락하고 비용은 20% 이상 증가합니다.** 사람이 직접 작성한 컨텍스트 파일도 30줄 이하일 때만 4% 개선 효과가 있었습니다. 결론: 프롬프트마다 관련 룰만 로드해야 합니다.
|
|
25
25
|
|
|
26
26
|
## 해결
|
|
27
27
|
|
|
@@ -396,6 +396,19 @@ node bin/ai-nexus.cjs test "your prompt"
|
|
|
396
396
|
|
|
397
397
|
---
|
|
398
398
|
|
|
399
|
+
## FAQ
|
|
400
|
+
|
|
401
|
+
**Claude Code 스킬(`alwaysApply: false`)이랑 뭐가 다른가요?**
|
|
402
|
+
|
|
403
|
+
스킬은 이미 Claude Code 안에서 필요할 때만 로딩해줍니다. ai-nexus는 다른 유스케이스를 위한 거예요:
|
|
404
|
+
- **여러 툴** (Claude Code + Cursor + Codex)을 같이 쓰면서 룰을 한 곳에서 관리하고 싶을 때
|
|
405
|
+
- **230개 이상 커뮤니티 룰**을 직접 안 쓰고 바로 가져다 쓰고 싶을 때
|
|
406
|
+
- Claude 대신 **키워드 매칭(무료)** 이나 **더 저렴한 모델**로 라우팅하고 싶을 때
|
|
407
|
+
|
|
408
|
+
Claude Code만 쓰고 스킬로 충분하면 ai-nexus가 필요 없을 수도 있습니다.
|
|
409
|
+
|
|
410
|
+
---
|
|
411
|
+
|
|
399
412
|
## 지원하기
|
|
400
413
|
|
|
401
414
|
ai-nexus가 유용하셨다면 GitHub에서 ⭐을 눌러주세요 — 더 많은 사람들이 프로젝트를 발견하고, 개발을 이어가는 데 큰 힘이 됩니다.
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ npx ai-nexus install
|
|
|
21
21
|
|
|
22
22
|
Every AI coding tool has its own rule format — `.claude/rules/*.md`, `.cursor/rules/*.mdc`, `.codex/AGENTS.md`. You end up maintaining the same rules in multiple places, and they inevitably drift apart. On top of that, every prompt loads all your rules, wasting tokens on irrelevant context.
|
|
23
23
|
|
|
24
|
-
A [recent study from ETH Zurich](https://arxiv.org/pdf/2602.11988) (
|
|
24
|
+
A [recent study from ETH Zurich](https://arxiv.org/pdf/2602.11988) (12 repos, 5,694 PRs) confirms this: **loading all rules at once hurts performance by ~3% and increases cost by 20%+.** Even hand-written context files only helped by 4% — and only when kept under 30 lines. The takeaway: less is more, and only relevant rules should be loaded per prompt.
|
|
25
25
|
|
|
26
26
|
## The Solution
|
|
27
27
|
|
|
@@ -396,6 +396,19 @@ node bin/ai-nexus.cjs test "your prompt"
|
|
|
396
396
|
|
|
397
397
|
---
|
|
398
398
|
|
|
399
|
+
## FAQ
|
|
400
|
+
|
|
401
|
+
**How is this different from Claude Code skills (`alwaysApply: false`)?**
|
|
402
|
+
|
|
403
|
+
Skills already handle on-demand loading within Claude Code. ai-nexus is for a different use case:
|
|
404
|
+
- You use **multiple tools** (Claude Code + Cursor + Codex) and want one set of rules
|
|
405
|
+
- You want **230+ community rules** without writing everything from scratch
|
|
406
|
+
- You prefer routing via **keyword matching (free)** or a **cheaper model** instead of Claude
|
|
407
|
+
|
|
408
|
+
If you only use Claude Code and skills cover your needs, you may not need ai-nexus.
|
|
409
|
+
|
|
410
|
+
---
|
|
411
|
+
|
|
399
412
|
## Support
|
|
400
413
|
|
|
401
414
|
If you find ai-nexus useful, give it a ⭐ on GitHub — it helps others discover the project and motivates continued development.
|
package/package.json
CHANGED