arbiter-ai 1.0.1 → 1.0.2

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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/dist/sound.js CHANGED
@@ -39,7 +39,7 @@ export const SFX = {
39
39
  */
40
40
  export function playSfx(name) {
41
41
  const filename = SFX[name];
42
- const filepath = path.join(PACKAGE_ROOT, 'sounds', filename);
42
+ const filepath = path.join(PACKAGE_ROOT, 'assets', 'sounds', filename);
43
43
  player.play(filepath, (err) => {
44
44
  if (err) {
45
45
  // Silently ignore errors - sound is non-critical
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arbiter-ai",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Hierarchical AI orchestration system for extending Claude's effective context window while staying on task",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",