skillscript-runtime 0.5.0 → 0.7.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.
@@ -9,9 +9,9 @@ fetch_issues: fetch_me
9
9
  $ youtrack.search_issues query="for: me" limit=5 -> RAW
10
10
 
11
11
  report: fetch_issues
12
- ! Morning sweep for $(ME.login):
13
- ! Open issues assigned: $(RAW.issuesPage|length)
14
- foreach I in $(RAW.issuesPage):
15
- ! - $(I.id): $(I.summary)
12
+ emit(text="Morning sweep for ${ME.login}:")
13
+ emit(text="Open issues assigned: ${RAW.issuesPage|length}")
14
+ foreach I in ${RAW.issuesPage}:
15
+ emit(text="- ${I.id}: ${I.summary}")
16
16
 
17
17
  default: report
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillscript-runtime",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
4
4
  "description": "Runtime, compiler, lint, CLI, and dashboard for Skillscript — a small declarative language for authoring agent workflows.",
5
5
  "license": "MIT",
6
6
  "author": "Scott Shwarts <scotts@pobox.com>",