@maincode-ai/matilda-code 0.18.9 → 0.19.0
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 +0 -45
- package/chunks/{agent-GOOWZ6F7.js → agent-HQXJVWNV.js} +1 -1
- package/chunks/{agent-headless-FYT55CO3.js → agent-headless-JEQDQMD2.js} +1 -1
- package/chunks/{chunk-ZVKKN3WG.js → chunk-FHR4PQU4.js} +452 -452
- package/chunks/{chunk-IKFBSJXC.js → chunk-FZBNVQAK.js} +1 -1
- package/chunks/{chunk-T2NMK26P.js → chunk-KPVNVGPT.js} +1 -1
- package/chunks/{chunk-Q6C5K3YY.js → chunk-RIOYZMYO.js} +13 -13
- package/chunks/{chunk-VO2JBUPW.js → chunk-UCPCZNLX.js} +3 -3
- package/chunks/{chunk-Y2KRIHZQ.js → chunk-XOTRZSKL.js} +1 -1
- package/chunks/{computer-use-C5L6IOR4.js → computer-use-JEQXCG32.js} +1 -1
- package/chunks/{contextCommand-WKBZJUDM.js → contextCommand-N6WO7T6Y.js} +1 -1
- package/chunks/{edit-KBE2WJ4H.js → edit-HKSB4XDS.js} +1 -1
- package/chunks/{enter-worktree-EZHACH2E.js → enter-worktree-75VMHNQL.js} +1 -1
- package/chunks/{enterPlanMode-B4G2S3YT.js → enterPlanMode-DFXAPB2C.js} +1 -1
- package/chunks/{exit-worktree-OKQCXWIJ.js → exit-worktree-H5O6VDZ4.js} +1 -1
- package/chunks/{exitPlanMode-5TI7J32L.js → exitPlanMode-AUYIUGMB.js} +1 -1
- package/chunks/{geminiContentGenerator-IXUUFSPV.js → geminiContentGenerator-W22MIORO.js} +1 -1
- package/chunks/{glob-UINEPTF2.js → glob-QJNBNWZR.js} +1 -1
- package/chunks/{grep-L7R7NTYF.js → grep-MMFCVW2R.js} +1 -1
- package/chunks/{matildaAgentContentGenerator-P353UXQ5.js → matildaAgentContentGenerator-SF2SKGQZ.js} +1 -1
- package/chunks/{matildaContentGenerator-4PRNXQFW.js → matildaContentGenerator-KBHUJJSD.js} +1 -1
- package/chunks/{monitor-DHVRPWRA.js → monitor-J5QDRKDF.js} +1 -1
- package/chunks/{notebook-edit-6JEN5B2C.js → notebook-edit-3JCVXLO7.js} +1 -1
- package/chunks/{openaiContentGenerator-JUAQWWZW.js → openaiContentGenerator-JZSNF4UJ.js} +1 -1
- package/chunks/{ripGrep-IFQZBMJM.js → ripGrep-6G4YGFS7.js} +1 -1
- package/chunks/{scheduler-GMYLGHRU.js → scheduler-AJOK5IA2.js} +1 -1
- package/chunks/{serve-BZCBBVYK.js → serve-VOKMKJM2.js} +1 -1
- package/chunks/{shell-NBSDEF4X.js → shell-6WBO3IXW.js} +1 -1
- package/chunks/{src-V45EBAJO.js → src-2ZZ5NI3R.js} +1 -1
- package/chunks/{team-create-HINAUE7Q.js → team-create-QIVBHWVZ.js} +1 -1
- package/chunks/{web-search-JYSAVXQZ.js → web-search-3F5JHEJW.js} +1 -1
- package/chunks/{workflow-RL4VXOAN.js → workflow-6UA4CJQT.js} +2 -2
- package/chunks/{write-file-736524BJ.js → write-file-3AXYXY35.js} +1 -1
- package/cli.js +376 -375
- package/package.json +3 -3
- /package/chunks/{tree-sitter-TRLHGFF6.js → tree-sitter-SJW2MKGF.js} +0 -0
- /package/chunks/{tree-sitter-bash-5CI7UGKF.js → tree-sitter-bash-XNCMPQBK.js} +0 -0
package/README.md
CHANGED
|
@@ -1,50 +1,5 @@
|
|
|
1
1
|
# Matilda Code
|
|
2
2
|
|
|
3
|
-
Matilda Code is an AI coding agent for your terminal. It reads, writes, and
|
|
4
|
-
runs code alongside you — shell commands, file edits, web search, and more —
|
|
5
|
-
from a single CLI.
|
|
6
|
-
|
|
7
|
-
## Install
|
|
8
|
-
|
|
9
3
|
```bash
|
|
10
4
|
npm install -g @maincode-ai/matilda-code
|
|
11
5
|
```
|
|
12
|
-
|
|
13
|
-
Requires Node.js 20 or later.
|
|
14
|
-
|
|
15
|
-
## Sign in
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
matilda auth login
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
This opens your browser to sign in with your Matilda account. Once approved,
|
|
22
|
-
you're ready to go — credentials are stored locally for future runs.
|
|
23
|
-
|
|
24
|
-
For CI and other non-interactive environments, set `MATILDA_API_KEY` instead:
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
export MATILDA_API_KEY=...
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
## Use it
|
|
31
|
-
|
|
32
|
-
```bash
|
|
33
|
-
# Interactive session
|
|
34
|
-
matilda
|
|
35
|
-
|
|
36
|
-
# One-shot prompt
|
|
37
|
-
matilda -p "explain this repo's build setup"
|
|
38
|
-
|
|
39
|
-
# Pipe in context
|
|
40
|
-
git diff | matilda -p "review this diff"
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
## Learn more
|
|
44
|
-
|
|
45
|
-
- Docs: https://matilda.maincode.help
|
|
46
|
-
- Package: https://www.npmjs.com/package/@maincode-ai/matilda-code
|
|
47
|
-
|
|
48
|
-
## License
|
|
49
|
-
|
|
50
|
-
Apache-2.0
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// Force strict mode and setup for ESM
|
|
2
2
|
"use strict";
|
|
3
|
-
import{Rf as a,Sf as b,Tf as c,Uf as d,Vf as e,Wf as f}from"./chunk-
|
|
3
|
+
import{Rf as a,Sf as b,Tf as c,Uf as d,Vf as e,Wf as f}from"./chunk-FHR4PQU4.js";import"./chunk-TZIDSCTF.js";import"./chunk-FUNLOUYI.js";import"./chunk-R3H6IWFK.js";import"./chunk-OMZ5SGMK.js";import"./chunk-S32ZN6LD.js";import"./chunk-OQ73WWR4.js";import"./chunk-RBG4ERTN.js";import"./chunk-TXMXCR7D.js";import"./chunk-YULUB745.js";import"./chunk-LQWORCPO.js";import"./chunk-TISQNFB5.js";import"./chunk-47XR7IMP.js";import"./chunk-QEI3OETI.js";import"./chunk-QKYGQLWC.js";import"./chunk-MNGFXISD.js";import"./chunk-4R2OFVPK.js";import"./chunk-RNKDFE2S.js";import"./chunk-EMWHQSMS.js";import"./chunk-S4K76QPI.js";import"./chunk-FZBNVQAK.js";import"./chunk-4F4DA5UI.js";import"./chunk-2MEHZGZJ.js";import"./chunk-LN2DRVOB.js";import"./chunk-4J6DC24J.js";import"./chunk-LJR4RZZ2.js";import"./chunk-U347OO7S.js";import"./chunk-DY6PIAAY.js";import"./chunk-WVY2P6WH.js";import"./chunk-UIRBHC5X.js";import"./chunk-UY2R3ZQ4.js";import"./chunk-4M4CUQUR.js";import"./chunk-X6DODPXG.js";import"./chunk-LLQVLTPB.js";import"./chunk-XKDGRW3K.js";import"./chunk-ESSYHTAZ.js";import"./chunk-IOCF4XSR.js";import"./chunk-QWBNNEV2.js";import"./chunk-G7R2XEEF.js";import"./chunk-OA56BXPD.js";import"./chunk-FWDMPRKU.js";import"./chunk-GZPNIYVZ.js";import"./chunk-OWGSC52X.js";export{f as AgentTool,b as TOOL_REGISTRY_REBUILT,e as createApprovalModeOverride,c as hasRebuiltToolRegistry,d as rebuildToolRegistryOnOverride,a as resolveSubagentApprovalMode};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// Force strict mode and setup for ESM
|
|
2
2
|
"use strict";
|
|
3
|
-
import{qf as a,rf as b,sf as c}from"./chunk-
|
|
3
|
+
import{qf as a,rf as b,sf as c}from"./chunk-FHR4PQU4.js";import"./chunk-TZIDSCTF.js";import"./chunk-FUNLOUYI.js";import"./chunk-R3H6IWFK.js";import"./chunk-OMZ5SGMK.js";import"./chunk-S32ZN6LD.js";import"./chunk-OQ73WWR4.js";import"./chunk-RBG4ERTN.js";import"./chunk-TXMXCR7D.js";import"./chunk-YULUB745.js";import"./chunk-LQWORCPO.js";import"./chunk-TISQNFB5.js";import"./chunk-47XR7IMP.js";import"./chunk-QEI3OETI.js";import"./chunk-QKYGQLWC.js";import"./chunk-MNGFXISD.js";import"./chunk-4R2OFVPK.js";import"./chunk-RNKDFE2S.js";import"./chunk-EMWHQSMS.js";import"./chunk-S4K76QPI.js";import"./chunk-FZBNVQAK.js";import"./chunk-4F4DA5UI.js";import"./chunk-2MEHZGZJ.js";import"./chunk-LN2DRVOB.js";import"./chunk-4J6DC24J.js";import"./chunk-LJR4RZZ2.js";import"./chunk-U347OO7S.js";import"./chunk-DY6PIAAY.js";import"./chunk-WVY2P6WH.js";import"./chunk-UIRBHC5X.js";import"./chunk-UY2R3ZQ4.js";import"./chunk-4M4CUQUR.js";import"./chunk-X6DODPXG.js";import"./chunk-LLQVLTPB.js";import"./chunk-XKDGRW3K.js";import"./chunk-ESSYHTAZ.js";import"./chunk-IOCF4XSR.js";import"./chunk-QWBNNEV2.js";import"./chunk-G7R2XEEF.js";import"./chunk-OA56BXPD.js";import"./chunk-FWDMPRKU.js";import"./chunk-GZPNIYVZ.js";import"./chunk-OWGSC52X.js";export{c as AgentHeadless,a as ContextState,b as templateString};
|