archgraph-argo 0.6.5 → 0.6.6

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 (2) hide show
  1. package/install-argo.ps1 +2 -2
  2. package/package.json +1 -1
package/install-argo.ps1 CHANGED
@@ -67,11 +67,11 @@ function Add-AgentsRule {
67
67
  )
68
68
 
69
69
  New-Item -ItemType Directory -Force -Path (Split-Path $AgentsPath) | Out-Null
70
- $ruleContent = Get-Content $RulePath -Raw
70
+ $ruleContent = Get-Content $RulePath -Raw -Encoding UTF8
71
71
  $marker = 'ArchGraph ARGO Workflow Rules'
72
72
 
73
73
  if (Test-Path $AgentsPath) {
74
- $existing = Get-Content $AgentsPath -Raw
74
+ $existing = Get-Content $AgentsPath -Raw -Encoding UTF8
75
75
  if ($existing -like "*$marker*") {
76
76
  return
77
77
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "archgraph-argo",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "Deploy the ArchGraph ARGO toolchain, skills, and rules (schema, scripts, argo-init skill, global rule) with one command.",
5
5
  "license": "MIT",
6
6
  "bin": {