osagent 0.1.100 → 0.2.1

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 (3) hide show
  1. package/README.md +30 -0
  2. package/cli.js +4278 -5347
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -319,8 +319,38 @@ packages/
319
319
  - `Ctrl+U` - Delete to start of line
320
320
  - `Shift+Enter` - Insert newline
321
321
 
322
+ ## Documentation
323
+
324
+ For detailed architecture documentation, see [SYSTEM_ARCHITECTURE.md](SYSTEM_ARCHITECTURE.md). This includes:
325
+ - Complete request flow diagrams
326
+ - Agent system and tier structure
327
+ - Skill detection and auto-dispatch
328
+ - Tool system and execution flow
329
+ - Memory systems (episodic + vector)
330
+ - Context provider hierarchy
331
+ - Integration points and key files
332
+
322
333
  ## Recent Updates
323
334
 
335
+ ### v0.2.0 - Architecture & Orchestration Improvements
336
+ - **Roadmap System**: New persistent project tracking system (`roadmap` tool for agents)
337
+ - Track work items with priorities, dependencies, and subtasks
338
+ - Stored in `.osagent/roadmap.json` - persists across sessions
339
+ - Actions: view, add, update, next, summary, note
340
+ - **Consultation Integration**: Enhanced orchestrator-consultation bridge
341
+ - Generates clarifying questions when prompts are ambiguous
342
+ - Context-aware question generation based on skill detection
343
+ - Collects enhanced context for better agent selection
344
+ - **Codebase Cleanup**: Removed orphaned code and redundant hooks
345
+ - Deleted unused memory command hooks
346
+ - Consolidated RoadmapContext into core service
347
+ - Updated architecture documentation
348
+ - **Documentation**: Added comprehensive SYSTEM_ARCHITECTURE.md
349
+ - Complete system flow documentation
350
+ - Agent tiers and selection rules
351
+ - Skill detection process
352
+ - Tool registration patterns
353
+
324
354
  ### v0.1.87 - Test Fixes & Documentation
325
355
  - Fixed all test failures (3170/3170 tests now passing)
326
356
  - Updated naming consistency across codebase