prjct-cli 3.9.0 → 3.11.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/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [3.11.0] - 2026-06-29
6
+
7
+ ### Added
8
+ - harness pillars
9
+
10
+ ## [3.10.0] - 2026-06-29
11
+
12
+ ### Added
13
+ - hacer que prjct sea el mejor harness agéntico del mercado para devs: estructura de workspace, bucle de agentes, arquitectura multi-agente, skills/comandos, y soberanía del rig (modelo intercambiable)
14
+
5
15
  ## [3.9.0] - 2026-06-28
6
16
 
7
17
  ### Added
package/bin/prjct CHANGED
@@ -107,13 +107,13 @@ ensure_setup() {
107
107
  fi
108
108
  fi
109
109
 
110
- # Ensure prjct skill is installed where Claude / Codex can see it.
110
+ # Ensure prjct skill is installed where Claude can see it.
111
111
  # postinstall is unreliable (--ignore-scripts, npm policies), so the
112
112
  # bin shim self-heals on every invocation. mtime-based: source newer
113
113
  # than dest → overwrite. Common case (skill up-to-date) = two stats.
114
- # Each agent gets ITS OWN template: Codex enforces a hard ~1KB limit
115
- # on the whole SKILL.md and silently rejects the entire skill when
116
- # the (much larger) Claude baseline lands there.
114
+ # Codex skill installation is handled by the TypeScript setup path, which
115
+ # synthesizes the compact skill from editor-surfaces.ts rather than reading
116
+ # a generated source-tree file.
117
117
  install_skill() {
118
118
  if [ -f "$1" ] && { [ ! -f "$2" ] || [ "$1" -nt "$2" ]; }; then
119
119
  mkdir -p "$(dirname "$2")" 2>/dev/null
@@ -121,10 +121,6 @@ ensure_setup() {
121
121
  fi
122
122
  }
123
123
  install_skill "$ROOT_DIR/templates/skills/prjct/SKILL.md" "$HOME/.claude/skills/prjct/SKILL.md"
124
- # Codex only if present — don't create ~/.codex on machines without it
125
- if [ -d "$HOME/.codex" ] || command -v codex >/dev/null 2>&1; then
126
- install_skill "$ROOT_DIR/templates/codex/SKILL.md" "$HOME/.codex/skills/prjct/SKILL.md"
127
- fi
128
124
  }
129
125
 
130
126
  # Check if bun is available
package/bin/prjct.cjs CHANGED
@@ -170,15 +170,6 @@ function shouldRunSetup(version) {
170
170
  const claudeSkillDest = path.join(HOME, '.claude', 'skills', 'prjct', 'SKILL.md')
171
171
  if (fileMissingWhenSourceExists(claudeSkillSrc, claudeSkillDest)) return true
172
172
 
173
- const codexSkillSrc = path.join(ROOT_DIR, 'templates', 'codex', 'SKILL.md')
174
- const codexSkillDest = path.join(HOME, '.codex', 'skills', 'prjct', 'SKILL.md')
175
- if (
176
- fs.existsSync(path.join(HOME, '.codex')) &&
177
- fileMissingWhenSourceExists(codexSkillSrc, codexSkillDest)
178
- ) {
179
- return true
180
- }
181
-
182
173
  return false
183
174
  }
184
175
 
@@ -234,13 +225,6 @@ function ensureSetup() {
234
225
  path.join(ROOT_DIR, 'templates', 'skills', 'prjct', 'SKILL.md'),
235
226
  path.join(HOME, '.claude', 'skills', 'prjct', 'SKILL.md')
236
227
  )
237
-
238
- if (fs.existsSync(path.join(HOME, '.codex')) || findCommand('codex')) {
239
- copyIfNewer(
240
- path.join(ROOT_DIR, 'templates', 'codex', 'SKILL.md'),
241
- path.join(HOME, '.codex', 'skills', 'prjct', 'SKILL.md')
242
- )
243
- }
244
228
  }
245
229
 
246
230
  function runMcpServer(args) {