agentlang 0.3.0 → 0.3.1

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 (79) hide show
  1. package/README.md +276 -30
  2. package/out/api/http.d.ts.map +1 -1
  3. package/out/api/http.js +5 -3
  4. package/out/api/http.js.map +1 -1
  5. package/out/language/agentlang-validator.d.ts.map +1 -1
  6. package/out/language/agentlang-validator.js +24 -4
  7. package/out/language/agentlang-validator.js.map +1 -1
  8. package/out/language/generated/ast.d.ts +58 -7
  9. package/out/language/generated/ast.d.ts.map +1 -1
  10. package/out/language/generated/ast.js +82 -1
  11. package/out/language/generated/ast.js.map +1 -1
  12. package/out/language/generated/grammar.d.ts.map +1 -1
  13. package/out/language/generated/grammar.js +537 -216
  14. package/out/language/generated/grammar.js.map +1 -1
  15. package/out/language/main.cjs +614 -221
  16. package/out/language/main.cjs.map +2 -2
  17. package/out/runtime/agents/common.d.ts +11 -0
  18. package/out/runtime/agents/common.d.ts.map +1 -1
  19. package/out/runtime/agents/common.js +61 -1
  20. package/out/runtime/agents/common.js.map +1 -1
  21. package/out/runtime/exec-graph.d.ts.map +1 -1
  22. package/out/runtime/exec-graph.js +1 -7
  23. package/out/runtime/exec-graph.js.map +1 -1
  24. package/out/runtime/interpreter.d.ts.map +1 -1
  25. package/out/runtime/interpreter.js +45 -17
  26. package/out/runtime/interpreter.js.map +1 -1
  27. package/out/runtime/loader.d.ts +3 -4
  28. package/out/runtime/loader.d.ts.map +1 -1
  29. package/out/runtime/loader.js +91 -12
  30. package/out/runtime/loader.js.map +1 -1
  31. package/out/runtime/module.d.ts +34 -5
  32. package/out/runtime/module.d.ts.map +1 -1
  33. package/out/runtime/module.js +190 -18
  34. package/out/runtime/module.js.map +1 -1
  35. package/out/runtime/modules/ai.d.ts.map +1 -1
  36. package/out/runtime/modules/ai.js +15 -6
  37. package/out/runtime/modules/ai.js.map +1 -1
  38. package/out/runtime/modules/auth.d.ts.map +1 -1
  39. package/out/runtime/modules/auth.js +42 -43
  40. package/out/runtime/modules/auth.js.map +1 -1
  41. package/out/runtime/modules/core.js +1 -1
  42. package/out/runtime/modules/files.d.ts +18 -0
  43. package/out/runtime/modules/files.d.ts.map +1 -0
  44. package/out/runtime/modules/files.js +116 -0
  45. package/out/runtime/modules/files.js.map +1 -0
  46. package/out/runtime/util.d.ts +3 -1
  47. package/out/runtime/util.d.ts.map +1 -1
  48. package/out/runtime/util.js +16 -0
  49. package/out/runtime/util.js.map +1 -1
  50. package/out/setupClassic.d.ts +98 -0
  51. package/out/setupClassic.d.ts.map +1 -0
  52. package/out/setupClassic.js +38 -0
  53. package/out/setupClassic.js.map +1 -0
  54. package/out/setupCommon.d.ts +2 -0
  55. package/out/setupCommon.d.ts.map +1 -0
  56. package/out/setupCommon.js +33 -0
  57. package/out/setupCommon.js.map +1 -0
  58. package/out/setupExtended.d.ts +40 -0
  59. package/out/setupExtended.d.ts.map +1 -0
  60. package/out/setupExtended.js +67 -0
  61. package/out/setupExtended.js.map +1 -0
  62. package/out/syntaxes/agentlang.monarch.js +1 -1
  63. package/out/syntaxes/agentlang.monarch.js.map +1 -1
  64. package/package.json +183 -182
  65. package/src/api/http.ts +5 -3
  66. package/src/language/agentlang-validator.ts +29 -4
  67. package/src/language/agentlang.langium +15 -3
  68. package/src/language/generated/ast.ts +149 -7
  69. package/src/language/generated/grammar.ts +537 -216
  70. package/src/runtime/agents/common.ts +69 -1
  71. package/src/runtime/exec-graph.ts +1 -8
  72. package/src/runtime/interpreter.ts +47 -16
  73. package/src/runtime/loader.ts +105 -9
  74. package/src/runtime/module.ts +213 -24
  75. package/src/runtime/modules/ai.ts +12 -5
  76. package/src/runtime/modules/auth.ts +42 -43
  77. package/src/runtime/modules/core.ts +1 -1
  78. package/src/runtime/util.ts +19 -0
  79. package/src/syntaxes/agentlang.monarch.ts +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"grammar.d.ts","sourceRoot":"","sources":["../../../src/language/generated/grammar.ts"],"names":[],"mappings":"AAAA;;;gFAGgF;AAEhF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAIvC,eAAO,MAAM,gBAAgB,QAAO,OAkzLhC,CAAC"}
1
+ {"version":3,"file":"grammar.d.ts","sourceRoot":"","sources":["../../../src/language/generated/grammar.ts"],"names":[],"mappings":"AAAA;;;gFAGgF;AAEhF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAIvC,eAAO,MAAM,gBAAgB,QAAO,OAmnMhC,CAAC"}