@codexa/cli 8.5.0 → 8.6.9

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.
@@ -624,5 +624,3 @@ ${product.value_proposition}
624
624
  const mdPath = join(process.cwd(), ".codexa", "product-context.md");
625
625
  writeFileSync(mdPath, md);
626
626
  }
627
-
628
- export { generateProductMarkdown };
@@ -317,7 +317,7 @@ Este arquivo foi criado automaticamente e precisa ser preenchido com:
317
317
 
318
318
  Use o comando:
319
319
  \`\`\`bash
320
- bun run .claude/cli/workflow.ts research fill --lib ${lib.canonical}
320
+ codexa research fill --lib ${lib.canonical}
321
321
  \`\`\`
322
322
  ${docsLine}
323
323
 
@@ -198,27 +198,4 @@ export function standardsExport(): void {
198
198
  initSchema();
199
199
  generateStandardsMarkdown();
200
200
  console.log("\nArquivo gerado: .codexa/standards.md\n");
201
- }
202
-
203
- export function getStandardsForAgent(agent: string): any[] {
204
- const db = getDb();
205
-
206
- // Extrair dominio do agent (ex: "backend-bun" -> "backend")
207
- const domain = agent.split("-")[0];
208
-
209
- const standards = db
210
- .query(
211
- `SELECT * FROM standards
212
- WHERE scope = 'all' OR scope = ?
213
- ORDER BY enforcement DESC, category`
214
- )
215
- .all(domain) as any[];
216
-
217
- return standards.map((std) => ({
218
- category: std.category,
219
- rule: std.rule,
220
- examples: std.examples ? JSON.parse(std.examples) : [],
221
- anti_examples: std.anti_examples ? JSON.parse(std.anti_examples) : [],
222
- enforcement: std.enforcement,
223
- }));
224
201
  }