@master4n/master-cli 3.0.2 → 3.0.4

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 (60) hide show
  1. package/README.md +104 -21
  2. package/SECURITY.md +90 -0
  3. package/bin/catalog.agent.d.ts +3 -0
  4. package/bin/catalog.classic.d.ts +3 -0
  5. package/bin/catalog.d.ts +5 -1
  6. package/bin/catalog.os.d.ts +7 -0
  7. package/bin/catalog.power.d.ts +7 -0
  8. package/bin/commands/base.d.ts +7 -0
  9. package/bin/commands/calc.d.ts +7 -0
  10. package/bin/commands/case.d.ts +7 -0
  11. package/bin/commands/clip.d.ts +7 -0
  12. package/bin/commands/count.d.ts +7 -0
  13. package/bin/commands/cron.d.ts +7 -0
  14. package/bin/commands/cron.engine.d.ts +18 -0
  15. package/bin/commands/diff.d.ts +7 -0
  16. package/bin/commands/disk.d.ts +7 -0
  17. package/bin/commands/dns.d.ts +7 -0
  18. package/bin/commands/dotenv.d.ts +7 -0
  19. package/bin/commands/env.d.ts +7 -0
  20. package/bin/commands/epoch.interactive.d.ts +6 -0
  21. package/bin/commands/escape.d.ts +7 -0
  22. package/bin/commands/ext.d.ts +7 -0
  23. package/bin/commands/freq.d.ts +7 -0
  24. package/bin/commands/have.d.ts +7 -0
  25. package/bin/commands/http.d.ts +7 -0
  26. package/bin/commands/imports.d.ts +7 -0
  27. package/bin/commands/index.d.ts +39 -1
  28. package/bin/commands/ip.d.ts +7 -0
  29. package/bin/commands/json.d.ts +7 -0
  30. package/bin/commands/lines.d.ts +7 -0
  31. package/bin/commands/mcp.d.ts +7 -0
  32. package/bin/commands/notify.d.ts +7 -0
  33. package/bin/commands/open.d.ts +7 -0
  34. package/bin/commands/outline.d.ts +7 -0
  35. package/bin/commands/outline.engine.d.ts +13 -0
  36. package/bin/commands/pkg.d.ts +7 -0
  37. package/bin/commands/ports.d.ts +7 -0
  38. package/bin/commands/procs.d.ts +7 -0
  39. package/bin/commands/recent.d.ts +7 -0
  40. package/bin/commands/regex.d.ts +7 -0
  41. package/bin/commands/replace.d.ts +7 -0
  42. package/bin/commands/repo.d.ts +7 -0
  43. package/bin/commands/schema.d.ts +7 -0
  44. package/bin/commands/semver.d.ts +7 -0
  45. package/bin/commands/size.d.ts +7 -0
  46. package/bin/commands/sys.d.ts +7 -0
  47. package/bin/commands/trash.d.ts +7 -0
  48. package/bin/commands/url.d.ts +7 -0
  49. package/bin/commands/wait.d.ts +7 -0
  50. package/bin/index.js +6 -6
  51. package/bin/index.js.map +1 -1
  52. package/bin/interface/CliCommand.d.ts +15 -0
  53. package/bin/interface/index.d.ts +1 -0
  54. package/bin/utility/guard.d.ts +28 -0
  55. package/bin/utility/index.d.ts +1 -1
  56. package/bin/utility/mcp-server.d.ts +3 -0
  57. package/bin/utility/mcp-tools.d.ts +55 -0
  58. package/bin/utility/suggest.d.ts +6 -0
  59. package/llms.txt +120 -45
  60. package/package.json +10 -3
@@ -0,0 +1,7 @@
1
+ declare const regex: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => Promise<undefined>;
6
+ };
7
+ export default regex;
@@ -0,0 +1,7 @@
1
+ declare const replace: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => undefined;
6
+ };
7
+ export default replace;
@@ -0,0 +1,7 @@
1
+ declare const repo: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => Promise<undefined>;
6
+ };
7
+ export default repo;
@@ -0,0 +1,7 @@
1
+ declare const schema: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => Promise<undefined>;
6
+ };
7
+ export default schema;
@@ -0,0 +1,7 @@
1
+ declare const semver: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => void;
6
+ };
7
+ export default semver;
@@ -0,0 +1,7 @@
1
+ declare const size: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => undefined;
6
+ };
7
+ export default size;
@@ -0,0 +1,7 @@
1
+ declare const sys: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => void;
6
+ };
7
+ export default sys;
@@ -0,0 +1,7 @@
1
+ declare const trash: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => Promise<undefined>;
6
+ };
7
+ export default trash;
@@ -0,0 +1,7 @@
1
+ declare const url: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => undefined;
6
+ };
7
+ export default url;
@@ -0,0 +1,7 @@
1
+ declare const wait: {
2
+ command: string;
3
+ describe: string;
4
+ builder: (yargs: any) => any;
5
+ handler: (argv: any) => Promise<void>;
6
+ };
7
+ export default wait;