17 Commits

Author SHA1 Message Date
Nicholas Ferguson 40fb64574b chore(skills): remove legacy metadata commands 2026-06-01 15:07:01 -04:00
Nicholas Ferguson 228e6de997 docs(tutorials): publish skill authoring tutorial to site
Move the 686-line skill-authoring-cookbook from docs/tutorials/ (which
is unpublished) to site/tutorials/skill-authoring.md (the canonical
user-facing doc home). The cookbook covers directory structure,
SKILL.md frontmatter, progressive disclosure, quality rubrics, and
common authoring patterns — all user-facing content that belonged on
the published site.

- site/tutorials/skill-authoring.md: published from the former cookbook
  with adjusted frontmatter (title, nav_order 1.5 to sit next to
  skill-recommendations, new permalink).
- site/tutorials/index.md: new landing-page entry linking to the
  tutorial with a 30-45 minute estimate.
- docs/tutorials/skill-authoring-cookbook.md: removed (canonical copy
  now in site/).
- docs/NAVIGATOR.md, docs/README.md, docs/tutorials/index.md,
  docs/tutorials/learning-paths/onboarding.md,
  docs/tutorials/ci-cd-integration.md: inbound references to the
  cookbook replaced with prose pointers to the site/ location.

Resolves the dangling link in site/guides/working-with-skills.md that
referenced the tutorial before it existed on the published site.
2026-04-12 18:33:19 -04:00
Nicholas Ferguson 8b9319375a docs(site): cut over GitHub Pages to targeted user docs 2026-03-23 23:31:44 -04:00
Nicholas Ferguson 0348090e39 docs: remove phantom feature references and fix stale documentation
Remove references to non-existent modes/, workflows/, profiles/, scenarios/,
and flags/ directories across 11 documentation files. These described a
planned "three-layer system" that was superseded by the current skills-based
architecture.

Key changes:
- AGENTS.md: update core module tree to match actual codebase
- docs/index.md: fix version (2.0.0 → 3.0.1), remove Mode/Workflow/Flag sections
- docs/guides/hooks.md: replace 7 phantom hooks with 9 actual hooks
- docs/reference/api/index.md: list actual core modules
- docs/reference/architecture/: remove three-layer references, fix paths
- Archive quick-reference.md (entirely phantom content)
- Fix broken modes.html links and stale CLI command references
2026-03-06 15:05:47 -05:00
Nicholas Ferguson 2a94be1794 fix(assets): add validation and error handling to symlink operations
Priority 1 & 3 code review improvements:
- Add source path existence validation before all symlink operations
- Add (OSError, PermissionError) try/except blocks to symlink creation/removal
- Separate error handling for unlink and symlink_to operations
- Fix uninitialized source_path in _agent_activate_recursive (init to None)
- Add specific error messages for each failure mode

Files changed:
- agents.py: Updated _agent_activate_recursive and agent_deactivate with
  proper error handling and source_path initialization fix
- skills.py: Enhanced skill_activate/skill_deactivate with source validation
  and specific exception handling
- rules.py: Updated rules_activate/rules_deactivate to catch PermissionError
  and provide clear error messages
- asset_installer.py: Apply same patterns to all install functions

This ensures robust symlink operations with clear feedback on failure modes.
2026-02-24 20:58:43 -05:00
Nicholas Ferguson 35ebb2abe3 refactor: remove unused cortex-workflow placeholder
Remove cortex-workflow references since the command is not implemented
and workflow orchestration is currently handled through composition of
existing commands (agent, skills, review, plan, export, ai).

- Remove workflow subcommand from validation and generation
- Remove cortex-workflow.1 from manpage bundle
- Delete placeholder cortex-workflow.1 manpage file

This keeps the build clean and only bundles manpages for implemented
commands (cortex.1 and cortex-tui.1).
2026-02-24 20:58:43 -05:00
Nicholas Ferguson 294c28eb1f docs: Phase 3 - rewrite getting-started-tui tutorial
Major updates to docs/tutorials/getting-started-tui.md:

