@tmddev/tmd 0.2.0 → 0.3.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.md CHANGED
@@ -200,7 +200,7 @@ This principle ensures tasks are:
200
200
 
201
201
  ### Setup and Dashboard
202
202
 
203
- - `tmd init [path]` - Initialize TMD in your project (creates `tmd/` and `schemas/pdca/` when missing; default path `.`)
203
+ - `tmd init [path]` - Initialize TMD in your project (creates `.tmd/` and `schemas/pdca/` when missing; default path `.`)
204
204
  - `tmd view` - Display a dashboard of tasks by phase and status
205
205
  - `tmd validate [task-id]` - Validate task documents or PDCA schemas
206
206
  - `--schemas [name]` - Validate schemas only (name optional)
@@ -280,7 +280,7 @@ This creates a skill with:
280
280
  ### Example: README Generation Skill
281
281
 
282
282
  ```yaml
283
- # tmd/skills/generate-readme-multilang/metadata.yaml
283
+ # .tmd/skills/generate-readme-multilang/metadata.yaml
284
284
  name: generate-readme-multilang
285
285
  version: 1.0.0
286
286
  description: Generate README files in multiple languages
@@ -413,7 +413,7 @@ This:
413
413
  ## Directory Structure
414
414
 
415
415
  ```
416
- tmd/
416
+ .tmd/
417
417
  ├── plan/
418
418
  │ └── [task-id]/
419
419
  │ ├── plan.md
package/dist/tmd-skills CHANGED
Binary file
@@ -1,6 +1,6 @@
1
1
  import { join } from 'path';
2
2
  import { existsSync, mkdirSync } from 'fs';
3
- const TMD_DIR = 'tmd';
3
+ const TMD_DIR = '.tmd';
4
4
  export function getTmdDir() {
5
5
  return TMD_DIR;
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmddev/tmd",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Task Markdown Driven - A lightweight PDCA cycle management framework integrated with OpenSpec",
5
5
  "type": "module",
6
6
  "publishConfig": {