Skip to content

Commit e4c7c0e

Browse files
committed
manifests is now clearer
1 parent d0332a3 commit e4c7c0e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ After `coldbox ai install`, your project will have a `.agents/` directory contai
604604
│ ├── {skill-name}/
605605
│ │ └── SKILL.md # Step-by-step implementation guide
606606
│ └── overrides/ # Override core/module skills
607-
└── .manifest.json # AI integration metadata (generated)
607+
└── manifest.json # AI integration metadata (generated)
608608
```
609609

610610
- **Guidelines**: Framework documentation and best practices (ColdBox, BoxLang, CFML, etc.)

models/AIService.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ component singleton {
299299
// Load manifest
300300
var manifest = loadManifest( arguments.directory )
301301
if ( !structKeyExists( manifest, "coldboxCliVersion" ) ) {
302-
issues.errors.append( "Invalid or missing .ai/.manifest.json file" )
302+
issues.errors.append( "Invalid or missing /.agents/manifest.json file" )
303303
// Build summary for early return
304304
issues.summary = {
305305
"status" : "error",
@@ -377,7 +377,7 @@ component singleton {
377377
* @directory The project directory
378378
*/
379379
struct function loadManifest( required string directory ){
380-
var manifestPath = getAIInstallDirectory( arguments.directory ) & "/.manifest.json";
380+
var manifestPath = getAIInstallDirectory( arguments.directory ) & "/manifest.json";
381381
if ( !fileExists( manifestPath ) ) {
382382
return {};
383383
}
@@ -392,7 +392,7 @@ component singleton {
392392
* @return The full path to the manifest file
393393
*/
394394
string function getManifestPath( required string directory ){
395-
return getAIInstallDirectory( arguments.directory ) & "/.manifest.json";
395+
return getAIInstallDirectory( arguments.directory ) & "/manifest.json";
396396
}
397397

398398
/**

0 commit comments

Comments
 (0)