Update feature counts to accurate 45 features across 8 categories
This commit is contained in:
parent
3f8061f5b1
commit
e7948ae521
1 changed files with 8 additions and 6 deletions
|
|
@ -429,14 +429,14 @@
|
|||
<div class="container">
|
||||
<header>
|
||||
<h1>🚤 NaviDocs Feature Selector</h1>
|
||||
<p>Complete 52-Feature Edition</p>
|
||||
<p>Complete 45-Feature Edition (7 Categories)</p>
|
||||
<p class="subtitle">Riviera Plaisance Partnership - Define Your Perfect Solution</p>
|
||||
</header>
|
||||
|
||||
<div class="controls">
|
||||
<div class="stats">
|
||||
<div>
|
||||
Selected: <strong id="selectedCount">0</strong> / 52
|
||||
Selected: <strong id="selectedCount">0</strong> / 45
|
||||
</div>
|
||||
<div>
|
||||
Avg Priority: <strong id="avgRating">0.0</strong> / 10
|
||||
|
|
@ -1133,7 +1133,8 @@
|
|||
const data = {
|
||||
timestamp: new Date().toISOString(),
|
||||
meeting: 'Riviera Plaisance Partnership',
|
||||
totalFeatures: 52,
|
||||
totalAvailableFeatures: 45,
|
||||
totalCategories: 8,
|
||||
selectedFeatures: selectedFeatures.length,
|
||||
features: selectedFeatures
|
||||
};
|
||||
|
|
@ -1142,7 +1143,7 @@
|
|||
const url = URL.createObjectURL(blob);
|
||||
const a = document.createElement('a');
|
||||
a.href = url;
|
||||
a.download = `navidocs-feature-selection-52-${new Date().toISOString().split('T')[0]}.json`;
|
||||
a.download = `navidocs-feature-selection-45-${new Date().toISOString().split('T')[0]}.json`;
|
||||
a.click();
|
||||
URL.revokeObjectURL(url);
|
||||
}
|
||||
|
|
@ -1180,7 +1181,8 @@
|
|||
meeting: 'Riviera Plaisance Partnership',
|
||||
deployment_target: 'StackCP shared hosting (~/public_html/digital-lab.ca/navidocs)',
|
||||
selected_features: selectedFeatures.length,
|
||||
total_available_features: 52,
|
||||
total_available_features: 45,
|
||||
total_categories: 8,
|
||||
swarm_pattern: 'S2 (5 Haiku agents parallel)',
|
||||
autonomous_task_file: 'AUTONOMOUS-NEXT-TASKS.md'
|
||||
},
|
||||
|
|
@ -1312,7 +1314,7 @@
|
|||
const url = URL.createObjectURL(blob);
|
||||
const a = document.createElement('a');
|
||||
a.href = url;
|
||||
a.download = `navidocs-agent-tasks-52-${new Date().toISOString().split('T')[0]}.json`;
|
||||
a.download = `navidocs-agent-tasks-45-${new Date().toISOString().split('T')[0]}.json`;
|
||||
a.click();
|
||||
URL.revokeObjectURL(url);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue