@knowsuchagency/fulcrum 1.2.2 → 1.2.3

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.
package/bin/fulcrum.js CHANGED
@@ -47903,7 +47903,7 @@ function installUv() {
47903
47903
  var package_default = {
47904
47904
  name: "@knowsuchagency/fulcrum",
47905
47905
  private: true,
47906
- version: "1.2.2",
47906
+ version: "1.2.3",
47907
47907
  description: "Harness Attention. Orchestrate Agents. Ship.",
47908
47908
  license: "PolyForm-Perimeter-1.0.0",
47909
47909
  type: "module",
@@ -48945,7 +48945,7 @@ import { join as join5 } from "path";
48945
48945
  var plugin_default = `{
48946
48946
  "name": "fulcrum",
48947
48947
  "description": "Fulcrum task orchestration for Claude Code",
48948
- "version": "1.2.2",
48948
+ "version": "1.2.3",
48949
48949
  "author": {
48950
48950
  "name": "Fulcrum"
48951
48951
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowsuchagency/fulcrum",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Harness Attention. Orchestrate Agents. Ship.",
5
5
  "license": "PolyForm-Perimeter-1.0.0",
6
6
  "repository": {
package/server/index.js CHANGED
@@ -5604,6 +5604,9 @@ function migrateRepositoriesToProjects(sqlite) {
5604
5604
  WHERE NOT EXISTS (
5605
5605
  SELECT 1 FROM projects p WHERE p.repository_id = r.id
5606
5606
  )
5607
+ AND NOT EXISTS (
5608
+ SELECT 1 FROM project_repositories pr WHERE pr.repository_id = r.id
5609
+ )
5607
5610
  `).all();
5608
5611
  if (orphanedRepos.length === 0)
5609
5612
  return;