@@ -188,8 +188,10 @@ const HELP_TEXT = {
188188 HabitTracker : 'Habits: Snapshot of habits, streaks, and today\'s status.' ,
189189 DebugConsole : 'Debug: Inspect/debug data and actions.' ,
190190 Achievements : 'Achievements: Review milestones you\'ve unlocked and mark awards/archives.' ,
191+ Admin : 'Admin: Run dashboard maintenance and developer-facing actions from one place.' ,
191192 Rewards : 'Rewards: Review point balance/history and redeem reward items.' ,
192193 MP3Player : 'MP3 Player: Spin up playlists from user/media/mp3, shuffle or repeat tracks, and manage uploads without leaving the dashboard.' ,
194+ NiaAssistant : 'Nia Assistant: Chat with Chronos assistance, ask for guidance, and trigger supported actions from the dashboard.' ,
193195 Settings : 'Settings: View and edit YAML files under user/settings via API.' ,
194196 Profile : 'Profile: View/Edit profile (nickname, theme, etc.).' ,
195197 Journal : 'Journal: Create/edit Journal or Dream entries. Autosaves; use Type/Date/Tags; Dream fields (lucid, signs, sleep) appear for dream type.' ,
@@ -199,6 +201,7 @@ const HELP_TEXT = {
199201 ResolutionTracker : 'Resolutions: Track yearly resolutions and link them to Chronos items.' ,
200202 Link : 'Link: Connect to a peer and sync a shared Canvas board (polling, last-write-wins).' ,
201203 Trends : 'Trends: View performance metrics including habits, goals, focus time, quality, and adherence stats.' ,
204+ SleepSettings : 'Sleep Settings: Tune sleep targets, windows, and related templates used by Chronos scheduling.' ,
202205 // Views
203206 Calendar : 'Calendar View: Timeline of scheduled blocks. Use zoom/level controls and toolstrip to navigate and manage.' ,
204207 TemplateBuilder : 'Template Builder: Build templates via drag & drop. Indent/outdent to nest. Toggle Sequential/Parallel; Save to persist.' ,
@@ -208,6 +211,12 @@ const HELP_TEXT = {
208211 Tracker : 'Tracker View: Visualize a full-year calendar for a selected habit or commitment with done/not-done states.' ,
209212 Docs : 'Docs View: Browse the Docs tree, search content, and read files without leaving the dashboard.' ,
210213 ADUC : 'ADUC View: Launches ADUC (Chronos mode) and embeds it in a dashboard iframe.' ,
214+ Atlas : 'Atlas View: Explore the broader Chronos workspace and navigate connected structures visually.' ,
215+ Canvas : 'Canvas View: Freeform spatial workspace for laying out information and references.' ,
216+ DayBuilder : 'Day Builder: Assemble and adjust a day plan by arranging blocks, timing, and sequencing.' ,
217+ GoalPlanner : 'Goal Planner: Shape a goal into milestones, timelines, and supporting structure before saving.' ,
218+ RoutineBuilder : 'Routine Builder: Design reusable routines and sub-steps with timing and nesting.' ,
219+ WeekBuilder : 'Week Builder: Plan a week at a higher level before turning it into concrete daily structure.' ,
211220 // Panels
212221 schedule : 'Schedule Panel: Mirrors today\'s agenda, lets you refresh/reschedule, jump dates, and kick off the Chronos day timer.' ,
213222 matrix : 'Matrix Panel: Interactive pivot grid for Chronos data. Choose rows/cols/values/filters, save presets, and spawn additional panels.' ,
@@ -233,12 +242,20 @@ const HELP_TEXT = {
233242 RandomPicker : 'Random Picker Panel: Pull a random item from saved pools.' ,
234243 Schedule : 'Schedule Panel: Mirrors today\'s agenda inside the cockpit.' ,
235244 StatusStrip : 'Status Chart Panel: Live read-only radar chart of current status indicators.' ,
245+ DataCards : 'Data Cards Panel: Summarize selected metrics or item groups in compact card form for the cockpit.' ,
236246 // Wizards
237247 Onboarding : 'Chronos Onboarding Wizard: Guided flow to set nickname, categories, statuses, templates, and starter goals/rewards.' ,
238248 GoalPlanning : 'Goal Planning Wizard: Capture intent, milestones, and supporting work to spin up a rich goal file.' ,
239249 ProjectLaunch : 'Project Launch Wizard: Draft a project brief, milestones, and kickoff actions before writing YAML.' ,
240250 BrainDump : 'Brain Dump Wizard: Rapid task capture, horizon buckets, and light refinement.' ,
241- LifeSetup : 'Life Setup Wizard: Build a schedule skeleton with anchors like sleep, meals, work, and exercise.'
251+ LifeSetup : 'Life Setup Wizard: Build a schedule skeleton with anchors like sleep, meals, work, and exercise.' ,
252+ Big5 : 'Big5 Wizard: Run a personality inventory flow and save the resulting trait profile into Chronos.' ,
253+ ChoreSetup : 'Chore Setup Wizard: Define recurring chores, cadence, and defaults without hand-writing templates.' ,
254+ FutureSelfDialogue : 'Future Self Dialogue Wizard: Reflect through a guided conversation with a future-oriented lens.' ,
255+ MapOfHappiness : 'Map of Happiness Wizard: Capture needs, rank them, and map item coverage against what matters most.' ,
256+ NewYearResolutions : 'New Year Resolutions Wizard: Draft yearly resolutions and supporting structure for the coming year.' ,
257+ SelfAuthoring : 'Self Authoring Wizard: Work through structured reflection and planning prompts across life areas.' ,
258+ StatusMapping : 'Status Mapping Wizard: Configure dashboard status axes, labels, and available value options.'
242259} ;
243260
244261function getHelpTip ( name , fallback ) {
@@ -247,7 +264,7 @@ function getHelpTip(name, fallback) {
247264 if ( key && HELP_TEXT [ key ] ) return HELP_TEXT [ key ] ;
248265 if ( fallbackKey && HELP_TEXT [ fallbackKey ] ) return HELP_TEXT [ fallbackKey ] ;
249266 const label = fallbackKey || key || 'Component' ;
250- return `${ label } : No help available .` ;
267+ return `${ label } : This dashboard surface opens a focused workspace for ${ label . toLowerCase ( ) } . Use the main controls in the header or toolbar, and refresh if the data looks stale .` ;
251268}
252269
253270function createHelpButton ( name , options = { } ) {
0 commit comments