AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Imscc Editor

skill-jasp-nerd-courseforge-imscc-editor · by jasp-nerd

Read, inspect, modify, validate, or repair Canvas LMS .imscc / IMS Common Cartridge course export files. Use whenever the user has a .imscc (or Common Cartridge .zip) file and wants to see what's inside, add/edit/remove pages, assignments, quizzes, or modules, fix a cartridge that fails to import into Canvas, or do the export → modify → re-import round-trip. Triggers on any mention of .imscc, Com…

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add skill-jasp-nerd-courseforge-imscc-editor

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access Used
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jasp-nerd-courseforge-imscc-editor)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Imscc Editor? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

IMSCC editor

A .imscc is a ZIP with imsmanifest.xml plus Canvas extension XMLs. The @courseforge/imscc library understands both; the full format anatomy is in [references/imscc-format.md](references/imscc-format.md) — consult it whenever a field is ambiguous.

Inspect

npx -y @courseforge/imscc inspect course.imscc     # structure as JSON
npx -y @courseforge/imscc validate course.imscc    # cross-reference invariants (the #1 import-failure cause)

Modify (export → modify → re-import loop)

Use the library in a small Node script (pnpm add @courseforge/imscc or run inside the CourseForge repo):

import { readFileSync, writeFileSync } from 'node:fs';
import { CartridgeEditor, validateCartridge } from '@courseforge/imscc';

const ed = CartridgeEditor.fromBytes(readFileSync('export.imscc'));
console.log(ed.listModules());

ed.addItem('Week 1', { type: 'page', title: 'Office hours', body: 'Tue 14:00' });
ed.addModule('Week 9 — Review');
ed.removeItem('Week 2', 'Old quiz');

const bytes = ed.toBytes();
console.log(validateCartridge(bytes));   // must have zero errors before shipping
writeFileSync('export-modified.imscc', bytes);

Item inputs are CourseSpec module items (see the canvas-course-builder skill's course-spec reference): page, assignment, quiz (+questions), discussion, link, file, header.

Key rules the editor enforces for you — don't work around them by hand-editing XML:

  • identifiers stay stable across edits, so Canvas updates instead of duplicating on re-import
  • manifest organization ↔ module_meta.xml stay consistent
  • removing an item removes its resources and files only when nothing else references them

Repair a failing import

  1. validate — every error names the dangling reference or missing file.
  2. Typical causes: an identifierref pointing at a deleted resource, a ` missing from the zip, imsmanifest.xml` not at the zip root, ids starting with a digit.
  3. Fix via CartridgeEditor (or parse with readCartridge, adjust, re-serialize), re-validate, then re-import.
  4. If Canvas imported but content is missing: check the migration issues (MCP tool list_migration_issues) and whether the cartridge lacked the Canvas flag file (course_settings/canvas_export.txt) — without it Canvas ignores all module/assignment settings.

Push back into Canvas

With courseforge-mcp connected: import_course_package (course_id + file path). Manually: Canvas → Settings → Import Course Content → Common Cartridge 1.x Package.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.