syntaur 0.1.5 → 0.1.7

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.
@@ -660,6 +660,9 @@ async function readConfig() {
660
660
  return {
661
661
  version: fm["version"] || DEFAULT_CONFIG.version,
662
662
  defaultMissionDir: missionDir,
663
+ onboarding: {
664
+ completed: fm["onboarding.completed"] === "true"
665
+ },
663
666
  agentDefaults: {
664
667
  trustLevel: fm["agentDefaults.trustLevel"] || DEFAULT_CONFIG.agentDefaults.trustLevel,
665
668
  autoApprove: fm["agentDefaults.autoApprove"] === "true" || DEFAULT_CONFIG.agentDefaults.autoApprove
@@ -691,6 +694,9 @@ var init_config2 = __esm({
691
694
  DEFAULT_CONFIG = {
692
695
  version: "1.0",
693
696
  defaultMissionDir: defaultMissionDir(),
697
+ onboarding: {
698
+ completed: false
699
+ },
694
700
  agentDefaults: {
695
701
  trustLevel: "medium",
696
702
  autoApprove: false