@ornexus/neocortex 3.9.13 → 3.9.15
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/install.ps1 +1 -1
- package/install.sh +19 -10
- package/package.json +2 -2
- package/packages/client/dist/agent/update-description.d.ts +3 -1
- package/packages/client/dist/agent/update-description.d.ts.map +1 -1
- package/packages/client/dist/agent/update-description.js +53 -5
- package/packages/client/dist/agent/update-description.js.map +1 -1
- package/targets-stubs/antigravity/gemini.md +1 -1
- package/targets-stubs/antigravity/skill/SKILL.md +1 -1
- package/targets-stubs/claude-code/neocortex.agent.yaml +1 -1
- package/targets-stubs/claude-code/neocortex.md +2 -2
- package/targets-stubs/codex/agents.md +1 -1
- package/targets-stubs/cursor/agent.md +2 -2
- package/targets-stubs/gemini-cli/agent.md +2 -2
- package/targets-stubs/vscode/agent.md +2 -2
package/install.ps1
CHANGED
package/install.sh
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
# Development Orchestrator
|
|
5
5
|
|
|
6
6
|
# Versao do instalador
|
|
7
|
-
VERSION="3.9.
|
|
7
|
+
VERSION="3.9.15"
|
|
8
8
|
|
|
9
9
|
# Flags
|
|
10
10
|
MIGRATION_DETECTED=false
|
|
@@ -204,7 +204,9 @@ copy_dir() {
|
|
|
204
204
|
|
|
205
205
|
# Patch description tier in any agent file (YAML frontmatter or Markdown H1)
|
|
206
206
|
# Usage: patch_description_tier <file>
|
|
207
|
-
# Reads tier from ~/.neocortex/config.json and replaces
|
|
207
|
+
# Reads tier from ~/.neocortex/config.json and replaces ANY tier label with actual tier.
|
|
208
|
+
# Supports: (Free) <-> (Pro) <-> (Enterprise) in any direction.
|
|
209
|
+
# Works on both frontmatter description and banner body lines.
|
|
208
210
|
patch_description_tier() {
|
|
209
211
|
local target_file="$1"
|
|
210
212
|
local config_file="${HOME}/.neocortex/config.json"
|
|
@@ -218,22 +220,29 @@ patch_description_tier() {
|
|
|
218
220
|
|
|
219
221
|
local tier_label
|
|
220
222
|
case "$tier" in
|
|
223
|
+
free) tier_label="Free" ;;
|
|
221
224
|
pro) tier_label="Pro" ;;
|
|
222
225
|
enterprise) tier_label="Enterprise" ;;
|
|
223
|
-
*) return 0 ;;
|
|
226
|
+
*) return 0 ;;
|
|
224
227
|
esac
|
|
225
228
|
|
|
226
|
-
# Replace
|
|
227
|
-
#
|
|
228
|
-
sed
|
|
229
|
+
# Replace ANY tier label with the correct one in non-banner lines
|
|
230
|
+
# (frontmatter description, body text, H1 headers, etc.)
|
|
231
|
+
# Each sed expression replaces one possible source tier with the target tier.
|
|
232
|
+
# If source == target, sed is a no-op (replaces X with X). This is correct.
|
|
233
|
+
sed -i.bak \
|
|
234
|
+
-e "s/(Free)/(${tier_label})/g" \
|
|
235
|
+
-e "s/(Pro)/(${tier_label})/g" \
|
|
236
|
+
-e "s/(Enterprise)/(${tier_label})/g" \
|
|
237
|
+
"$target_file" 2>/dev/null
|
|
229
238
|
rm -f "${target_file}.bak" 2>/dev/null
|
|
230
239
|
|
|
231
240
|
# Fix banner alignment: the OrNexus Team line has a fixed 62-char frame.
|
|
232
|
-
# After replacing
|
|
241
|
+
# After replacing tier labels of different lengths, re-pad to maintain alignment.
|
|
233
242
|
# Pattern: "│ ## ### ###### ## OrNexus Team (Tier)<spaces>│"
|
|
234
243
|
# Inner width must be exactly 60 chars (│ + 60 + │ = 62).
|
|
235
244
|
if grep -q "OrNexus Team (${tier_label})" "$target_file" 2>/dev/null; then
|
|
236
|
-
local prefix="│ ## ### ###### ## " # 25 chars
|
|
245
|
+
local prefix="│ ## ### ###### ## " # 25 chars inner prefix
|
|
237
246
|
local content="OrNexus Team (${tier_label})"
|
|
238
247
|
local content_len=${#content}
|
|
239
248
|
local pad_len=$((60 - 25 - content_len))
|
|
@@ -241,12 +250,12 @@ patch_description_tier() {
|
|
|
241
250
|
local i
|
|
242
251
|
for ((i=0; i<pad_len; i++)); do padding="${padding} "; done
|
|
243
252
|
local new_line="${prefix}${content}${padding}│"
|
|
244
|
-
# Replace the misaligned banner line with the correctly padded one
|
|
253
|
+
# Replace the (possibly misaligned) banner line with the correctly padded one
|
|
245
254
|
sed -i.bak -e "s|│ ## ### ###### ## OrNexus Team ([^)]*).*│|${new_line}|" "$target_file" 2>/dev/null
|
|
246
255
|
rm -f "${target_file}.bak" 2>/dev/null
|
|
247
256
|
fi
|
|
248
257
|
|
|
249
|
-
debug "Tier patched
|
|
258
|
+
debug "Tier patched to (${tier_label}) in $(basename "$target_file")"
|
|
250
259
|
}
|
|
251
260
|
|
|
252
261
|
# =============================================================================
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornexus/neocortex",
|
|
3
|
-
"version": "3.9.
|
|
4
|
-
"description": "Neocortex v3.9.
|
|
3
|
+
"version": "3.9.15",
|
|
4
|
+
"description": "Neocortex v3.9.15 - Orquestrador de Desenvolvimento de Epics & Stories para Claude Code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
7
7
|
"claude-code",
|
|
@@ -28,7 +28,9 @@ export declare function buildDescription(version: string, tier: string): string;
|
|
|
28
28
|
*/
|
|
29
29
|
export declare function readTierFromConfig(): string;
|
|
30
30
|
/**
|
|
31
|
-
* Update agent descriptions across ALL
|
|
31
|
+
* Update agent descriptions across ALL known platform files:
|
|
32
|
+
* 1. Home-level files (Claude Code, Gemini CLI)
|
|
33
|
+
* 2. Project-level files (Cursor, VSCode, Codex, Antigravity) -- discovered via git root
|
|
32
34
|
*
|
|
33
35
|
* Never throws -- description update is non-critical.
|
|
34
36
|
* Returns count of files updated.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-description.d.ts","sourceRoot":"","sources":["../../src/agent/update-description.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;
|
|
1
|
+
{"version":3,"file":"update-description.d.ts","sourceRoot":"","sources":["../../src/agent/update-description.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAmIH;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAE9D;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAGxD;AAID;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAGtE;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,IAAI,MAAM,CAW3C;AA0ED;;;;;;;GAOG;AACH,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAyB7E;AAED;;;;;GAKG;AACH,wBAAgB,wBAAwB,CACtC,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,GAAG,IAAI,EACnB,OAAO,EAAE,MAAM,EACf,IAAI,CAAC,EAAE,MAAM,GACZ,OAAO,CAIT"}
|
|
@@ -21,12 +21,15 @@
|
|
|
21
21
|
* 2. ASCII banner version line: `│ ### ######## vX.X.X ...│`
|
|
22
22
|
* 3. ASCII banner tier line: `│ ## ### ###### ## OrNexus Team (Tier) ...│`
|
|
23
23
|
*
|
|
24
|
-
* Supported platforms:
|
|
24
|
+
* Supported platforms (home-level):
|
|
25
25
|
* - Claude Code: ~/.claude/agents/neocortex/neocortex.md (YAML frontmatter)
|
|
26
26
|
* - Gemini CLI: ~/.gemini/agents/agent.md (YAML frontmatter)
|
|
27
27
|
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
28
|
+
* Supported platforms (project-level, discovered via git root):
|
|
29
|
+
* - Cursor: <root>/.cursor/agents/neocortex.md (YAML frontmatter)
|
|
30
|
+
* - VSCode: <root>/.github/agents/neocortex.md (YAML frontmatter)
|
|
31
|
+
* - Codex: <root>/AGENTS.md (Markdown H1)
|
|
32
|
+
* - Antigravity: <root>/.agent/skills/neocortex/SKILL.md (YAML frontmatter)
|
|
30
33
|
*
|
|
31
34
|
* Called after:
|
|
32
35
|
* - License activation (activate.ts)
|
|
@@ -35,6 +38,7 @@
|
|
|
35
38
|
* Format: 🧠 Neocortex vX.X.X (Tier) | OrNexus Team
|
|
36
39
|
*/
|
|
37
40
|
import { readFileSync, writeFileSync, existsSync } from 'node:fs';
|
|
41
|
+
import { execSync } from 'node:child_process';
|
|
38
42
|
import { join } from 'node:path';
|
|
39
43
|
import { homedir } from 'node:os';
|
|
40
44
|
// ── Constants ─────────────────────────────────────────────────────────────
|
|
@@ -62,7 +66,6 @@ const BANNER_VERSION_PATTERN = /^│ ### ######## v[\d.]+\s*│$/m;
|
|
|
62
66
|
const BANNER_TIER_PATTERN = /^│ ## ### ###### ## OrNexus Team \([^)]*\)\s*│$/m;
|
|
63
67
|
/**
|
|
64
68
|
* All known home-directory agent files, grouped by description format.
|
|
65
|
-
* Project-level files are patched by install.sh (paths vary per project).
|
|
66
69
|
*/
|
|
67
70
|
const HOME_AGENT_FILES = [
|
|
68
71
|
// Claude Code (home-level)
|
|
@@ -70,6 +73,38 @@ const HOME_AGENT_FILES = [
|
|
|
70
73
|
// Gemini CLI (home-level)
|
|
71
74
|
{ path: join(homedir(), '.gemini', 'agents', 'agent.md'), type: 'yaml' },
|
|
72
75
|
];
|
|
76
|
+
/**
|
|
77
|
+
* Known project-level agent file paths (relative to project root).
|
|
78
|
+
* These are patched after license activation so the tier reflects reality.
|
|
79
|
+
*/
|
|
80
|
+
const PROJECT_AGENT_FILES = [
|
|
81
|
+
// Cursor
|
|
82
|
+
{ relativePath: join('.cursor', 'agents', 'neocortex.md'), type: 'yaml' },
|
|
83
|
+
// VSCode / GitHub Copilot
|
|
84
|
+
{ relativePath: join('.github', 'agents', 'neocortex.md'), type: 'yaml' },
|
|
85
|
+
// Codex
|
|
86
|
+
{ relativePath: 'AGENTS.md', type: 'h1' },
|
|
87
|
+
// Antigravity
|
|
88
|
+
{ relativePath: join('.agent', 'skills', 'neocortex', 'SKILL.md'), type: 'yaml' },
|
|
89
|
+
];
|
|
90
|
+
// ── Project Root Discovery ────────────────────────────────────────────────
|
|
91
|
+
/**
|
|
92
|
+
* Discover the git project root, or null if not in a git repo.
|
|
93
|
+
* Never throws -- returns null on any failure.
|
|
94
|
+
*/
|
|
95
|
+
function discoverProjectRoot() {
|
|
96
|
+
try {
|
|
97
|
+
const root = execSync('git rev-parse --show-toplevel', {
|
|
98
|
+
encoding: 'utf-8',
|
|
99
|
+
timeout: 5000,
|
|
100
|
+
stdio: ['pipe', 'pipe', 'pipe'],
|
|
101
|
+
}).trim();
|
|
102
|
+
return root || null;
|
|
103
|
+
}
|
|
104
|
+
catch {
|
|
105
|
+
return null;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
73
108
|
// ── Banner Helpers ────────────────────────────────────────────────────────
|
|
74
109
|
/**
|
|
75
110
|
* Build a right-padded banner line.
|
|
@@ -174,7 +209,9 @@ function updateFile(filePath, type, description, version, tier) {
|
|
|
174
209
|
}
|
|
175
210
|
}
|
|
176
211
|
/**
|
|
177
|
-
* Update agent descriptions across ALL
|
|
212
|
+
* Update agent descriptions across ALL known platform files:
|
|
213
|
+
* 1. Home-level files (Claude Code, Gemini CLI)
|
|
214
|
+
* 2. Project-level files (Cursor, VSCode, Codex, Antigravity) -- discovered via git root
|
|
178
215
|
*
|
|
179
216
|
* Never throws -- description update is non-critical.
|
|
180
217
|
* Returns count of files updated.
|
|
@@ -183,11 +220,22 @@ export function updateAgentDescription(version, tier) {
|
|
|
183
220
|
const resolvedTier = tier ?? readTierFromConfig();
|
|
184
221
|
const description = buildDescription(version, resolvedTier);
|
|
185
222
|
let updated = 0;
|
|
223
|
+
// 1. Home-level files (existing behavior)
|
|
186
224
|
for (const { path, type } of HOME_AGENT_FILES) {
|
|
187
225
|
if (updateFile(path, type, description, version, resolvedTier)) {
|
|
188
226
|
updated++;
|
|
189
227
|
}
|
|
190
228
|
}
|
|
229
|
+
// 2. Project-level files (discover git root, then check known paths)
|
|
230
|
+
const projectRoot = discoverProjectRoot();
|
|
231
|
+
if (projectRoot) {
|
|
232
|
+
for (const { relativePath, type } of PROJECT_AGENT_FILES) {
|
|
233
|
+
const fullPath = join(projectRoot, relativePath);
|
|
234
|
+
if (updateFile(fullPath, type, description, version, resolvedTier)) {
|
|
235
|
+
updated++;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
191
239
|
return updated;
|
|
192
240
|
}
|
|
193
241
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-description.js","sourceRoot":"","sources":["../../src/agent/update-description.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH
|
|
1
|
+
{"version":3,"file":"update-description.js","sourceRoot":"","sources":["../../src/agent/update-description.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: neocortex
|
|
3
|
-
description: "🧠 Neocortex v3.9.
|
|
3
|
+
description: "🧠 Neocortex v3.9.15 (Free) | OrNexus Team"
|
|
4
4
|
model: opus
|
|
5
5
|
color: blue
|
|
6
6
|
tools:
|
|
@@ -56,7 +56,7 @@ SEMPRE que este agente for invocado, imprima o banner abaixo como PRIMEIRO outpu
|
|
|
56
56
|
┌────────────────────────────────────────────────────────────┐
|
|
57
57
|
│ │
|
|
58
58
|
│ ####### N E O C O R T E X │
|
|
59
|
-
│ ### ######## v3.9.
|
|
59
|
+
│ ### ######## v3.9.15 │
|
|
60
60
|
│ ######### ##### │
|
|
61
61
|
│ ## ############## Development Orchestrator │
|
|
62
62
|
│ ## ### ###### ## OrNexus Team (Free) │
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: neocortex
|
|
3
|
-
description: "🧠 Neocortex v3.9.
|
|
3
|
+
description: "🧠 Neocortex v3.9.15 (Free) | OrNexus Team"
|
|
4
4
|
model: fast
|
|
5
5
|
readonly: false
|
|
6
6
|
is_background: false
|
|
@@ -18,7 +18,7 @@ SEMPRE que este agente for invocado, imprima o banner abaixo como PRIMEIRO outpu
|
|
|
18
18
|
┌────────────────────────────────────────────────────────────┐
|
|
19
19
|
│ │
|
|
20
20
|
│ ####### N E O C O R T E X │
|
|
21
|
-
│ ### ######## v3.9.
|
|
21
|
+
│ ### ######## v3.9.15 │
|
|
22
22
|
│ ######### ##### │
|
|
23
23
|
│ ## ############## Development Orchestrator │
|
|
24
24
|
│ ## ### ###### ## OrNexus Team (Free) │
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: neocortex
|
|
3
|
-
description: "🧠 Neocortex v3.9.
|
|
3
|
+
description: "🧠 Neocortex v3.9.15 (Free) | OrNexus Team"
|
|
4
4
|
kind: local
|
|
5
5
|
tools:
|
|
6
6
|
- read_file
|
|
@@ -25,7 +25,7 @@ SEMPRE que este agente for invocado, imprima o banner abaixo como PRIMEIRO outpu
|
|
|
25
25
|
┌────────────────────────────────────────────────────────────┐
|
|
26
26
|
│ │
|
|
27
27
|
│ ####### N E O C O R T E X │
|
|
28
|
-
│ ### ######## v3.9.
|
|
28
|
+
│ ### ######## v3.9.15 │
|
|
29
29
|
│ ######### ##### │
|
|
30
30
|
│ ## ############## Development Orchestrator │
|
|
31
31
|
│ ## ### ###### ## OrNexus Team (Free) │
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "neocortex"
|
|
3
|
-
description: "🧠 Neocortex v3.9.
|
|
3
|
+
description: "🧠 Neocortex v3.9.15 (Free) | OrNexus Team"
|
|
4
4
|
tools:
|
|
5
5
|
- readFile
|
|
6
6
|
- editFiles
|
|
@@ -26,7 +26,7 @@ SEMPRE que este agente for invocado, imprima o banner abaixo como PRIMEIRO outpu
|
|
|
26
26
|
┌────────────────────────────────────────────────────────────┐
|
|
27
27
|
│ │
|
|
28
28
|
│ ####### N E O C O R T E X │
|
|
29
|
-
│ ### ######## v3.9.
|
|
29
|
+
│ ### ######## v3.9.15 │
|
|
30
30
|
│ ######### ##### │
|
|
31
31
|
│ ## ############## Development Orchestrator │
|
|
32
32
|
│ ## ### ###### ## OrNexus Team (Free) │
|