Keep up with latest product news
IRIS Ops Studio 1.2.0 adds guided enable/disable for eligible non-system web applications, with a complete-configuration preview, fresh pre-write check, target-bound confirmation, and full readback. Management, default, ambiguous, and Ops Studio applications stay inventory-only.
Limits: the portal remains a browser client; its safeguards do not impose a server-enforced read-only mode. IRIS authorization is the server-side boundary. In-place upgrade was not tested. The three existing videos remain linked; the newer two show 1.1.0 Safe demo workflows.

OpsDeck v0.1.0 — Initial Release
Initial public release of OpsDeck, an open-source operations console for InterSystems IRIS.
This release provides a unified read-only management workspace for IRIS operational information, including applications, access, security, tasks, system state, and logs.
Highlights:
Version 0.2.0 adds a complete IPM package for Linux IRIS 2026.2 in USER: Python gateway, browser UI and authenticated runtime adapter. The foreground launcher accepts an existing authorized account and binds only to loopback. Installation creates no credentials, demo fixtures or background service. Ownership checks preserve conflicting installations and edited files.
The package was published to the official test registry. A separate clean consumer installed iris-fieldwork 0.2.0 solely from that registry, without a source copy. Four authenticated requests, four anonymous denials and eleven gateway routes passed, covering all six sections and 24 resource checks. The launcher and filesystem suite passed 31 tests on Linux.
IPM guide: https://github.com/jsdhwfmax/iris-fieldwork/blob/main/IPM.md
Validation: https://github.com/jsdhwfmax/iris-fieldwork/blob/main/runtime/ipm-validation.json
Release: https://github.com/jsdhwfmax/iris-fieldwork/releases/tag/v0.2.0
Please review this package for community-registry publication. The existing contest entry is already approved; this is a package/listing update. Production-registry availability and any bonus or prize remain unverified. This AI-assisted prototype is intended for a disposable local instance and is not a production security boundary.
IRIS Ops Studio 1.1.0 adds verifiable operations, access-management workflows, and Incident Timeline.
PUT.Initial competition release of IRIS Maintenance Copilot, an evidence-grounded industrial maintenance assistant built with InterSystems IRIS.
VECTOR_COSINE%iFind.Index.BasicThe application is intended as maintenance decision support and does not replace qualified inspection or a definitive technical diagnosis.



Initial Release
This is my entry to the ongoing programming contest.
This is an IRIS API Explorer. The API Is sorted into different categories and submit types. You can test out the API safely under different privileges. There is a rollback feature for any data changes or deletes.
Thanks!

Initial prototype for local InterSystems IRIS 2026.2. Six live management views, reviewed task/web/role/wallet operations, bounded audit and journal metadata searches, Docker Compose installation instructions and demonstration fixtures. Includes three public English-captioned walkthroughs. AI-assisted development; administrative test instance only. See README and DEMO.md for validation and limitations.
Listing update: adds the public interactive walkthrough at https://rafaorlando3.github.io/iris-relay/. The walkthrough uses fictional data only and needs no credentials. Source remains release 0.2.0, commit fe585681ed05719c202856d4dbf422a1685e5679, with 42 JavaScript and 6 Python tests passed and reversible live checks on IRIS 2026.2 ARM64.






Platform-independent Docker demo.

First public release.
iris-bi-cube-cache-warmer; install with zpm "install iris-bi-cube-cache-warmer"
A docs-only patch resolving two setup blockers reported during the Open Exchange review. No code or public-API changes; existing installations do not need to be recompiled or reconfigured beyond the SSL step below.
%Embedding.Config.VectorDataType reference removed from setup examples. The property is not exposed on every IRIS 2026 build, and the previous INSERT INTO %Embedding.Config (…, VectorDataType, …) example failed at runtime on affected builds (Field '%EMBEDDING.CONFIG.VECTORDATATYPE' not found, or <PROPERTY DOES NOT EXIST> in ObjectScript). The example now uses only the portable minimum columns (Name, Configuration, EmbeddingClass, VectorLength, Description); VectorDataType is documented as build-dependent and set via property assignment when your build exposes it.sslConfig now correctly documented as required for every HTTPS provider. Prior examples omitted the key, causing %Embedding.OpenAI.IsValidConfig to reject the config at %Save() time with "Invalid Configuration: 'sslConfig' not set". Every JSON example in the README — Installation, Configuration Reference, and Demo — now includes "sslConfig":"OmniHTTPS" at both the top level (for the embedding provider) and inside the rerank sub-block (for the reranker). The Configuration Reference table upgrades sslConfig from optional to required for every HTTPS provider (Cohere, Voyage, Jina); not used by Ollama.Security.SSLConfigs entry (OmniHTTPS) in %SYS before wiring configs. Only skippable when Ollama is the sole provider.Engine.Rerank remains registered as [SqlProc], but this IRIS build's SQL result-set marshaller does not surface custom %SQL.CustomResultSet columns to callers of CALL dc_omniReRank.Engine_Rerank(...) from the SQL runner. The recommended path is the ObjectScript classmethod call followed by %Display() or %Next() iteration. Fully SQL-native surfacing is tracked as a follow-up.Search invocation instead of the SQL CALL (which returned SQLCODE=0 with zero rows displayed in SMP).v1.0.x: No code migration needed. If you followed a previous README to wire your %Embedding.Config, verify your Configuration JSON contains "sslConfig":"<your-ssl-config-name>" at both levels. If your IRIS build did not require sslConfig before, your row still needs it for the reranker to work — this is enforced by %Embedding.OpenAI and every SaaS reranker path.CALL dc_omniReRank.Engine_Rerank(...) from the SMP SQL runner or another %SQL.Statement returns SQLCODE=0 but does not display rows. Use the ObjectScript classmethod call. Fix scheduled for a subsequent release.LEN on %Vector columns — documented in the demo Catalog.cls (pinned at 1536 dims for OpenAI). Adjust LEN or drop the index if using an embedding model with a different dimensionality.