@undeemed/get-shit-done-codex 1.23.0 → 1.23.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.md CHANGED
@@ -5,7 +5,7 @@ A meta-prompting, context engineering and spec-driven development system for [Op
5
5
  Fork of [get-shit-done](https://github.com/taches/get-shit-done) by TÂCHES, adapted for Codex CLI by [undeemed](https://github.com/undeemed).
6
6
 
7
7
  > [!CAUTION]
8
- > Codex is now supported upstream. This fork remains focused on Codex-specific UX, compatibility, and cutting-edge experimental features.
8
+ > Codex is now supported upstream. This fork remains focused on Codex-specific UX, compatibility, and experimental features for personal use.
9
9
 
10
10
  [![CI](https://github.com/undeemed/get-shit-done-codex/actions/workflows/ci.yml/badge.svg)](https://github.com/undeemed/get-shit-done-codex/actions/workflows/ci.yml)
11
11
  [![npm version](https://img.shields.io/npm/v/%40undeemed%2Fget-shit-done-codex?style=flat-square)](https://www.npmjs.com/package/@undeemed/get-shit-done-codex)
package/bin/install.js CHANGED
@@ -109,7 +109,7 @@ function applyReplacements(content, pathPrefix) {
109
109
  content = content.replace(/Codex CLI/g, 'Codex CLI');
110
110
  content = content.replace(/Codex/g, 'Codex');
111
111
 
112
- content = content.replace(/\/gsd:/g, '/prompts:gsd-');
112
+ content = content.replace(/\/gsd:([a-z0-9-]*)/gi, (_, cmd) => `$gsd-${cmd.toLowerCase()}`);
113
113
 
114
114
  // Keep update workflows pointed to this fork's npm package/repo.
115
115
  content = content.replace(new RegExp(UPSTREAM_PACKAGE, 'g'), NPM_PACKAGE);
@@ -512,14 +512,15 @@ function installCore(isGlobal, migrationPlan, applyMigration, done = () => {}, t
512
512
  console.log(` ${green}✓${reset} Installed get-shit-done/ workflow files`);
513
513
  console.log(` ${green}✓${reset} Wrote get-shit-done/VERSION (${pkg.version})`);
514
514
 
515
+ const displayRoot = locationLabel.endsWith('/') ? locationLabel.slice(0, -1) : locationLabel;
515
516
  console.log(`
516
517
  ${green}Done!${reset}
517
518
 
518
519
  ${yellow}For Codex (CLI + Desktop):${reset}
519
- - AGENTS.md: ${cyan}${codexDir}/AGENTS.md${reset}
520
- - Native skills: ${cyan}${codexDir}/skills/gsd-*/SKILL.md${reset}
521
- - Config: ${cyan}${codexDir}/.codex/config.toml${reset}
522
- - Agent defs: ${cyan}${codexDir}/agents/gsd-*.md${reset}
520
+ - AGENTS.md: ${cyan}${displayRoot}/AGENTS.md${reset}
521
+ - Native skills: ${cyan}${displayRoot}/skills/gsd-*/SKILL.md${reset}
522
+ - Config: ${cyan}${displayRoot}/.codex/config.toml${reset}
523
+ - Agent defs: ${cyan}${displayRoot}/agents/gsd-*.md${reset}
523
524
 
524
525
  ${yellow}Getting Started:${reset}
525
526
  1. Run ${cyan}codex${reset} (CLI) or ${cyan}codex app${reset} (Desktop)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@undeemed/get-shit-done-codex",
3
- "version": "1.23.0",
3
+ "version": "1.23.1",
4
4
  "description": "A meta-prompting, context engineering and spec-driven development system for OpenAI Codex (CLI and Desktop). Fork of get-shit-done by TÂCHES, adapted for Codex.",
5
5
  "bin": {
6
6
  "get-shit-done-codex": "bin/install.js"