codiedev 0.5.0 → 0.5.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.
Files changed (2) hide show
  1. package/dist/cli.js +49 -13
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -62,15 +62,26 @@ Other:
62
62
  codiedev docs Print the full usage guide
63
63
  codiedev version Show version
64
64
 
65
- Filename conventions:
66
- spec-*.md → spec review-*.md review
67
- decision-*.md → decision proposal-*.md → proposal
68
- bugfix-*.md → bugfix anything else → note
65
+ The 90% workflow:
66
+ 1. Name your file 'spec-<topic>.md' and push.
67
+ 2. Ping a teammate to pull review.
68
+ 3. They edit, push back. Versions stack. Done.
69
+
70
+ Other artifact types (rare — use the matching prefix):
71
+ review-*.md → review decision-*.md → decision
72
+ proposal-*.md → proposal bugfix-*.md → bugfix
73
+ anything else → note
74
+
75
+ Skills (slash commands):
76
+ Add 'name:' + 'description:' YAML frontmatter to any pushed file
77
+ and it shows up as /<name> in Claude Code / Codex. Filename
78
+ prefix doesn't matter — frontmatter is the signal.
69
79
 
70
80
  Examples:
71
- codiedev push docs/specs/spec-cart-clear.md
81
+ codiedev push spec-cart-clear.md # the typical case
82
+ codiedev push portal-design.md # with name:/description: → skill
72
83
  codiedev pull spec-cart-clear.md
73
- codiedev ping maya "thoughts on batch vs parallel?" --with spec-cart-clear.md
84
+ codiedev ping maya "thoughts?" --with spec-cart-clear.md
74
85
  codiedev inbox --unread
75
86
  codiedev note "idempotency key is worth a follow-up"
76
87
 
@@ -96,17 +107,23 @@ codiedev connect — link your agent CLI to CodieDev
96
107
  push: `
97
108
  codiedev push — author or update an artifact
98
109
 
99
- Usage:
100
- codiedev push <file.md> [--type spec|review|decision|proposal|bugfix|note]
110
+ Default path:
111
+ codiedev push spec-<topic>.md
101
112
 
102
- The file's basename becomes its key (unique per company). Pushing the
103
- same key again creates a new version — full history is preserved.
113
+ The file's basename becomes its key (unique per company). Pushing
114
+ the same key again versions it — full history is preserved.
104
115
 
105
- Type is inferred from the filename prefix unless you override with --type.
116
+ Other types: rename with the matching prefix (review-*, decision-*,
117
+ proposal-*, bugfix-*) or pass --type. Anything else lands as 'note'.
118
+
119
+ Skills (slash commands): add 'name:' + 'description:' YAML
120
+ frontmatter to the top of the file. It shows up as /<name> in
121
+ the Skills tab. Filename prefix doesn't matter for the skill role.
106
122
 
107
123
  Examples:
108
- codiedev push spec-cart-clear.md
109
- codiedev push docs/review-auth.md --type review
124
+ codiedev push spec-cart-clear.md # the typical case
125
+ codiedev push portal-design.md # with name:/description: → skill
126
+ codiedev push docs/review-auth.md
110
127
  codiedev push notes/random.md --type note
111
128
  `.trim(),
112
129
  pull: `
@@ -244,6 +261,25 @@ Artifacts have a status that auto-advances as PRs reference them:
244
261
  Artifacts stay editable at every stage, including after merge —
245
262
  lessons-learned and follow-up notes append as new versions.
246
263
 
264
+ ## Skills
265
+
266
+ Default path:
267
+
268
+ 1. Pick a name: e.g. portal-design
269
+ 2. Top the file with frontmatter:
270
+ ---
271
+ name: portal-design
272
+ description: Use when reviewing or building portal UI.
273
+ ---
274
+ # body...
275
+ 3. codiedev push portal-design.md
276
+
277
+ It's now /portal-design in Claude Code / Codex.
278
+
279
+ Filename prefix is irrelevant for skills — frontmatter is the only
280
+ signal. The stored artifact type still follows the filename rule
281
+ (so a skill in a spec file is both a 'spec' and a callable skill).
282
+
247
283
  ## Portal
248
284
 
249
285
  Everything you do in the CLI is visible at:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codiedev",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Connect Claude Code or Codex to CodieDev for org-wide session capture and artifact collaboration",
5
5
  "bin": {
6
6
  "codiedev": "./dist/cli.js",