@lmctl-ai/lmctl 0.1.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.
Files changed (29) hide show
  1. package/LICENSE +36 -0
  2. package/README.md +36 -0
  3. package/bin/lmctl +4 -0
  4. package/dist/cli/index.js +2180 -0
  5. package/dist/cli/schema.sql +660 -0
  6. package/dist/cli/side_effect_classifier.json +19 -0
  7. package/dist/config/ai_test_templates/example-test.md.template +50 -0
  8. package/dist/config/ai_test_templates/index.md.template +27 -0
  9. package/dist/config/durable_memory_templates/index.md.template +29 -0
  10. package/dist/config/durable_memory_templates/skills_general.md.template +42 -0
  11. package/dist/config/durable_memory_templates/skills_lmdebug.md.template +31 -0
  12. package/dist/config/durable_memory_templates/skills_lmprobe.md.template +31 -0
  13. package/package.json +42 -0
  14. package/workflows/bugfix-extended-v2.compound.json +1018 -0
  15. package/workflows/bugfix-v2.compound.json +856 -0
  16. package/workflows/claim-check-spike-v2.compound.json +136 -0
  17. package/workflows/document-creation.compound.json +200 -0
  18. package/workflows/durable-memory-consolidation-v2.compound.json +185 -0
  19. package/workflows/example-v2.compound.json +200 -0
  20. package/workflows/image-qa.compound.json +128 -0
  21. package/workflows/index.jsonl +15 -0
  22. package/workflows/info-qa.compound.json +120 -0
  23. package/workflows/newspaper.compound.json +129 -0
  24. package/workflows/pr-fix.compound.json +183 -0
  25. package/workflows/pr-followup-v2.compound.json +969 -0
  26. package/workflows/provider-probe.compound.json +107 -0
  27. package/workflows/qa-suite.compound.json +186 -0
  28. package/workflows/spec-driven-task.compound.json +460 -0
  29. package/workflows/triage-v2.compound.json +721 -0
package/LICENSE ADDED
@@ -0,0 +1,36 @@
1
+ lmctl — Proprietary License (Public Preview)
2
+
3
+ Copyright (c) 2026 Lattice Systems LLC. All rights reserved.
4
+
5
+ lmctl is closed-source, proprietary software distributed in binary form
6
+ only. No source code is licensed, disclosed, or otherwise made available by
7
+ this distribution.
8
+
9
+ 1. Grant. Subject to the terms below, you are granted a personal,
10
+ non-exclusive, non-transferable, revocable license to download, install,
11
+ and use this binary distribution of lmctl, free of charge, during the
12
+ public preview.
13
+
14
+ 2. Restrictions. You may NOT:
15
+ a. redistribute, publish, sublicense, rent, lease, lend, or sell this
16
+ software or any copy or portion of it;
17
+ b. host, offer, or operate it as a service for any third party;
18
+ c. reverse engineer, decompile, or disassemble the binary, except to the
19
+ extent that this restriction is expressly prohibited by applicable law;
20
+ d. remove, obscure, or alter this license or any proprietary notices.
21
+
22
+ 3. Reservation. All rights not expressly granted are reserved by the
23
+ licensor. The licensor may release future versions of lmctl under
24
+ different terms, including paid or commercial terms, at its sole
25
+ discretion. The free public-preview grant in Section 1 applies only to the
26
+ version(s) expressly distributed under it and confers no right to any
27
+ future version.
28
+
29
+ 4. No warranty. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
30
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
32
+
33
+ 5. Limitation of liability. IN NO EVENT SHALL THE LICENSOR BE LIABLE FOR ANY
34
+ CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
35
+ TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE
36
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # lmctl
2
+
3
+ `lmctl` is a workflow engine and CLI for orchestrating durable, multi-step
4
+ agent workflows.
5
+
6
+ > **Public preview.** Free to use during the preview. The source is
7
+ > proprietary — see `LICENSE`. This is a staging release candidate.
8
+
9
+ ## Install
10
+
11
+ ```sh
12
+ npm install -g lmctl@staging
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```sh
18
+ lmctl --help
19
+ lmctl workflow --help
20
+ lmctl status
21
+ ```
22
+
23
+ `lmctl` provides subcommands including `api`, `chat`, `code`, `serve`,
24
+ `intake`, `mcp`, `monitor`, `team`, `workflow`, `project`, `workspace`,
25
+ `diagnose`, `init`, `status`, and `db`. Run `lmctl <command> --help` for
26
+ details on each.
27
+
28
+ ## Requirements
29
+
30
+ - Node.js >= 20
31
+
32
+ ## License
33
+
34
+ Proprietary — free during the public preview. Not licensed for
35
+ redistribution or modification. See [`LICENSE`](./LICENSE). Provided as-is,
36
+ without warranty.
package/bin/lmctl ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { runCli } from '../dist/cli/index.js';
3
+
4
+ process.exitCode = await runCli(process.argv.slice(2));