mthds 0.0.9 → 0.0.10
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 +14 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,29 +8,27 @@ The MTHDS open standard is defined at [mthds.ai](https://mthds.ai). Browse and d
|
|
|
8
8
|
|
|
9
9
|
A method is a packaged workflow that an AI agent (like Claude Code) can use. Methods are stored in a registry and installed locally via their unique name.
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Quick Start
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
### Quick Start
|
|
13
|
+
1. Browse methods on the hub at [mthds.sh](https://mthds.sh)
|
|
16
14
|
|
|
15
|
+
2. Install a method:
|
|
17
16
|
```bash
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
# Or set up the pipelex runner (local)
|
|
22
|
-
mthds setup runner pipelex
|
|
23
|
-
|
|
24
|
-
# Run a pipeline
|
|
25
|
-
mthds run pipe my_pipe_code
|
|
17
|
+
mthds install org/repo --method my-method
|
|
18
|
+
```
|
|
26
19
|
|
|
27
|
-
|
|
28
|
-
|
|
20
|
+
3. Install a runner to execute methods. [Pipelex](https://github.com/Pipelex/pipelex) is the reference runner (Python):
|
|
21
|
+
```bash
|
|
22
|
+
mthds runner setup pipelex
|
|
23
|
+
```
|
|
29
24
|
|
|
30
|
-
|
|
31
|
-
|
|
25
|
+
4. Run a method:
|
|
26
|
+
```bash
|
|
27
|
+
mthds run method my-method
|
|
32
28
|
```
|
|
33
29
|
|
|
30
|
+
For the full CLI reference, see [CLI.md](./CLI.md).
|
|
31
|
+
|
|
34
32
|
### Install a method
|
|
35
33
|
|
|
36
34
|
```bash
|