paperclip-github-plugin 0.2.2 → 0.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/README.md CHANGED
@@ -28,6 +28,7 @@ The plugin adds a full in-host workflow instead of a one-off import script:
28
28
 
29
29
  - a hosted settings page for GitHub auth, repository mappings, company defaults, and sync controls
30
30
  - a dashboard widget that shows readiness, sync status, and last-run results
31
+ - saved sync diagnostics that let operators inspect the latest per-issue failures, raw errors, and suggested next steps
31
32
  - manual sync actions from global, project, and issue toolbar surfaces
32
33
  - a GitHub detail tab on synced Paperclip issues
33
34
  - GitHub link annotations on sync-generated status transition comments when the host supports comment annotations
@@ -40,7 +41,7 @@ The plugin adds a full in-host workflow instead of a one-off import script:
40
41
 
41
42
  During sync, the plugin imports one top-level Paperclip issue per GitHub issue, updates already imported issues instead of recreating them, maps GitHub labels into Paperclip labels, and keeps GitHub-specific metadata in dedicated Paperclip surfaces rather than stuffing everything into the issue description.
42
43
 
43
- Long-running syncs continue in the background, so quick actions do not have to wait for the whole import to finish.
44
+ Long-running syncs continue in the background, so quick actions do not have to wait for the whole import to finish. Once a sync has started, the settings page, dashboard widget, and toolbar actions can request cancellation; the worker stops cooperatively after the current repository or issue step finishes.
44
45
 
45
46
  ## Highlights
46
47
 
@@ -170,9 +171,10 @@ When an agent posts a GitHub comment or review-thread reply through the plugin,
170
171
  - If setup is reported as incomplete, confirm that a GitHub token has been saved or that `~/.paperclip/plugins/github-sync/config.json` contains `githubToken`, and make sure at least one mapping has a created Paperclip project.
171
172
  - If Paperclip says board access is required, open plugin settings inside the affected company and complete the Paperclip board access flow before retrying sync.
172
173
  - If the worker reaches an authenticated HTML page instead of the Paperclip API JSON responses it expects, connect Paperclip board access for that company or set `PAPERCLIP_API_URL` to a worker-accessible Paperclip API origin.
174
+ - If a sync run finishes with partial failures, open the saved troubleshooting panel in GitHub Sync to inspect the repository, issue number, raw error, and suggested fix for each recorded failure.
173
175
  - If sync says the Paperclip API URL is not trusted, reopen the plugin from the current Paperclip host so the settings UI can refresh the saved origin, or set `PAPERCLIP_API_URL` for the worker.
174
176
  - If GitHub rate limiting is hit, the plugin pauses sync until the reported reset time instead of retrying pointlessly.
175
- - If a manual sync takes longer than the host action window, it continues in the background and updates the UI when it finishes.
177
+ - If a manual sync takes longer than the host action window, it continues in the background and updates the UI when it finishes or when a cancellation request stops it.
176
178
 
177
179
  ## Development
178
180
 
package/dist/manifest.js CHANGED
@@ -435,7 +435,7 @@ var require2 = createRequire(import.meta.url);
435
435
  var packageJson = require2("../package.json");
436
436
  var DASHBOARD_WIDGET_CAPABILITY = "ui.dashboardWidget.register";
437
437
  var SCHEDULE_TICK_CRON = "* * * * *";
438
- var MANIFEST_VERSION = "0.2.2"?.trim() || typeof packageJson.version === "string" && packageJson.version.trim() || process.env.npm_package_version?.trim() || "0.0.0-dev";
438
+ var MANIFEST_VERSION = "0.2.3"?.trim() || typeof packageJson.version === "string" && packageJson.version.trim() || process.env.npm_package_version?.trim() || "0.0.0-dev";
439
439
  var manifest = {
440
440
  id: "paperclip-github-plugin",
441
441
  apiVersion: 1,