@dev_desh/flux-cap 0.8.0 → 0.9.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/README.md +53 -5
- package/dist/index.js +44963 -4397
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -46,16 +46,58 @@ flux dump -i "add dark mode toggle" # Ideas
|
|
|
46
46
|
flux dump -n "team meeting at 3pm tomorrow" # Notes
|
|
47
47
|
flux dump -t "refactor payment processing logic" # Tasks
|
|
48
48
|
```
|
|
49
|
+
## 3. **New TUI Section** (add after Commands)
|
|
50
|
+
|
|
51
|
+
## Interactive TUI
|
|
52
|
+
|
|
53
|
+
Flux-Cap includes a terminal user interface for interactive searching:
|
|
54
|
+
|
|
55
|
+

|
|
56
|
+
|
|
57
|
+
### Features
|
|
58
|
+
- **Real-time Search**: Results update as you type
|
|
59
|
+
- **SearchV2 Integration**: Same scoring system as CLI search
|
|
60
|
+
- **Professional Layout**: Fixed table format matching CLI output
|
|
61
|
+
- **Context Tags**: Visual indicators for recent, same-branch, same-dir
|
|
62
|
+
- **Stable Interface**: Fixed height prevents layout jumps
|
|
63
|
+
- **Slash Commands**: Type `/exit` to quit cleanly
|
|
64
|
+
|
|
65
|
+
### Usage
|
|
66
|
+
```bash
|
|
67
|
+
# Start interactive search
|
|
68
|
+
flux u
|
|
69
|
+
|
|
70
|
+
# Search and navigate
|
|
71
|
+
# Type query -> See results instantly
|
|
72
|
+
# /exit -> Quit cleanly
|
|
73
|
+
```
|
|
49
74
|
|
|
50
75
|
### 3. Search your brain dumps with intelligent ranking
|
|
51
76
|
|
|
52
77
|
flux-cap now features **Search 2.0** - intelligent, context-aware search that prioritizes:
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
78
|
+
- **Recent dumps** (exponential decay scoring)
|
|
79
|
+
- **Same git branch** as your current work
|
|
80
|
+
- **Same working directory** context
|
|
81
|
+
- **Exact tag matches** (coming in v0.8.0)
|
|
82
|
+
- **Quick Brain Dumps**: Capture thoughts instantly with git context
|
|
83
|
+
- **SearchV2**: Multi-signal ranking (fuzzy + recency + git context)
|
|
84
|
+
- **Interactive TUI**: Real-time search with professional interface
|
|
85
|
+
- **Smart Scoring**: See relevance scores and context indicators
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## 📸 Screenshots
|
|
89
|
+
|
|
90
|
+
### CLI Search
|
|
91
|
+

|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Interactive TUI
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
### Search Comparison
|
|
99
|
+

|
|
57
100
|
|
|
58
|
-

|
|
59
101
|
|
|
60
102
|
```bash
|
|
61
103
|
# Smart context-aware search (NEW in v0.8.0!)
|
|
@@ -85,6 +127,12 @@ flux notes # All note-tagged dumps
|
|
|
85
127
|
- **Flexible filtering**: `--all`, `--since`, `--branch` flags override smart defaults
|
|
86
128
|
- **Fast & local**: No external APIs, blazing fast search results
|
|
87
129
|
|
|
130
|
+
### Interactive Search
|
|
131
|
+
```bash
|
|
132
|
+
flux u # Open interactive TUI search
|
|
133
|
+
flux ui # Same as above (alias)
|
|
134
|
+
```
|
|
135
|
+
|
|
88
136
|
### Privacy Controls
|
|
89
137
|
- Choose what information to track during setup
|
|
90
138
|
- Hide working directory paths, branch names, or git status
|