universal-agent-memory 2.8.0 → 2.8.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.
- package/package.json +1 -1
- package/templates/CLAUDE.template.md +62 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "universal-agent-memory",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.1",
|
|
4
4
|
"description": "Universal AI agent memory system - CLAUDE.md templates, memory, worktrees for Claude Code, Factory.AI, VSCode, OpenCode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -707,6 +707,68 @@ Task(subagent_type: "documentation-expert", prompt: "Check: <files>")
|
|
|
707
707
|
|
|
708
708
|
---
|
|
709
709
|
|
|
710
|
+
## UAM VISUAL STATUS FEEDBACK (MANDATORY WHEN UAM IS ACTIVE)
|
|
711
|
+
|
|
712
|
+
**When UAM tools are in use, ALWAYS use the built-in status display commands to provide visual feedback on progress and underlying numbers. Do NOT silently perform operations -- show the user what is happening.**
|
|
713
|
+
|
|
714
|
+
### After Task Operations
|
|
715
|
+
After creating, updating, closing, or claiming tasks, run:
|
|
716
|
+
```bash
|
|
717
|
+
uam dashboard progress # Show completion %, status bars, velocity
|
|
718
|
+
uam task stats # Show priority/type breakdown with charts
|
|
719
|
+
```
|
|
720
|
+
|
|
721
|
+
### After Memory Operations
|
|
722
|
+
After storing, querying, or prepopulating memory, run:
|
|
723
|
+
```bash
|
|
724
|
+
uam memory status # Show memory layer health, capacity gauges, service status
|
|
725
|
+
uam dashboard memory # Show detailed memory dashboard with architecture tree
|
|
726
|
+
```
|
|
727
|
+
|
|
728
|
+
### After Agent/Coordination Operations
|
|
729
|
+
After registering agents, checking overlaps, or claiming resources, run:
|
|
730
|
+
```bash
|
|
731
|
+
uam dashboard agents # Show agent status table, resource claims, active work
|
|
732
|
+
```
|
|
733
|
+
|
|
734
|
+
### Periodic Overview
|
|
735
|
+
At session start and after completing major work items, run:
|
|
736
|
+
```bash
|
|
737
|
+
uam dashboard overview # Full overview: task progress, agent status, memory health
|
|
738
|
+
```
|
|
739
|
+
|
|
740
|
+
### Display Function Reference
|
|
741
|
+
|
|
742
|
+
UAM provides these visual output functions (from `src/cli/visualize.ts`):
|
|
743
|
+
|
|
744
|
+
| Function | Purpose | When to Use |
|
|
745
|
+
|----------|---------|-------------|
|
|
746
|
+
| `progressBar` | Completion bar with % and count | Task/test progress |
|
|
747
|
+
| `stackedBar` + `stackedBarLegend` | Multi-segment status bar | Status distribution |
|
|
748
|
+
| `horizontalBarChart` | Labeled bar chart | Priority/type breakdowns |
|
|
749
|
+
| `miniGauge` | Compact colored gauge | Capacity/utilization |
|
|
750
|
+
| `sparkline` | Inline trend line | Historical data trends |
|
|
751
|
+
| `table` | Formatted data table | Task/agent listings |
|
|
752
|
+
| `tree` | Hierarchical tree view | Memory layers, task hierarchy |
|
|
753
|
+
| `box` | Bordered summary box | Section summaries |
|
|
754
|
+
| `statusBadge` | Colored status labels | Agent/service status |
|
|
755
|
+
| `keyValue` | Aligned key-value pairs | Metadata display |
|
|
756
|
+
| `inlineProgressSummary` | Compact progress bar with counts | After task mutations |
|
|
757
|
+
| `trend` | Up/down arrow with delta | Before/after comparisons |
|
|
758
|
+
| `heatmapRow` | Color-coded cell row | Activity density |
|
|
759
|
+
| `bulletList` | Status-colored bullet list | Health checks |
|
|
760
|
+
|
|
761
|
+
### Rules
|
|
762
|
+
|
|
763
|
+
1. **Never silently complete a UAM operation** -- always follow up with the relevant dashboard/status command
|
|
764
|
+
2. **Show numbers, not just success messages** -- the user needs to see counts, percentages, and trends
|
|
765
|
+
3. **Use `uam dashboard overview`** at session start to establish baseline awareness
|
|
766
|
+
4. **Use `uam task stats`** after any task state change to show the impact
|
|
767
|
+
5. **Use `uam memory status`** after any memory write to confirm storage and show capacity
|
|
768
|
+
6. **Prefer dashboard commands over raw SQLite queries** for status checks -- they provide formatted visual output
|
|
769
|
+
|
|
770
|
+
---
|
|
771
|
+
|
|
710
772
|
{{#if HAS_PROJECT_MD}}
|
|
711
773
|
{{> PROJECT}}
|
|
712
774
|
{{else}}
|