@pheem49/mint 1.5.1 → 1.5.2
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 +8 -0
- package/mint-cli.js +148 -921
- package/models/Shiroko_Model/Shiroko/Shiroko_Core//345/221/206/347/214/253.exp3.json +31 -1
- package/models/Shiroko_Model/Shiroko/Shiroko_Core//347/202/271/344/270/200/344/270/213.exp3.json +6 -1
- package/package.json +18 -20
- package/src/AI_Brain/proactive_engine.js +12 -2
- package/src/Automation_Layer/browser_automation.js +26 -24
- package/src/CLI/approval_handler.js +42 -0
- package/src/CLI/chat_ui.js +192 -7
- package/src/CLI/cli_colors.js +32 -0
- package/src/CLI/cli_formatters.js +89 -0
- package/src/CLI/code_agent.js +166 -57
- package/src/CLI/intent_detectors.js +181 -0
- package/src/CLI/interactive_chat.js +479 -0
- package/src/CLI/list_features.js +3 -0
- package/src/CLI/repo_summarizer.js +282 -0
- package/src/CLI/semantic_code_search.js +312 -0
- package/src/CLI/skill_manager.js +41 -0
- package/src/CLI/slash_command_handler.js +418 -0
- package/src/CLI/symbol_indexer.js +231 -0
- package/src/Channels/discord_bridge.js +11 -13
- package/src/Channels/line_bridge.js +10 -10
- package/src/Channels/slack_bridge.js +7 -12
- package/src/Channels/telegram_bridge.js +6 -14
- package/src/Channels/whatsapp_bridge.js +11 -9
- package/src/System/chat_history_manager.js +20 -12
- package/src/System/optional_require.js +23 -0
- package/src/UI/live2d_manager.js +211 -13
- package/src/UI/renderer.js +163 -3
- package/src/UI/settings.css +655 -420
- package/src/UI/settings.html +478 -432
- package/src/UI/settings.js +10 -8
- package/src/UI/styles.css +89 -25
package/README.md
CHANGED
|
@@ -185,6 +185,10 @@ npm start
|
|
|
185
185
|
- `mint learn ./skill.md` - Read a local `.md` or `.txt` file and remember it as a persistent Mint skill/instruction.
|
|
186
186
|
- `mint learn --list` - List learned skill files.
|
|
187
187
|
- `mint learn --delete <id|path|name>` - Delete a learned skill by ID, path, or file name.
|
|
188
|
+
- `mint summarize [path]` - Summarize repository structure, package metadata, git state, and key files.
|
|
189
|
+
- `mint symbols [path]` - Build a local source symbol index for supported code files.
|
|
190
|
+
- `mint semantic-code index [path]` - Create embeddings for local source code chunks.
|
|
191
|
+
- `mint semantic-code search "<query>"` - Search the indexed code semantically.
|
|
188
192
|
- `mint code "<task>"` - Run a specific coding task in the current workspace.
|
|
189
193
|
- `mint code --image ./mockup.png "Build this UI"` - Attach an image as visual context for a coding task.
|
|
190
194
|
- `mint gmail auth` - Open Google OAuth and save a Gmail refresh token.
|
|
@@ -266,6 +270,10 @@ Inside `mint`:
|
|
|
266
270
|
|
|
267
271
|
- `/help` - Show commands.
|
|
268
272
|
- `/fast [on|off|status]` - Toggle Fast Mode. Fast Mode shows `[Fast]`, keeps `Mint is thinking...`, and hides `Thinking:`/progress trace messages.
|
|
273
|
+
- `/summarize [path] [--json]` - Summarize the current repository without using the AI agent.
|
|
274
|
+
- `/symbols [path] [--json] [--limit n]` - Build a local source symbol index without using the AI agent.
|
|
275
|
+
- `/semantic-code index` - Create embeddings for source code chunks in the current workspace.
|
|
276
|
+
- `/semantic-code search <query>` - Search the indexed code semantically.
|
|
269
277
|
- `/learn <path>` - Read a local `.md` or `.txt` file and remember it as a persistent Mint skill/instruction.
|
|
270
278
|
- `/memory skills` - Show learned skill files.
|
|
271
279
|
- `/memory skills delete <id|path|name>` - Delete a learned skill.
|