Prebuilt cards sections (#237)

* add spinner to pre-built cards

* added subsections for prebuilt

* added section name styling

* added news section and reddit to slack workflow
This commit is contained in:
arkml 2025-09-09 23:53:34 +05:30 committed by GitHub
parent 13051dbf3a
commit 63e95cf853
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 424 additions and 59 deletions

View file

@ -84,6 +84,7 @@ export class CreateProjectUseCase implements ICreateProjectUseCase {
agents: template.agents,
prompts: template.prompts,
tools: template.tools,
pipelines: template.pipelines || [],
startAgent: template.startAgent,
}
} else {
@ -117,4 +118,4 @@ export class CreateProjectUseCase implements ICreateProjectUseCase {
return project;
}
}
}