context-dropper 0.1.4 → 0.1.5
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 +26 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,24 +3,45 @@
|
|
|
3
3
|
`context-dropper` is a CLI for iterating through a fixed list of files, tracking
|
|
4
4
|
position, and tagging progress.
|
|
5
5
|
|
|
6
|
-
##
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
You can install `context-dropper` using one of the following methods.
|
|
9
|
+
|
|
10
|
+
### 1. Download Pre-compiled Binary (Recommended)
|
|
11
|
+
|
|
12
|
+
Download the latest standalone executable for your operating system from the [Releases](https://github.com/fardjad/context-dropper/releases) page. Ensure it is executable and in your `PATH`.
|
|
7
13
|
|
|
8
14
|
```bash
|
|
9
|
-
|
|
15
|
+
chmod +x context-dropper
|
|
16
|
+
mv context-dropper /usr/local/bin/
|
|
10
17
|
```
|
|
11
18
|
|
|
12
|
-
|
|
19
|
+
### 2. Install via Package Manager
|
|
20
|
+
|
|
21
|
+
You can install the package globally from NPM.
|
|
22
|
+
|
|
23
|
+
**Bun:**
|
|
13
24
|
|
|
14
25
|
```bash
|
|
15
|
-
bun
|
|
26
|
+
bun install -g context-dropper
|
|
16
27
|
```
|
|
17
28
|
|
|
18
|
-
|
|
29
|
+
**NPM:**
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm install -g context-dropper
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Then run it anywhere:
|
|
19
36
|
|
|
20
37
|
```bash
|
|
21
38
|
context-dropper --help
|
|
22
39
|
```
|
|
23
40
|
|
|
41
|
+
### 3. Build from Source (Development)
|
|
42
|
+
|
|
43
|
+
To develop, compile binaries from source, or contribute to the project, please refer to the [Contributing Guide](CONTRIBUTING.md).
|
|
44
|
+
|
|
24
45
|
## Command Shape
|
|
25
46
|
|
|
26
47
|
```bash
|
package/dist/index.js
CHANGED
|
@@ -6558,7 +6558,7 @@ function createFilesetCommand(deps) {
|
|
|
6558
6558
|
// package.json
|
|
6559
6559
|
var package_default = {
|
|
6560
6560
|
name: "context-dropper",
|
|
6561
|
-
version: "0.1.
|
|
6561
|
+
version: "0.1.5",
|
|
6562
6562
|
description: "CLI for iterating through a fixed list of files, tracking position, and tagging progress within an AI agent's session.",
|
|
6563
6563
|
author: {
|
|
6564
6564
|
name: "Fardjad Davari",
|
package/package.json
CHANGED