lynxprompt 0.2.1 → 0.3.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 +25 -0
- package/dist/index.js +992 -499
- package/dist/index.js.map +1 -1
- package/package.json +16 -2
package/README.md
CHANGED
|
@@ -105,6 +105,9 @@ Download and track a blueprint from the marketplace:
|
|
|
105
105
|
# Download and track
|
|
106
106
|
lynxp pull bp_abc123
|
|
107
107
|
|
|
108
|
+
# Push local file to cloud
|
|
109
|
+
lynxp push
|
|
110
|
+
|
|
108
111
|
# Preview content first
|
|
109
112
|
lynxp pull bp_abc123 --preview
|
|
110
113
|
|
|
@@ -139,6 +142,28 @@ lynxp diff bp_abc123
|
|
|
139
142
|
lynxp diff --local
|
|
140
143
|
```
|
|
141
144
|
|
|
145
|
+
### Push (`lynxp push`)
|
|
146
|
+
|
|
147
|
+
Upload a local configuration file to LynxPrompt cloud:
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
# Push current AGENTS.md (auto-detected)
|
|
151
|
+
lynxp push
|
|
152
|
+
|
|
153
|
+
# Push a specific file
|
|
154
|
+
lynxp push .cursor/rules/project.mdc
|
|
155
|
+
|
|
156
|
+
# Push with options
|
|
157
|
+
lynxp push AGENTS.md \
|
|
158
|
+
--name "My Project Rules" \
|
|
159
|
+
--description "AI config for my project" \
|
|
160
|
+
--visibility PUBLIC \
|
|
161
|
+
--tags "nextjs,typescript,react"
|
|
162
|
+
|
|
163
|
+
# Non-interactive mode
|
|
164
|
+
lynxp push -y --name "My Config"
|
|
165
|
+
```
|
|
166
|
+
|
|
142
167
|
### Search (`lynxp search`)
|
|
143
168
|
|
|
144
169
|
Search public blueprints in the marketplace:
|