toga-ai 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/scripts/install.js +53 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toga-ai",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "TOGA Technology Team Claude Knowledge System — shared AI coding harness with skills, knowledge base CLI, and project installer for Claude Code.",
5
5
  "keywords": [
6
6
  "claude",
@@ -593,11 +593,59 @@ function main() {
593
593
  console.log(' ✓ CLAUDE.md ' + action);
594
594
 
595
595
  console.log('');
596
- console.log(' In Claude Code:');
597
- console.log(' /kickoff ← prime context (run at session start)');
598
- console.log(' /capture ← save + push learnings (run at session end)');
599
- console.log(' /session-save ← checkpoint before closing');
600
- console.log(' /session-resume ← continue from checkpoint');
596
+ console.log('═════════════════════════════════════════════');
597
+ console.log(' WHAT TO DO NEXT your first session');
598
+ console.log('═════════════════════════════════════════════');
599
+ console.log('');
600
+ console.log(' STEP 1 Open Claude Code in this project folder');
601
+ console.log(' ┌─────────────────────────────────┐');
602
+ console.log(' │ claude │');
603
+ console.log(' └─────────────────────────────────┘');
604
+ console.log(' (or open it from your IDE — VS Code, JetBrains, etc.)');
605
+ console.log('');
606
+ console.log(' STEP 2 Type this FIRST — every single session, no exceptions:');
607
+ console.log(' ┌─────────────────────────────────┐');
608
+ console.log(' │ /kickoff │');
609
+ console.log(' └─────────────────────────────────┘');
610
+ console.log(' This loads your team\'s knowledge base, PHP framework');
611
+ console.log(' rules, and decisions your teammates already made.');
612
+ console.log(' Without it, Claude starts with zero context.');
613
+ console.log('');
614
+ console.log(' STEP 3 Work normally — just talk to Claude:');
615
+ console.log(' "Add a refund endpoint to the orders controller"');
616
+ console.log(' "Fix the bug in the payment worker"');
617
+ console.log(' "Show me how to write a Framework 2.0 worker"');
618
+ console.log('');
619
+ console.log(' Claude will automatically:');
620
+ console.log(' • Check your PHP follows the right framework pattern');
621
+ console.log(' • Review SQL for injection and performance issues');
622
+ console.log(' • Flag security problems in any PHP file you edit');
623
+ console.log(' You don\'t need to ask — it happens in the background.');
624
+ console.log('');
625
+ console.log(' STEP 4 Before you close, type:');
626
+ console.log(' ┌─────────────────────────────────┐');
627
+ console.log(' │ /capture │');
628
+ console.log(' └─────────────────────────────────┘');
629
+ console.log(' Tell Claude what you built or fixed today.');
630
+ console.log(' It saves it to the team knowledge base and pushes');
631
+ console.log(' it to GitHub — your teammates get it automatically.');
632
+ console.log('');
633
+ console.log('─────────────────────────────────────────────');
634
+ console.log(' OTHER COMMANDS (use when needed)');
635
+ console.log('─────────────────────────────────────────────');
636
+ console.log('');
637
+ console.log(' /session-save ← mid-session checkpoint before switching tasks');
638
+ console.log(' /session-resume ← pick up exactly where you left off yesterday');
639
+ console.log(' /code-review ← run a full security + style review on a file');
640
+ console.log(' /php-patterns ← show me the correct pattern for Framework 1.0/2.0');
641
+ console.log(' /harness-audit ← check the health of this AI setup');
642
+ console.log('');
643
+ console.log('─────────────────────────────────────────────');
644
+ console.log(' UPDATING (get latest skills + team knowledge)');
645
+ console.log('─────────────────────────────────────────────');
646
+ console.log('');
647
+ console.log(' npx toga-ai ← run this any time to pull updates');
648
+ console.log('');
601
649
  console.log('═════════════════════════════════════════════');
602
650
  console.log('');
603
651