Projects

Here are the projects we have either in beta launch, or in development:


doikayt.org Wiki

Our wiki is live -- and it is the first tool built with our qwiki framework. Its goal is to serve as the go-to hub for collaborative curation of digital tools for technicians supporting organizations whose mission aligns with our charter.


Developer Tools

qwiki

Bootstrap a MediaWiki from local Markdown files.

qwiki is a CLI tool for unix command savvy-technical teams who have content to publish but don't want to be slowed down by a wiki web UI. You write pages as Markdown files, organize them with grep and your favorite editor (which, of course, is vi ;^), and deploy everything to a running MediaWiki in one command (Current cloud support is for Digital Ocean only, but contributions are welcome.)


gas-demodulify-plugin

Webpack plugin for Google Apps Script add-ons.

gas-demodulify-plugin solves a real problem in GAS development: Webpack's standard output (module wrappers, the __webpack_require__ runtime, IIFEs) is incompatible with the GAS execution environment. Existing tools handle simple flat scripts but break down on complex multi-subsystem extensions for GAS.

The plugin discards Webpack's runtime artifacts entirely and regenerates GAS-compatible JavaScript with clean hierarchical namespaces — one per subsystem (typically ui, backend, and common). The result is code that runs correctly in both the GAS runtime and the HtmlService delivery model, without brittle string manipulation of Webpack output.


typescript-build-config

Shared build configuration for all @doikayt TypeScript projects.

typescript-build-config is a single source of truth for ESLint, Prettier, and TypeScript presets across every project in the @doikayt scope. Installing it as a devDependency runs a postinstall script that copies starter config files into your project root and wires up the release pipeline.

The release pipeline uses Changesets: fix:, feat:, and perf: commits automatically generate patch changesets; minor and major bumps require a handwritten changeset. CI validates, tests, and publishes — it never generates functional code or modifies logic.


build-tools

Support for auto-generation and verification of documentation from code

build-tools layers on top of typescript-build-config, and serves as the home for shared development infrastructure across doikayt projects. The unifying theme is automated documentation generation and verification: documentation drift — inconsistency between source artifacts and the documentation that describes them — is treated as a build failure, not a review comment.

Tools follow a progressive disclosure UX philosophy: the default invocation works correctly for the most common case with no flags required; advanced options are available but never forced. The flagship package is @doikayt/autogen-markdown-doc, which keeps Markdown tables of contents and Mermaid build-graph diagrams synchronized with source in a single command.