Removed deprecated features:
- Entire "Running Workflows" section (replaced with MCP servers)
- Profiles section (feature doesn't exist)
- References to modes view, workflows view, scenarios view

Updated throughout:
- Installation commands (pip install, cortex install link)
- Keyboard shortcuts (1-7, C, E, 0, w, A, M, X)
- TUI overview display (removed modes/workflows cards)
- Command palette examples (removed deprecated commands)
- Export categories (removed modes/workflows)
- CLI command reference (removed workflow commands)
- Practice exercises (updated key mappings)
- Troubleshooting reference cards

Replaced workflows section with MCP servers tutorial:
- View MCP servers (Press 7)
- Test server connections
- View server details
- CLI alternatives

Net result: -59 lines (138 deleted, 79 added)
Tutorial now accurately reflects current TUI features.
2026-02-16 12:18:48 -05:00
Nicholas Ferguson aae9850d22 docs: fix outdated references and rewrite INSTALL.md
Major cleanup of documentation with outdated information:

Rewrites:
- INSTALL.md - Complete rewrite to match current CLI commands
  - Removed references to non-existent commands (install bootstrap, install package)
  - Updated to use actual commands (install link, install post)
  - Added comprehensive usage examples and troubleshooting
  - Simplified structure matching README.md

Deletions:
- INSTALL_TEST_PLAN.md - Testing non-existent commands and wrong paths

Global replacements (37 files):
- ~/.cortex/ → ~/.claude/ (all occurrences)
- cortex-py → claude-cortex (all occurrences)

Files updated:
- Installation guides (INSTALL.md, getting-started.md)
- API documentation (installer.md, prompts.md)
- Architecture docs (DIAGRAMS_README.md, VISUAL_SUMMARY.txt)
- Feature guides (hooks.md, skills.md, memory.md, etc.)
- AI integration docs (LLM_INTELLIGENCE_GUIDE.md, etc.)

All documentation now accurately reflects:
- Current CLI commands (cortex install link, cortex install post)
- Correct package name (claude-cortex)
- Correct config paths (~/.claude/)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 10:23:33 -05:00
Nicholas Ferguson b99aa76b42 chore: add code 2026-02-13 12:20:02 -05:00
Nicholas Ferguson 6f07bb5b6b chore: rename claude-ctx to cortex 2026-01-07 19:21:19 -05:00
Nicholas Ferguson da398438ec feat(tui): add vi-style paging bindings 2026-01-07 19:20:22 -05:00
Nicholas Ferguson 26d17057d2 docs(install): document cli post-install flow 2026-01-07 19:20:22 -05:00
Nicholas Ferguson 5d2b61c7c6 chore: version 1.6.0 2025-12-31 00:33:15 -05:00
Nicholas Ferguson d4797025c6 feat(agents): add 6 cookbook-inspired agents and harden memory security 2025-12-29 13:13:31 -05:00
Nicholas Ferguson 6ddf0243fc docs: add AI guides, plans, and update screenshots
Documentation:
- Add AI guides: LLM_INTELLIGENCE_GUIDE.md, LLM_QUICK_REFERENCE.md
- Add implementation docs: AI_IMPLEMENTATION_SUMMARY.md, AI_INTELLIGENCE.md
- Add planning docs: SEQUENTIAL_EXECUTION_PLAN.md, NEXT_ACTIONS.md
- Add progress docs: DAY1_COMPLETE.md, WEEK0_SUMMARY.md, MODEL_OPTIMIZATION.md
- Add copy-definition-feature.md for TUI copy functionality
- Add manpage-automation.md documenting auto-generation
- Add reference/README.md for manpage documentation

Screenshots:
- Add new screenshots: assets, backups, hooks, memory, skills, wizard series
- Update existing screenshots with improved visuals
- Remove deprecated screenshots: orchestration.png, overview-1.png, overview-2.png

Updates:
- Update TUI guides and entity documentation
- Update presentations with new features
- Update tutorials for new functionality
- Regenerate manpages reflecting CLI changes
2025-12-10 14:48:19 -05:00
Nicholas Ferguson 1498ae60f9 docs: add TUI tutorial and transform Phase 4/5 docs into feature guides
- Add comprehensive TUI getting started tutorial (1045 lines)
  - 11-part progressive tutorial covering installation through advanced features
  - Clear CLI-only feature markers for power users
  - 60+ code examples with checkpoints and troubleshooting
  - Added to site navigation and main page

- Transform Phase 4/5 planning docs into user-focused feature documentation
  - Created skill-composition-versioning.md (concise dependency & version guide)
  - Created skill-ratings-analytics.md (ratings, analytics, AI recommendations)
  - Removed implementation timelines and planning details
  - Focus on usage, benefits, and best practices

- Update site navigation
  - Add tutorials to header navigation via _config.yml
  - Fix Jekyll URL structure (directory-based permalinks)
  - Create tutorials landing page with learning paths

- Archive planning documents
  - Move PHASE5_ROADMAP.md to archive/reports/
  - Rename phase4-summary.md to PHASE4_SUMMARY.md for consistency
  - Preserve historical planning docs for reference
2025-11-15 13:20:33 -05:00
Nicholas Ferguson 3cd8d5e315 docs: add new user guide 2025-11-15 12:46:46 -05:00