{
  "name": "@oshun/skill-system",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "libs/oshun/skill-system/src",
  "projectType": "library",
  "tags": ["scope:oshun", "layer:agentic", "type:lib"],
  "targets": {
    "build": {
      "executor": "@nx/js:tsc",
      "outputs": ["{options.outputPath}"],
      "options": {
        "outputPath": "dist/libs/oshun/skill-system",
        "main": "libs/oshun/skill-system/src/index.ts",
        "tsConfig": "libs/oshun/skill-system/tsconfig.lib.json",
        "assets": []
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "options": { "lintFilePatterns": ["libs/oshun/skill-system/**/*.ts"] }
    },
    "test": {
      "executor": "@nx/vite:test",
      "options": {
        "config": "libs/oshun/skill-system/vitest.config.ts",
        "passWithNoTests": false
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "libs/oshun/skill-system",
        "command": "tsc -p tsconfig.lib.json --noEmit && tsc -p tsconfig.spec.json --noEmit"
      }
    },
    "catalog": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/generated/catalog.json"],
      "options": {
        "command": "pnpm --filter @oshun/skill-system catalog:generate"
      }
    },
    "catalog-check": {
      "executor": "nx:run-commands",
      "options": {
        "command": "pnpm --filter @oshun/skill-system catalog:check"
      }
    }
  }
}
