@ornexus/neocortex 3.9.12 → 3.9.13

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.js CHANGED
@@ -202,7 +202,7 @@ function runUnix(selectedTargets) {
202
202
  function showHelp() {
203
203
  console.log('');
204
204
  console.log(color.bold(` Neocortex Installer v${VERSION}`));
205
- console.log(color.dim(' Epic & Story Development Orchestrator'));
205
+ console.log(color.dim(' Development Orchestrator'));
206
206
  console.log('');
207
207
  console.log(` ${color.dim('Uso:')} npx @ornexus/neocortex ${color.dim('[opcoes]')}`);
208
208
  console.log('');
package/install.ps1 CHANGED
@@ -1,5 +1,5 @@
1
1
  # Neocortex - Instalador Windows
2
- # Epic & Story Development Orchestrator
2
+ # Development Orchestrator
3
3
 
4
4
  param(
5
5
  [switch]$Yes,
@@ -15,7 +15,7 @@ param(
15
15
  [string]$ServerUrl = "https://api.neocortex.ornexus.com"
16
16
  )
17
17
 
18
- $VERSION = "3.9.12"
18
+ $VERSION = "3.9.13"
19
19
 
20
20
  # =============================================================================
21
21
  # CONFIGURACOES
@@ -56,7 +56,7 @@ if (-not (Test-Interactive)) {
56
56
  if ($Help) {
57
57
  Write-Host ""
58
58
  Write-Host " Neocortex Installer v$VERSION" -ForegroundColor White
59
- Write-Host " Epic & Story Development Orchestrator" -ForegroundColor DarkGray
59
+ Write-Host " Development Orchestrator" -ForegroundColor DarkGray
60
60
  Write-Host ""
61
61
  Write-Host " Uso: npx @ornexus/neocortex [opcoes]"
62
62
  Write-Host ""
package/install.sh CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/bin/bash
2
2
 
3
3
  # Neocortex - Instalador Unix
4
- # Epic & Story Development Orchestrator
4
+ # Development Orchestrator
5
5
 
6
6
  # Versao do instalador
7
- VERSION="3.9.12"
7
+ VERSION="3.9.13"
8
8
 
9
9
  # Flags
10
10
  MIGRATION_DETECTED=false
@@ -64,7 +64,7 @@ while [[ $# -gt 0 ]]; do
64
64
  -h|--help)
65
65
  echo ""
66
66
  echo " Neocortex Installer v${VERSION}"
67
- echo " Epic & Story Development Orchestrator"
67
+ echo " Development Orchestrator"
68
68
  echo ""
69
69
  echo " Uso: npx @ornexus/neocortex [opcoes]"
70
70
  echo ""
@@ -223,11 +223,30 @@ patch_description_tier() {
223
223
  *) return 0 ;; # Already Free, no patch needed
224
224
  esac
225
225
 
226
- # Replace tier label in new format: vX.X.X (Tier) | OrNexus Team
227
- # Also handles legacy format: | OrNexus Team (Tier)
228
- sed -i.bak -e "s/([^)]*) | OrNexus Team\"/(${tier_label}) | OrNexus Team\"/" -e "s/| OrNexus Team ([^)]*)/| OrNexus Team (${tier_label})/" "$target_file" 2>/dev/null
226
+ # Replace (Free) with actual tier in non-banner lines (description, title, body text).
227
+ # These lines have no fixed-width alignment constraints.
228
+ sed -i.bak -e "s/(Free)/(${tier_label})/g" "$target_file" 2>/dev/null
229
229
  rm -f "${target_file}.bak" 2>/dev/null
230
- debug "Description tier patched: ${tier_label} in $(basename "$target_file")"
230
+
231
+ # Fix banner alignment: the OrNexus Team line has a fixed 62-char frame.
232
+ # After replacing (Free) with a different-length tier, re-pad to maintain alignment.
233
+ # Pattern: "│ ## ### ###### ## OrNexus Team (Tier)<spaces>│"
234
+ # Inner width must be exactly 60 chars (│ + 60 + │ = 62).
235
+ if grep -q "OrNexus Team (${tier_label})" "$target_file" 2>/dev/null; then
236
+ local prefix="│ ## ### ###### ## " # 25 chars
237
+ local content="OrNexus Team (${tier_label})"
238
+ local content_len=${#content}
239
+ local pad_len=$((60 - 25 - content_len))
240
+ local padding=""
241
+ local i
242
+ for ((i=0; i<pad_len; i++)); do padding="${padding} "; done
243
+ local new_line="${prefix}${content}${padding}│"
244
+ # Replace the misaligned banner line with the correctly padded one
245
+ sed -i.bak -e "s|│ ## ### ###### ## OrNexus Team ([^)]*).*│|${new_line}|" "$target_file" 2>/dev/null
246
+ rm -f "${target_file}.bak" 2>/dev/null
247
+ fi
248
+
249
+ debug "Tier patched: (Free) -> (${tier_label}) in $(basename "$target_file")"
231
250
  }
232
251
 
233
252
  # =============================================================================
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ornexus/neocortex",
3
- "version": "3.9.12",
4
- "description": "Neocortex v3.9.12 - Orquestrador de Desenvolvimento de Epics & Stories para Claude Code",
3
+ "version": "3.9.13",
4
+ "description": "Neocortex v3.9.13 - Orquestrador de Desenvolvimento de Epics & Stories para Claude Code",
5
5
  "keywords": [
6
6
  "claude",
7
7
  "claude-code",
@@ -10,6 +10,14 @@
10
10
  *
11
11
  * See the LICENSE file in the project root for full license text.
12
12
  */
13
+ /**
14
+ * Build the banner version line with correct padding.
15
+ */
16
+ export declare function buildBannerVersionLine(version: string): string;
17
+ /**
18
+ * Build the banner tier line with correct padding.
19
+ */
20
+ export declare function buildBannerTierLine(tier: string): string;
13
21
  /**
14
22
  * Build the dynamic description string (without quotes/prefix).
15
23
  */
@@ -22,7 +30,7 @@ export declare function readTierFromConfig(): string;
22
30
  /**
23
31
  * Update agent descriptions across ALL home-directory platform files.
24
32
  *
25
- * Never throws description update is non-critical.
33
+ * Never throws -- description update is non-critical.
26
34
  * Returns count of files updated.
27
35
  */
28
36
  export declare function updateAgentDescription(version: string, tier?: string): number;
@@ -30,7 +38,7 @@ export declare function updateAgentDescription(version: string, tier?: string):
30
38
  * Update agent description for a specific file path (used by install scripts
31
39
  * for project-level files where paths are dynamic).
32
40
  *
33
- * Never throws description update is non-critical.
41
+ * Never throws -- description update is non-critical.
34
42
  */
35
43
  export declare function updateAgentDescriptionAt(filePath: string, type: 'yaml' | 'h1', version: string, tier?: string): boolean;
36
44
  //# sourceMappingURL=update-description.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-description.d.ts","sourceRoot":"","sources":["../../src/agent/update-description.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AA2DH;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAGtE;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,IAAI,MAAM,CAW3C;AA6CD;;;;;GAKG;AACH,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAW7E;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"}
1
+ {"version":3,"file":"update-description.d.ts","sourceRoot":"","sources":["../../src/agent/update-description.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AA2FH;;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;;;;;GAKG;AACH,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAW7E;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"}
@@ -16,6 +16,11 @@
16
16
  * Updates the installed agent description across ALL supported platforms
17
17
  * with dynamic values: version, tier, and branding.
18
18
  *
19
+ * Patches THREE surfaces per file (when present):
20
+ * 1. YAML frontmatter `description: "..."` or Markdown H1 `# ...`
21
+ * 2. ASCII banner version line: `│ ### ######## vX.X.X ...│`
22
+ * 3. ASCII banner tier line: `│ ## ### ###### ## OrNexus Team (Tier) ...│`
23
+ *
19
24
  * Supported platforms:
20
25
  * - Claude Code: ~/.claude/agents/neocortex/neocortex.md (YAML frontmatter)
21
26
  * - Gemini CLI: ~/.gemini/agents/agent.md (YAML frontmatter)
@@ -39,11 +44,22 @@ const TIER_LABELS = {
39
44
  pro: 'Pro',
40
45
  enterprise: 'Enterprise',
41
46
  };
47
+ /**
48
+ * Banner frame geometry.
49
+ * Frame is 62 chars wide: │ + 60 inner chars + │
50
+ * Both dynamic lines have a 25-char inner prefix (after the leading │).
51
+ */
52
+ const BANNER_INNER_WIDTH = 60;
53
+ const BANNER_PREFIX_INNER = 25; // chars after leading │, before dynamic content
42
54
  // YAML frontmatter: description: "..."
43
55
  const YAML_DESCRIPTION_PATTERN = /^description:\s*".*"$/m;
44
56
  // Markdown H1: # 🧠 Neocortex vX.X.X (Tier) | OrNexus Team
45
57
  // Also matches legacy format: # 🧠 Neocortex vX.X.X - Development Orchestrator | OrNexus Team (Tier)
46
58
  const H1_DESCRIPTION_PATTERN = /^# 🧠 Neocortex v[\d.]+(?:\s*\([^)]+\)\s*\| OrNexus Team|\s*-\s*Development Orchestrator \| OrNexus Team \([^)]+\))$/m;
59
+ // Banner version line: │ ### ######## vX.X.X<spaces>│
60
+ const BANNER_VERSION_PATTERN = /^│ ### ######## v[\d.]+\s*│$/m;
61
+ // Banner tier line: │ ## ### ###### ## OrNexus Team (<Tier>)<spaces>│
62
+ const BANNER_TIER_PATTERN = /^│ ## ### ###### ## OrNexus Team \([^)]*\)\s*│$/m;
47
63
  /**
48
64
  * All known home-directory agent files, grouped by description format.
49
65
  * Project-level files are patched by install.sh (paths vary per project).
@@ -54,13 +70,39 @@ const HOME_AGENT_FILES = [
54
70
  // Gemini CLI (home-level)
55
71
  { path: join(homedir(), '.gemini', 'agents', 'agent.md'), type: 'yaml' },
56
72
  ];
73
+ // ── Banner Helpers ────────────────────────────────────────────────────────
74
+ /**
75
+ * Build a right-padded banner line.
76
+ * Prefix is the fixed art portion INCLUDING the leading │ (26 chars).
77
+ * Content is the dynamic text. Padding fills to inner width, then closing │.
78
+ *
79
+ * Total: │(1) + prefixInner(25) + content + pad + │(1) = 62 chars.
80
+ */
81
+ function buildBannerLine(prefix, content) {
82
+ const padLen = BANNER_INNER_WIDTH - BANNER_PREFIX_INNER - content.length;
83
+ const padding = padLen > 0 ? ' '.repeat(padLen) : '';
84
+ return `${prefix}${content}${padding}\u2502`; // \u2502 = │
85
+ }
86
+ /**
87
+ * Build the banner version line with correct padding.
88
+ */
89
+ export function buildBannerVersionLine(version) {
90
+ return buildBannerLine('\u2502 ### ######## ', `v${version}`);
91
+ }
92
+ /**
93
+ * Build the banner tier line with correct padding.
94
+ */
95
+ export function buildBannerTierLine(tier) {
96
+ const label = TIER_LABELS[tier.toLowerCase()] ?? 'Free';
97
+ return buildBannerLine('\u2502 ## ### ###### ## ', `OrNexus Team (${label})`);
98
+ }
57
99
  // ── Public API ────────────────────────────────────────────────────────────
58
100
  /**
59
101
  * Build the dynamic description string (without quotes/prefix).
60
102
  */
61
103
  export function buildDescription(version, tier) {
62
104
  const label = TIER_LABELS[tier.toLowerCase()] ?? 'Free';
63
- return `🧠 Neocortex v${version} (${label}) | OrNexus Team`;
105
+ return `\u{1F9E0} Neocortex v${version} (${label}) | OrNexus Team`;
64
106
  }
65
107
  /**
66
108
  * Read the current tier from ~/.neocortex/config.json.
@@ -80,33 +122,51 @@ export function readTierFromConfig() {
80
122
  return 'free';
81
123
  }
82
124
  /**
83
- * Update a single file's description. Supports both YAML frontmatter and H1 header.
125
+ * Patch ASCII banner lines (version + tier) in file content.
126
+ * Returns the patched content, or the original if no banner found.
127
+ */
128
+ function patchBannerLines(content, version, tier) {
129
+ let patched = content;
130
+ // Patch version line
131
+ if (BANNER_VERSION_PATTERN.test(patched)) {
132
+ patched = patched.replace(BANNER_VERSION_PATTERN, buildBannerVersionLine(version));
133
+ }
134
+ // Patch tier line
135
+ if (BANNER_TIER_PATTERN.test(patched)) {
136
+ patched = patched.replace(BANNER_TIER_PATTERN, buildBannerTierLine(tier));
137
+ }
138
+ return patched;
139
+ }
140
+ /**
141
+ * Update a single file's description and banner.
142
+ * Supports YAML frontmatter, H1 header, and ASCII banner lines.
84
143
  *
85
- * Never throws description update is non-critical.
144
+ * Never throws -- description update is non-critical.
86
145
  */
87
- function updateFile(filePath, type, description) {
146
+ function updateFile(filePath, type, description, version, tier) {
88
147
  try {
89
148
  if (!existsSync(filePath)) {
90
149
  return false;
91
150
  }
92
- const content = readFileSync(filePath, 'utf-8');
93
- let updated;
151
+ let content = readFileSync(filePath, 'utf-8');
152
+ const original = content;
153
+ // 1. Patch description (YAML frontmatter or H1 header)
94
154
  if (type === 'yaml') {
95
- if (!YAML_DESCRIPTION_PATTERN.test(content)) {
96
- return false;
155
+ if (YAML_DESCRIPTION_PATTERN.test(content)) {
156
+ content = content.replace(YAML_DESCRIPTION_PATTERN, `description: "${description}"`);
97
157
  }
98
- updated = content.replace(YAML_DESCRIPTION_PATTERN, `description: "${description}"`);
99
158
  }
100
159
  else {
101
- if (!H1_DESCRIPTION_PATTERN.test(content)) {
102
- return false;
160
+ if (H1_DESCRIPTION_PATTERN.test(content)) {
161
+ content = content.replace(H1_DESCRIPTION_PATTERN, `# ${description}`);
103
162
  }
104
- updated = content.replace(H1_DESCRIPTION_PATTERN, `# ${description}`);
105
163
  }
106
- if (updated === content) {
164
+ // 2. Patch ASCII banner lines (version + tier) if present
165
+ content = patchBannerLines(content, version, tier);
166
+ if (content === original) {
107
167
  return false; // Already up to date
108
168
  }
109
- writeFileSync(filePath, updated, 'utf-8');
169
+ writeFileSync(filePath, content, 'utf-8');
110
170
  return true;
111
171
  }
112
172
  catch {
@@ -116,7 +176,7 @@ function updateFile(filePath, type, description) {
116
176
  /**
117
177
  * Update agent descriptions across ALL home-directory platform files.
118
178
  *
119
- * Never throws description update is non-critical.
179
+ * Never throws -- description update is non-critical.
120
180
  * Returns count of files updated.
121
181
  */
122
182
  export function updateAgentDescription(version, tier) {
@@ -124,7 +184,7 @@ export function updateAgentDescription(version, tier) {
124
184
  const description = buildDescription(version, resolvedTier);
125
185
  let updated = 0;
126
186
  for (const { path, type } of HOME_AGENT_FILES) {
127
- if (updateFile(path, type, description)) {
187
+ if (updateFile(path, type, description, version, resolvedTier)) {
128
188
  updated++;
129
189
  }
130
190
  }
@@ -134,11 +194,11 @@ export function updateAgentDescription(version, tier) {
134
194
  * Update agent description for a specific file path (used by install scripts
135
195
  * for project-level files where paths are dynamic).
136
196
  *
137
- * Never throws description update is non-critical.
197
+ * Never throws -- description update is non-critical.
138
198
  */
139
199
  export function updateAgentDescriptionAt(filePath, type, version, tier) {
140
200
  const resolvedTier = tier ?? readTierFromConfig();
141
201
  const description = buildDescription(version, resolvedTier);
142
- return updateFile(filePath, type, description);
202
+ return updateFile(filePath, type, description, version, resolvedTier);
143
203
  }
144
204
  //# sourceMappingURL=update-description.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-description.js","sourceRoot":"","sources":["../../src/agent/update-description.ts"],"names":[],"mappings":"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"}
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
- # 🧠 Neocortex v3.9.12 (Free) | OrNexus Team
1
+ # 🧠 Neocortex v3.9.13 (Free) | OrNexus Team
2
2
 
3
- This project uses Neocortex, an Epic & Story Development Orchestrator.
3
+ This project uses Neocortex, a Development Orchestrator (Free).
4
4
 
5
5
  All orchestration logic, standards, skills, and workflows are delivered by the remote Neocortex server.
6
6
  Use the Neocortex skill to interact with the pipeline.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: neocortex
3
- description: "🧠 Neocortex v3.9.12 (Free) | OrNexus Team"
3
+ description: "🧠 Neocortex v3.9.13 (Free) | OrNexus Team"
4
4
  ---
5
5
 
6
6
  # Neocortex - Thin Client Interface
@@ -2,9 +2,9 @@ agent:
2
2
  metadata:
3
3
  id: agents/neocortex
4
4
  name: 'Neocortex'
5
- title: 'Epic & Story Development Orchestrator'
5
+ title: 'Development Orchestrator (Free)'
6
6
  icon: '>'
7
- version: '3.9.12'
7
+ version: '3.9.13'
8
8
  architecture: 'thin-client'
9
9
  module: stand-alone
10
10
  hasSidecar: false
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: neocortex
3
- description: "🧠 Neocortex v3.9.12 (Free) | OrNexus Team"
3
+ description: "🧠 Neocortex v3.9.13 (Free) | OrNexus Team"
4
4
  model: opus
5
5
  color: blue
6
6
  tools:
@@ -48,6 +48,30 @@ Claude Code Skills, Slash Commands, or MCP plugins.
48
48
 
49
49
  Voce e o agente Neocortex. Toda a logica de orquestracao e resolvida pelo server remoto.
50
50
 
51
+ ## Banner
52
+
53
+ SEMPRE que este agente for invocado, imprima o banner abaixo como PRIMEIRO output, dentro de um bloco de codigo (triple backticks). Copie o conteudo entre as tags `<banner>` EXATAMENTE como esta:
54
+
55
+ <banner>
56
+ ┌────────────────────────────────────────────────────────────┐
57
+ │ │
58
+ │ ####### N E O C O R T E X │
59
+ │ ### ######## v3.9.13 │
60
+ │ ######### ##### │
61
+ │ ## ############## Development Orchestrator │
62
+ │ ## ### ###### ## OrNexus Team (Free) │
63
+ │ ## ### ### ## │
64
+ │ ## ###### ### ## │
65
+ │ ############### ## │
66
+ │ ##### ######## │
67
+ │ ######## ## │
68
+ │ ####### │
69
+ │ │
70
+ └────────────────────────────────────────────────────────────┘
71
+ </banner>
72
+
73
+ Apos imprimir o banner, prossiga com o protocolo de invocacao abaixo.
74
+
51
75
  ## Invocacao
52
76
 
53
77
  Quando o usuario invocar este agente, siga EXATAMENTE este protocolo:
@@ -1,6 +1,6 @@
1
- # 🧠 Neocortex v3.9.12 (Free) | OrNexus Team
1
+ # 🧠 Neocortex v3.9.13 (Free) | OrNexus Team
2
2
 
3
- You are an Epic & Story Development Orchestrator. All orchestration logic is delivered by the remote Neocortex server.
3
+ You are a Development Orchestrator (Free). All orchestration logic is delivered by the remote Neocortex server.
4
4
 
5
5
  ## Invocation Protocol
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: neocortex
3
- description: "🧠 Neocortex v3.9.12 (Free) | OrNexus Team"
3
+ description: "🧠 Neocortex v3.9.13 (Free) | OrNexus Team"
4
4
  model: fast
5
5
  readonly: false
6
6
  is_background: false
@@ -10,6 +10,30 @@ is_background: false
10
10
 
11
11
  Voce e o agente Neocortex. Toda a logica de orquestracao e resolvida pelo server remoto.
12
12
 
13
+ ## Banner
14
+
15
+ SEMPRE que este agente for invocado, imprima o banner abaixo como PRIMEIRO output, dentro de um bloco de codigo (triple backticks). Copie o conteudo entre as tags `<banner>` EXATAMENTE como esta:
16
+
17
+ <banner>
18
+ ┌────────────────────────────────────────────────────────────┐
19
+ │ │
20
+ │ ####### N E O C O R T E X │
21
+ │ ### ######## v3.9.13 │
22
+ │ ######### ##### │
23
+ │ ## ############## Development Orchestrator │
24
+ │ ## ### ###### ## OrNexus Team (Free) │
25
+ │ ## ### ### ## │
26
+ │ ## ###### ### ## │
27
+ │ ############### ## │
28
+ │ ##### ######## │
29
+ │ ######## ## │
30
+ │ ####### │
31
+ │ │
32
+ └────────────────────────────────────────────────────────────┘
33
+ </banner>
34
+
35
+ Apos imprimir o banner, prossiga com o protocolo de invocacao abaixo.
36
+
13
37
  ## Invocacao
14
38
 
15
39
  Quando o usuario invocar este agente, siga EXATAMENTE este protocolo:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: neocortex
3
- description: "🧠 Neocortex v3.9.12 (Free) | OrNexus Team"
3
+ description: "🧠 Neocortex v3.9.13 (Free) | OrNexus Team"
4
4
  kind: local
5
5
  tools:
6
6
  - read_file
@@ -17,6 +17,30 @@ timeout_mins: 30
17
17
 
18
18
  Voce e o agente Neocortex. Toda a logica de orquestracao e resolvida pelo server remoto.
19
19
 
20
+ ## Banner
21
+
22
+ SEMPRE que este agente for invocado, imprima o banner abaixo como PRIMEIRO output, dentro de um bloco de codigo (triple backticks). Copie o conteudo entre as tags `<banner>` EXATAMENTE como esta:
23
+
24
+ <banner>
25
+ ┌────────────────────────────────────────────────────────────┐
26
+ │ │
27
+ │ ####### N E O C O R T E X │
28
+ │ ### ######## v3.9.13 │
29
+ │ ######### ##### │
30
+ │ ## ############## Development Orchestrator │
31
+ │ ## ### ###### ## OrNexus Team (Free) │
32
+ │ ## ### ### ## │
33
+ │ ## ###### ### ## │
34
+ │ ############### ## │
35
+ │ ##### ######## │
36
+ │ ######## ## │
37
+ │ ####### │
38
+ │ │
39
+ └────────────────────────────────────────────────────────────┘
40
+ </banner>
41
+
42
+ Apos imprimir o banner, prossiga com o protocolo de invocacao abaixo.
43
+
20
44
  ## Invocacao
21
45
 
22
46
  Quando o usuario invocar este agente, siga EXATAMENTE este protocolo:
@@ -1,6 +1,6 @@
1
1
  # Neocortex - Gemini Configuration (Thin Client)
2
2
 
3
- This project uses Neocortex, an Epic & Story Development Orchestrator.
3
+ This project uses Neocortex, a Development Orchestrator (Free).
4
4
 
5
5
  All orchestration logic, standards, and skills are delivered by the remote Neocortex server.
6
6
  Use the `@neocortex` agent to interact with the pipeline.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: "neocortex"
3
- description: "🧠 Neocortex v3.9.12 (Free) | OrNexus Team"
3
+ description: "🧠 Neocortex v3.9.13 (Free) | OrNexus Team"
4
4
  tools:
5
5
  - readFile
6
6
  - editFiles
@@ -18,6 +18,30 @@ user-invokable: true
18
18
 
19
19
  Voce e o agente Neocortex. Toda a logica de orquestracao e resolvida pelo server remoto.
20
20
 
21
+ ## Banner
22
+
23
+ SEMPRE que este agente for invocado, imprima o banner abaixo como PRIMEIRO output, dentro de um bloco de codigo (triple backticks). Copie o conteudo entre as tags `<banner>` EXATAMENTE como esta:
24
+
25
+ <banner>
26
+ ┌────────────────────────────────────────────────────────────┐
27
+ │ │
28
+ │ ####### N E O C O R T E X │
29
+ │ ### ######## v3.9.13 │
30
+ │ ######### ##### │
31
+ │ ## ############## Development Orchestrator │
32
+ │ ## ### ###### ## OrNexus Team (Free) │
33
+ │ ## ### ### ## │
34
+ │ ## ###### ### ## │
35
+ │ ############### ## │
36
+ │ ##### ######## │
37
+ │ ######## ## │
38
+ │ ####### │
39
+ │ │
40
+ └────────────────────────────────────────────────────────────┘
41
+ </banner>
42
+
43
+ Apos imprimir o banner, prossiga com o protocolo de invocacao abaixo.
44
+
21
45
  ## Invocacao
22
46
 
23
47
  Quando o usuario invocar este agente, siga EXATAMENTE este protocolo:
@@ -1,6 +1,6 @@
1
1
  # Neocortex - Copilot Instructions (Thin Client)
2
2
 
3
- This project uses Neocortex, an Epic & Story Development Orchestrator.
3
+ This project uses Neocortex, a Development Orchestrator (Free).
4
4
 
5
5
  All orchestration logic is delivered by the remote Neocortex server.
6
6
  Use the `@neocortex` agent (in `.github/agents/neocortex.md`) to interact with the pipeline.