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

Rseng Open Source Migration

skill-fdiblen-rseng-agent-skills-rseng-open-source-migration · by fdiblen

>-

— No reviews yet
0 installs
23 views
0.0% view→install

Install

$ agentstack add skill-fdiblen-rseng-agent-skills-rseng-open-source-migration

✓ 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 No
  • ✓ 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-fdiblen-rseng-agent-skills-rseng-open-source-migration)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 19d 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 Rseng Open Source Migration? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Migrating from commercial platforms to open source

Research code locked to a commercial platform has a structural problem: every user, collaborator, student, reviewer and CI runner needs a license, and reproducibility acquires an expiry date tied to a vendor. Migration to open alternatives removes the toll booth and makes the work FAIR in practice (rseng-fair-software) - but a naive "translate the syntax" migration produces subtly wrong science. The discipline: pin behavior first, choose the target honestly, migrate incrementally with numerical parity as the acceptance test. The general safety net (characterization tests, strangler migration) lives in rseng-legacy-code; this skill adds the platform-specific knowledge.

Before migrating: pin the baseline

While the commercial license still works, capture everything the migration must reproduce (this window may not stay open):

  • Run the original on representative inputs and save inputs and

outputs as the golden baseline (rseng-legacy-code's characterization tests).

  • Record the platform version, toolbox versions and settings that

produced the baseline.

  • Export data OUT of proprietary formats now: .mat to HDF5-based or

open formats, SAS/SPSS/Stata files to open tabular formats (rseng-scientific-file-formats) - data freedom precedes code freedom, and readers for proprietary formats are better used while a licensed installation can verify the export.

Choosing the target

  • MATLAB, two honest paths: GNU Octave runs most plain MATLAB with

minimal changes - the low-cost exit when the goal is simply license freedom; Python/NumPy/SciPy is the larger move that buys ecosystem, packaging (rseng-project-scaffolding) and hiring, at the cost of a real port. Choose Octave for frozen-but-must-run code, Python for code with a future. (Simulink has no clean open equivalent - flag it as the hard part early.)

  • IDL: Python is the community-standard destination (astronomy's

stack - astropy and friends - exists precisely from this migration).

  • SAS/SPSS/Stata: R (statistical depth, native model objects) or

pandas/statsmodels; verify statistical defaults match - the same named procedure can use different degrees-of-freedom or contrast conventions, which is a science difference, not a bug.

  • Mathematica: SymPy for symbolic work, Julia for symbolic-numeric

blends.

  • LabVIEW and instrument control: Python instrument stacks are the

destination, but hardware interfaces make this a re-engineering project, not a translation.

  • Whatever the target, check whether the field already has an open

reimplementation of the domain workflow before porting line by line (rseng-software-reuse) - many "migrations" should be adoptions.

Translation pitfalls (where silent wrongness lives)

The famous ones an agent must actively check, not discover:

  • Indexing: MATLAB/Octave/R/Julia are 1-based, column-major;

NumPy is 0-based, row-major. Every hand-translated index and every reshape/flatten is a suspect until tested.

  • Copy semantics: MATLAB copies on assignment; NumPy slices are

VIEWS - in-place modification after translation corrupts data that MATLAB code safely mutated.

  • Broadcasting and implicit expansion rules differ in edges;

element-wise vs matrix operators (. vs ) invert their defaultness between MATLAB and NumPy.

  • Toolbox calls map to ecosystems, not functions: Signal Processing

Toolbox to scipy.signal, Statistics Toolbox to statsmodels/scipy. stats, Image Processing to scikit-image - map the WORKFLOW to the library's idiom instead of reimplementing the MATLAB function signature.

  • Numerical defaults: solvers, tolerances, RNG algorithms and seeds

differ across platforms; identical seeds do NOT give identical streams, so statistical results match in distribution, not bitwise (rseng-numerical-accuracy sets the tolerance discipline, rseng-reproducibility the seed bookkeeping).

  • Automatic translators (MATLAB-to-Python converters and similar)

produce a starting draft at best: un-idiomatic, license-check the output, and every translated function still needs its parity test. Interop bridges (oct2py running Octave from Python) are better used as migration scaffolding - call the old implementation module by module while the new one grows - than as a destination.

Migration as a project

  1. Inventory and rank: which scripts/functions matter, which are

dead; migrate the load-bearing path first.

  1. Module-by-module with parity gates: port a module, run both

implementations against the baseline inputs, assert agreement within scientifically justified tolerances, only then delete or bypass the original (strangler pattern - rseng-legacy-code).

  1. Adopt the target's ecosystem hygiene as you go: environments and

lockfiles (rseng-reproducible-environments), tests (rseng-testing), CI without license servers - the ability to run tests on every commit is a migration dividend (rseng-ci-cd).

  1. Keep a translation log: mapping decisions, tolerance

justifications, known behavior differences - the scientific record of the migration (rseng-documentation), and cite the original code's authors (rseng-citation-metadata).

  1. Announce the migration to users with a compatibility note

(rseng-science-communication) and license the freed code properly (rseng-licensing) - opening the platform without opening the license wastes the trip.

Working with this skill

This skill is source-independent: it encodes community migration practice between scientific computing platforms. The generic legacy-code safety net is rseng-legacy-code; this skill is its commercial-platform specialization.

Learn more (verified):

  • https://octave.org - GNU Octave
  • https://numpy.org/doc/stable/user/numpy-for-matlab-users.html -

NumPy for MATLAB users (official mapping guide)

  • https://scipy.org - SciPy ecosystem
  • https://github.com/blink1073/oct2py - oct2py Octave-Python

bridge

  • https://www.sympy.org - SymPy symbolic mathematics
  • https://julialang.org - Julia
  • https://pandas.pydata.org - pandas
  • https://docs.astropy.org/en/stable/ - Astropy (the IDL-exodus

ecosystem)

Related skills

Check whether any of these applies before moving on:

  • rseng-legacy-code - characterization tests and strangler pattern
  • rseng-licensing - license the freed code
  • rseng-numerical-accuracy - parity tolerances across platforms
  • rseng-reproducible-environments - target-ecosystem pinning as you go
  • rseng-scientific-file-formats - exporting proprietary data formats first
  • rseng-software-reuse - adopt an existing open reimplementation

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.