Initial public push: docs cosmos v4 + AI module + framework groundwork
This is the snapshot the production landing site (nibiru-framework.com) is deployed from. Brings together the recent splash + docs migration to the v4 "Cosmos" design system, the new in-framework AI module, and the framework groundwork that backs the framework-reference extraction. What lands: - docs/: Astro + Starlight site with the v4 dark cosmic palette, GalaxyHero canvas constellation, Mission Control chat (wired to /api/oracle → api.neuronetz.ai via providers.mjs Ollama), 5-panel MMVC stage (Model · AI · Module · Controller · View), translated EN/DE/JA/ES/FR content, PWA + sitemap + llms.txt + Umami analytics. - docs/design-system/: canonical mockup bundle (source/index-v2.html for splash, source/docs-system.html + preview/ for docs, SPEC.md, tokens). - docs/scripts/extraction/framework-reference-v2.md: deep framework reference (~1.6k lines, file:line citations, every public factory and idiom — basis for the LoRA training corpus. - application/module/ai/: AI module with chat / embed / RAG / agent plugins, plus pdoQuery / httpGet / fileRead tools and Modelfile + smoke-test in training/. - application/module/users/: user / ACL / form-factory traits used as the reference plugin pattern for the framework docs. - application/settings/config/database/: schema + seed migrations including the AI module tables (200–203). - Form factory + autogenerator changes the framework-reference-v2 covers. Production secrets stay out: docs/.env, settings.production.ini and ai.production.ini are all gitignored (.example files are in tree). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,99 @@
|
||||
.modal-alt{
|
||||
display: none;
|
||||
width: 500px;
|
||||
max-width: 90%;
|
||||
border-radius: 3px;
|
||||
padding: 25px 60px 20px 60px;
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.modal-alt-header{
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.modal-alt-header-ico{
|
||||
position: relative;
|
||||
padding: 0 8px;
|
||||
background-color: #fff;
|
||||
width: 36px;
|
||||
margin: 0 auto 20px;
|
||||
|
||||
i{
|
||||
font-size: 23px;
|
||||
color: fade(@color_black, 30%);
|
||||
}
|
||||
}
|
||||
|
||||
.modal-alt-header-line{
|
||||
position: absolute;
|
||||
width: 15px;
|
||||
height: 1px;
|
||||
background-color: fade(@color_black, 30%);
|
||||
top: 50%;
|
||||
.transform(translateY(-50%));
|
||||
|
||||
&:after{
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background-color: fade(@color_black, 30%);
|
||||
position: absolute;
|
||||
content: '';
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
&.line-right{
|
||||
right: -15px;
|
||||
|
||||
&:after{
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.line-left{
|
||||
left: -15px;
|
||||
|
||||
&:after{
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.modal-alt-title{
|
||||
font-size: 34px;
|
||||
font-weight: 100;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.modal-alt-description{
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
font-weight: 300;
|
||||
margin-bottom: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.modal-alt-button{
|
||||
margin-bottom: -50px;
|
||||
}
|
||||
|
||||
.media-mixin(@break) when (@break = @break-small){
|
||||
.modal-alt{
|
||||
padding: 25px 40px 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.media-mixin(@break) when (@break = @break-small-x){
|
||||
.modal-alt{
|
||||
padding: 25px 20px 20px;
|
||||
}
|
||||
.modal-alt-title{
|
||||
font-size: 25px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.modal-alt-description{
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user