oh-my-til 1.6.0 → 1.6.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.ko.md CHANGED
@@ -147,7 +147,7 @@ MCP 서버 연결 시 Claude Code에서 사용할 수 있는 도구:
147
147
  | **til** | `/til <주제> [카테고리]` | 주제 리서치 → 대화형 학습 → TIL 저장 |
148
148
  | **research** | `/research <주제> [카테고리]` | 주제를 리서치하여 학습 백로그 생성 |
149
149
  | **backlog** | `/backlog [카테고리]` | 학습 백로그 조회 및 진행 상황 요약 |
150
- | **save** | *(/til에서 자동 호출)* | TIL 마크다운 저장 + Daily 노트, MOC, 백로그 연동 |
150
+ | **save** | *(/til에서 자동 호출)* | TIL 마크다운 저장 + MOC, 백로그 연동 |
151
151
  | **til-review** | `/til-review [카테고리]` | SRS 기반 간격 반복 복습 세션 (SM-2 알고리즘) |
152
152
  | **til-lint** | `/til-lint [카테고리]` | TIL 위키 상태 점검 — frontmatter 누락, 깨진 링크, 고아 TIL, 미처리 raw 자료 |
153
153
  | **dashboard** | `/dashboard` | 학습 대시보드 — 통계, 활동 히트맵, 카테고리, 백로그 진행률 |
@@ -226,7 +226,7 @@ src/
226
226
  - [ ] 대시보드 백로그 진행률 바
227
227
  - [ ] TIL 폴더 경로 커스터마이즈
228
228
  - [ ] 리치 대시보드 — 최근 TIL 목록, 학습 스트릭, 주간 요약
229
- - [ ] 동적 코드 블록 (`til-moc`, `til-daily`) — Dataview 없이 TIL 목록 자동 렌더링
229
+ - [ ] 동적 코드 블록 (`til-moc`) — Dataview 없이 TIL 목록 자동 렌더링
230
230
  - [ ] 멀티 터미널 탭 — 여러 Claude Code 세션 동시 실행
231
231
  - [ ] 노트 링크 통합 — 관련 노트에 백링크 자동 삽입
232
232
 
package/README.md CHANGED
@@ -147,7 +147,7 @@ The plugin auto-installs these skills to `.claude/skills/`:
147
147
  | **til** | `/til <topic> [category]` | Research a topic → interactive learning → save TIL |
148
148
  | **research** | `/research <topic> [category]` | Research a topic and create a learning backlog |
149
149
  | **backlog** | `/backlog [category]` | View learning backlog and progress |
150
- | **save** | *(auto-invoked by /til)* | Save TIL markdown with Daily note, MOC, and backlog updates |
150
+ | **save** | *(auto-invoked by /til)* | Save TIL markdown with MOC and backlog updates |
151
151
  | **til-review** | `/til-review [category]` | SRS-based spaced repetition review session (SM-2 algorithm) |
152
152
  | **til-lint** | `/til-lint [category]` | TIL wiki health-check — missing frontmatter, broken links, orphan TILs, unprocessed raw sources |
153
153
  | **dashboard** | `/dashboard` | Learning dashboard — stats, activity heatmap, categories, backlog progress |
@@ -226,7 +226,7 @@ src/
226
226
  - [ ] Backlog progress bars in dashboard
227
227
  - [ ] Configurable TIL folder path
228
228
  - [ ] Rich dashboard — recent TILs, streaks, weekly summary
229
- - [ ] Dynamic code blocks (`til-moc`, `til-daily`) — auto-render TIL lists without Dataview
229
+ - [ ] Dynamic code blocks (`til-moc`) — auto-render TIL lists without Dataview
230
230
  - [ ] Multi-terminal tabs — run multiple Claude Code sessions
231
231
  - [ ] Note linking — auto-insert backlinks to related notes
232
232
 
package/dist/cli.js CHANGED
@@ -39984,7 +39984,7 @@ function generateProfileHtml(config2, summaryCardsHtml, heatmapHtml, recentTilsH
39984
39984
  // src/cli/index.ts
39985
39985
  var path5 = __toESM(require("path"));
39986
39986
  var fs4 = __toESM(require("fs"));
39987
- var VERSION = true ? "1.6.0" : "0.0.0";
39987
+ var VERSION = true ? "1.6.1" : "0.0.0";
39988
39988
  function printUsage() {
39989
39989
  console.log(`oh-my-til v${VERSION}
39990
39990
 
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "oh-my-til",
3
3
  "name": "Oh My TIL",
4
- "version": "1.6.0",
4
+ "version": "1.6.1",
5
5
  "minAppVersion": "1.5.0",
6
6
  "description": "Embedded Claude Code terminal for TIL learning workflows",
7
7
  "author": "SongYunSeop",
package/migrate-links.mjs CHANGED
@@ -54,7 +54,7 @@ function hasWikilinks(content) {
54
54
  }
55
55
 
56
56
  // scripts/migrate-links.ts
57
- var TARGET_DIRS = ["til", "Daily"];
57
+ var TARGET_DIRS = ["til"];
58
58
  function collectMarkdownFiles(vaultPath2) {
59
59
  const files = [];
60
60
  for (const dir of TARGET_DIRS) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-til",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Oh My TIL \u2014 Claude Code plugin for TIL learning workflow, with Obsidian integration",
5
5
  "main": "main.js",
6
6
  "bin": {