├── .claude ├── aesthetics │ ├── README.md │ ├── manifest.json │ ├── studio-hardware-001 │ │ ├── aesthetic.md │ │ ├── metadata.json │ │ └── test-previews │ │ │ ├── drum-machine.html │ │ │ ├── simple-compressor.html │ │ │ └── simple-synth.html │ ├── swiss-minimal-001 │ │ ├── aesthetic.md │ │ ├── metadata.json │ │ └── test-previews │ │ │ ├── simple-compressor.html │ │ │ └── simple-synth.html │ ├── vintage-bakelite-001 │ │ ├── aesthetic.md │ │ ├── metadata.json │ │ └── preview.html │ └── vintage-hardware-001 │ │ ├── aesthetic.md │ │ ├── metadata.json │ │ └── preview.html ├── agents │ ├── dsp-agent.md │ ├── foundation-shell-agent.md │ ├── gui-agent.md │ ├── research-planning-agent.md │ ├── troubleshoot-agent.md │ ├── ui-design-agent.md │ ├── ui-finalization-agent.md │ └── validation-agent.md ├── commands │ ├── add-critical-pattern.md │ ├── clean.md │ ├── clear-cache.md │ ├── continue.md │ ├── destroy.md │ ├── doc-fix.md │ ├── dream.md │ ├── implement.md │ ├── improve.md │ ├── install-plugin.md │ ├── package.md │ ├── pfs.md │ ├── plan.md │ ├── reconcile.md │ ├── research.md │ ├── reset-to-ideation.md │ ├── setup.md │ ├── show-standalone.md │ ├── test.md │ └── uninstall.md ├── hooks │ ├── PostToolUse.sh │ ├── PreCompact.sh │ ├── SessionStart.sh │ ├── Stop.sh │ ├── SubagentStop.sh │ ├── UserPromptSubmit.sh │ ├── hooks.json │ └── validators │ │ ├── contract_validator.py │ │ ├── validate-checksums.py │ │ ├── validate-cross-contract.py │ │ ├── validate-dsp-components.py │ │ ├── validate-foundation.py │ │ ├── validate-gui-bindings.py │ │ ├── validate-parameters.py │ │ └── validate-silent-failures.py ├── preferences-README.md ├── preferences.json ├── schemas │ ├── README.md │ ├── subagent-report.json │ └── validator-report.json ├── settings.json ├── skills │ ├── aesthetic-dreaming │ │ ├── SKILL.md │ │ ├── assets │ │ │ └── test-plugin-specs.json │ │ └── references │ │ │ ├── aesthetic-questions.md │ │ │ ├── design-rationale.md │ │ │ ├── error-handling.md │ │ │ ├── file-generation.md │ │ │ ├── handoff-protocol.md │ │ │ ├── question-examples.md │ │ │ ├── test-preview-protocol.md │ │ │ └── workflow-examples.md │ ├── build-automation │ │ ├── SKILL.md │ │ ├── assets │ │ │ └── success-menus.md │ │ └── references │ │ │ ├── failure-protocol.md │ │ │ ├── integration-examples.md │ │ │ ├── testing-guide.md │ │ │ └── troubleshooting.md │ ├── context-resume │ │ ├── SKILL.md │ │ └── references │ │ │ ├── README.md │ │ │ ├── backward-compatibility.md │ │ │ ├── context-parsing.md │ │ │ ├── continuation-routing.md │ │ │ ├── error-recovery.md │ │ │ └── handoff-location.md │ ├── deep-research │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── level1-report-template.md │ │ │ ├── level2-report-template.md │ │ │ ├── level3-report-template.md │ │ │ ├── report-template.json │ │ │ └── research-progress.md │ │ └── references │ │ │ ├── error-handling.md │ │ │ ├── example-scenarios.md │ │ │ ├── integrations.md │ │ │ └── research-protocol.md │ ├── plugin-ideation │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── creative-brief.md │ │ │ ├── improvement-proposal.md │ │ │ └── parameter-spec-draft-template.md │ │ └── references │ │ │ ├── README.md │ │ │ ├── adaptive-questioning-examples.md │ │ │ ├── adaptive-strategy.md │ │ │ ├── improvement-mode-examples.md │ │ │ ├── improvement-workflow.md │ │ │ ├── new-plugin-workflow.md │ │ │ ├── parallel-workflow-test-scenario.md │ │ │ └── question-generation-patterns.md │ ├── plugin-improve │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── backup-template.sh │ │ │ ├── notes-template.md │ │ │ └── rollback-template.sh │ │ └── references │ │ │ ├── README.md │ │ │ ├── breaking-changes.md │ │ │ ├── changelog-format.md │ │ │ ├── clarification-protocol.md │ │ │ ├── handoff-protocols.md │ │ │ ├── headless-ui-workflow.md │ │ │ ├── investigation-tiers.md │ │ │ ├── regression-testing.md │ │ │ ├── research-detection.md │ │ │ └── versioning.md │ ├── plugin-lifecycle │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── notes-template.md │ │ │ ├── reset-confirmation-example.txt │ │ │ └── reset-success-example.txt │ │ └── references │ │ │ ├── README.md │ │ │ ├── cache-management.md │ │ │ ├── decision-menu-protocol.md │ │ │ ├── error-handling.md │ │ │ ├── installation-process.md │ │ │ ├── invocation-protocol.md │ │ │ ├── mode-3-reset.md │ │ │ ├── mode-4-destroy.md │ │ │ └── uninstallation-process.md │ ├── plugin-packaging │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── conclusion-template.txt │ │ │ ├── readme-template.txt │ │ │ └── welcome-template.txt │ │ └── references │ │ │ └── pkg-creation.md │ ├── plugin-planning │ │ ├── SKILL.md │ │ ├── archive │ │ │ ├── stage-0-research.md │ │ │ └── stage-1-planning.md │ │ ├── assets │ │ │ ├── architecture-template.md │ │ │ ├── continue-stage-0-template.md │ │ │ ├── continue-stage-1-template.md │ │ │ ├── decision-menu-stage-0.md │ │ │ ├── decision-menu-stage-1.md │ │ │ ├── implementation-handoff-template.md │ │ │ ├── plan-template.md │ │ │ ├── precondition-failed.md │ │ │ └── stage-1-blocked.md │ │ └── references │ │ │ ├── git-operations.md │ │ │ ├── preconditions.md │ │ │ ├── state-updates.md │ │ │ └── subagent-invocation.md │ ├── plugin-testing │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── decision-menu-templates.md │ │ │ ├── manual-testing-checklist.md │ │ │ └── report-templates.md │ │ └── references │ │ │ ├── failure-investigation-guide.md │ │ │ ├── manual-testing-guide.md │ │ │ ├── pluginval-guide.md │ │ │ ├── test-specifications.md │ │ │ └── troubleshooting.md │ ├── plugin-workflow │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── architecture.md │ │ │ ├── continue-here-template.md │ │ │ ├── decision-menus.json │ │ │ ├── notes-template.md │ │ │ └── plan.md │ │ └── references │ │ │ ├── README.md │ │ │ ├── checkpoint-protocol.md │ │ │ ├── creative-brief-sync.md │ │ │ ├── dispatcher-pattern.md │ │ │ ├── error-handling.md │ │ │ ├── integration-contracts.md │ │ │ ├── milestone-terminology.md │ │ │ ├── phase-aware-dispatch.md │ │ │ ├── precondition-checks.md │ │ │ ├── precondition-checks.sh │ │ │ ├── stage-1-foundation-shell.md │ │ │ ├── stage-2-dsp.md │ │ │ ├── stage-3-gui.md │ │ │ ├── stage-5-validation.md.deprecated │ │ │ ├── state-management.md │ │ │ ├── validation-integration.md │ │ │ └── workflow-mode.md │ ├── system-setup │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── system-check.sh │ │ │ └── test-scenarios.md │ │ ├── references │ │ │ ├── error-recovery.md │ │ │ ├── execution-notes.md │ │ │ ├── juce-setup-guide.md │ │ │ ├── platform-requirements.md │ │ │ └── validation-workflow.md │ │ └── test-setup-skill.sh │ ├── troubleshooting-docs │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── critical-pattern-template.md │ │ │ └── resolution-template.md │ │ ├── references │ │ │ ├── example-walkthrough.md │ │ │ └── yaml-schema.md │ │ └── schema.yaml │ ├── ui-mockup │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── integration-checklist-template.md │ │ │ ├── parameter-binding-example.js │ │ │ ├── parameter-spec-template.md │ │ │ ├── ui-yaml-template.yaml │ │ │ └── webview-templates │ │ │ │ ├── CMakeLists-webview-snippet.cmake │ │ │ │ ├── PluginEditor-webview.cpp │ │ │ │ ├── PluginEditor-webview.h │ │ │ │ └── index-template.html │ │ └── references │ │ │ ├── aesthetic-integration.md │ │ │ ├── browser-testing.md │ │ │ ├── cmake-configuration.md │ │ │ ├── cmake-generation.md │ │ │ ├── common-pitfalls.md │ │ │ ├── context-extraction.md │ │ │ ├── cpp-boilerplate-generation.md │ │ │ ├── decision-menus.md │ │ │ ├── delegation-protocols.md │ │ │ ├── design-questions.md │ │ │ ├── html-generation.md │ │ │ ├── layout-validation.md │ │ │ ├── phase-b-enforcement.md │ │ │ ├── state-tracking.md │ │ │ ├── ui-design-rules.md │ │ │ └── versioning.md │ ├── ui-template-library │ │ ├── SKILL.md │ │ ├── assets │ │ │ ├── aesthetic-template.md │ │ │ ├── manifest-init.json │ │ │ └── metadata-template.json │ │ └── references │ │ │ ├── aesthetic-interpretation.md │ │ │ ├── apply-operation.md │ │ │ ├── control-generation.md │ │ │ ├── delete-operation.md │ │ │ ├── implementation-notes.md │ │ │ ├── layout-generation.md │ │ │ ├── list-operation.md │ │ │ ├── pattern-extraction.md │ │ │ ├── prose-generation.md │ │ │ ├── save-operation.md │ │ │ └── update-operation.md │ └── workflow-reconciliation │ │ ├── SKILL.md │ │ ├── assets │ │ ├── reconciliation-examples.md │ │ └── reconciliation-rules.json │ │ └── references │ │ └── handoff-formats.md ├── system-config.json └── utils │ ├── sync-brief-from-mockup.sh │ ├── validation-cache.md │ └── validation-cache.sh ├── .gitignore ├── CMakeLists.txt ├── PLUGINS.md ├── README.md ├── backups ├── .gitignore └── README.md ├── plugins ├── AngelGrain │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ └── v1-ui.yaml │ │ ├── parameter-spec-draft.md │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── juce │ │ ├── check_native_interop.js │ │ └── index.js ├── AutoClip │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.yaml │ │ │ ├── v3-ui-test.html │ │ │ ├── v3-ui.yaml │ │ │ ├── v4-ui-test.html │ │ │ ├── v4-ui.yaml │ │ │ ├── v5-CMakeLists-SNIPPET.txt │ │ │ ├── v5-PluginEditor-TEMPLATE.cpp │ │ │ ├── v5-PluginEditor-TEMPLATE.h │ │ │ ├── v5-integration-checklist.md │ │ │ ├── v5-ui-test.html │ │ │ ├── v5-ui.html │ │ │ └── v5-ui.yaml │ │ ├── parameter-spec-draft.md │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTES.md │ ├── Presets │ │ ├── Default.preset │ │ ├── Extreme Clip.preset │ │ ├── Heavy Clip.preset │ │ ├── Moderate Clip.preset │ │ └── Subtle Clip.preset │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── juce │ │ ├── check_native_interop.js │ │ └── index.js ├── ClapMachine │ └── NOTES.md ├── DriveVerb │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.yaml │ │ │ ├── v3-CMakeLists.txt │ │ │ ├── v3-PluginEditor.cpp │ │ │ ├── v3-PluginEditor.h │ │ │ ├── v3-integration-checklist.md │ │ │ ├── v3-ui-test.html │ │ │ ├── v3-ui.html │ │ │ └── v3-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTES.md │ ├── Presets │ │ ├── 01 - Default.preset │ │ ├── 02 - Subtle Warmth.preset │ │ ├── 03 - Driven Ambience.preset │ │ ├── 04 - Dark Filtered Hall.preset │ │ └── 05 - Aggressive Saturation.preset │ ├── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ │ └── public │ │ │ ├── index.html │ │ │ └── js │ │ │ └── juce │ │ │ ├── check_native_interop.js │ │ │ └── index.js │ └── build.log ├── Drum808 │ ├── .dsp-phase-3.1-report.json │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.yaml │ │ │ ├── v3-CMakeLists-SNIPPET.txt │ │ │ ├── v3-PluginEditor-TEMPLATE.cpp │ │ │ ├── v3-PluginEditor-TEMPLATE.h │ │ │ ├── v3-integration-checklist.md │ │ │ ├── v3-ui-test.html │ │ │ ├── v3-ui.html │ │ │ └── v3-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTES.md │ ├── Presets │ │ ├── 01-Factory-Default.preset │ │ ├── 02-Deep-Kick.preset │ │ ├── 03-Crispy-Hats.preset │ │ └── 04-Tight-Punch.preset │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── juce │ │ ├── check_native_interop.js │ │ └── index.js ├── DrumRoulette │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.yaml │ │ │ ├── v3-ui-test.html │ │ │ ├── v3-ui.yaml │ │ │ ├── v4-CMakeLists.txt │ │ │ ├── v4-PluginEditor.cpp │ │ │ ├── v4-PluginEditor.h │ │ │ ├── v4-integration-checklist.md │ │ │ ├── v4-ui-test.html │ │ │ ├── v4-ui.html │ │ │ └── v4-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTES.md │ ├── Presets │ │ ├── 01-Default Kit.preset │ │ ├── 02-Tight Drums.preset │ │ ├── 03-Dark and Deep.preset │ │ ├── 04-Bright and Crispy.preset │ │ └── 05-Lo-Fi Character.preset │ ├── Source │ │ ├── DrumRouletteVoice.cpp │ │ ├── DrumRouletteVoice.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ │ └── public │ │ │ ├── index.html │ │ │ └── js │ │ │ └── juce │ │ │ ├── check_native_interop.js │ │ │ └── index.js │ ├── stage3-report.json │ └── stage5.1-report.json ├── FlutterVerb │ ├── .continue-here.archived.md │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-ui-test.html │ │ │ ├── v3-ui-test.html │ │ │ ├── v4-ui-test.html │ │ │ ├── v5-ui-test.html │ │ │ ├── v6-CMakeLists.txt │ │ │ ├── v6-PluginEditor.cpp │ │ │ ├── v6-PluginEditor.h │ │ │ ├── v6-integration-checklist.md │ │ │ ├── v6-ui-test.html │ │ │ ├── v6-ui.html │ │ │ └── v6-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTES.md │ ├── Presets │ │ ├── Bright Plate.preset │ │ ├── Dark Ambient.preset │ │ ├── Default.preset │ │ ├── Large Hall.preset │ │ ├── Lo-Fi Tape.preset │ │ ├── Small Room.preset │ │ └── Tape Warble.preset │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── juce │ │ ├── check_native_interop.js │ │ └── index.js ├── GainKnob │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-CMakeLists.txt │ │ │ ├── v1-PluginEditor.cpp │ │ │ ├── v1-PluginEditor.h │ │ │ ├── v1-integration-checklist.md │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.html │ │ │ └── v1-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTES.md │ ├── Presets │ │ ├── Half Volume.preset │ │ ├── Quiet.preset │ │ ├── Silence.preset │ │ ├── Subtle Cut.preset │ │ └── Unity.preset │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── juce │ │ ├── check_native_interop.js │ │ └── index.js ├── LushPad │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-CMakeLists-SNIPPET.txt │ │ │ ├── v2-PluginEditor-TEMPLATE.cpp │ │ │ ├── v2-PluginEditor-TEMPLATE.h │ │ │ ├── v2-integration-checklist.md │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.html │ │ │ └── v2-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CMakeLists.txt │ ├── NOTES.md │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── juce │ │ ├── check_native_interop.js │ │ └── index.js ├── LushVerb │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.yaml │ │ │ ├── v3-CMakeLists.txt │ │ │ ├── v3-PluginEditor.cpp │ │ │ ├── v3-PluginEditor.h │ │ │ ├── v3-integration-checklist.md │ │ │ ├── v3-ui-test.html │ │ │ ├── v3-ui.html │ │ │ └── v3-ui.yaml │ │ └── parameter-spec.md │ └── NOTES.md ├── MinimalKick │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-CMakeLists-SNIPPET.txt │ │ │ ├── v2-PluginEditor-TEMPLATE.cpp │ │ │ ├── v2-PluginEditor-TEMPLATE.h │ │ │ ├── v2-integration-checklist.md │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.html │ │ │ └── v2-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CMakeLists.txt │ ├── NOTES.md │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── juce │ │ ├── check_native_interop.js │ │ └── index.js ├── OrganicHats │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-CMakeLists.txt │ │ │ ├── v2-PluginEditor.cpp │ │ │ ├── v2-PluginEditor.h │ │ │ ├── v2-integration-checklist.md │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.html │ │ │ └── v2-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTES.md │ └── Source │ │ ├── HiHatSound.h │ │ ├── HiHatVoice.cpp │ │ ├── HiHatVoice.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── juce │ │ ├── check_native_interop.js │ │ └── index.js ├── PadForge │ ├── .continue-here.md │ └── .ideas │ │ ├── creative-brief.md │ │ ├── mockups │ │ ├── v1-ui-test.html │ │ ├── v1-ui.yaml │ │ ├── v2-CMakeLists-SNIPPET.txt │ │ ├── v2-PluginEditor-TEMPLATE.cpp │ │ ├── v2-PluginEditor-TEMPLATE.h │ │ ├── v2-integration-checklist.md │ │ ├── v2-ui-test.html │ │ ├── v2-ui.html │ │ └── v2-ui.yaml │ │ └── parameter-spec.md ├── Scatter │ ├── .continue-here.md │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.yaml │ │ │ ├── v3-ui-test.html │ │ │ ├── v3-ui.yaml │ │ │ ├── v4-CMakeLists-SNIPPET.txt │ │ │ ├── v4-PluginEditor-TEMPLATE.cpp │ │ │ ├── v4-PluginEditor-TEMPLATE.h │ │ │ ├── v4-integration-checklist.md │ │ │ ├── v4-ui-test.html │ │ │ ├── v4-ui.html │ │ │ └── v4-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTES.md │ ├── Presets │ │ ├── 01_Default.txt │ │ ├── 02_Shimmer.txt │ │ ├── 03_Stutter.txt │ │ ├── 04_Ambient_Wash.txt │ │ └── 05_Granular_Reverse.txt │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── juce │ │ ├── check_native_interop.js │ │ └── index.js ├── TEMPLATE-HEADLESS-EDITOR │ ├── PluginEditor.cpp │ ├── PluginEditor.h │ └── README.md ├── TapeAge │ ├── .ideas │ │ ├── architecture.md │ │ ├── creative-brief.md │ │ ├── mockups │ │ │ ├── v1-ui-test.html │ │ │ ├── v1-ui.yaml │ │ │ ├── v2-ui-test.html │ │ │ ├── v2-ui.yaml │ │ │ ├── v3-CMakeLists.txt │ │ │ ├── v3-PluginEditor.cpp │ │ │ ├── v3-PluginEditor.h │ │ │ ├── v3-integration-checklist.md │ │ │ ├── v3-ui-test.html │ │ │ ├── v3-ui.html │ │ │ └── v3-ui.yaml │ │ ├── parameter-spec.md │ │ └── plan.md │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── NOTES.md │ ├── Presets │ │ ├── Classic Tape.preset │ │ ├── Destroyed.preset │ │ ├── Subtle Warmth.preset │ │ ├── Unity.preset │ │ └── Worn Out.preset │ ├── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ └── ui │ │ │ └── public │ │ │ ├── index.html │ │ │ └── js │ │ │ └── juce │ │ │ ├── check_native_interop.js │ │ │ └── index.js │ ├── build.log │ └── dist │ │ ├── TapeAge-by-TACHES.pkg │ │ └── install-readme.txt └── Words │ ├── .continue-here.md │ └── .ideas │ ├── creative-brief.md │ └── mockups │ ├── v1-ui-test.html │ ├── v1-ui.yaml │ ├── v2-ui-test.html │ └── v2-ui.yaml ├── scripts ├── build-and-install.sh └── verify-backup.sh └── troubleshooting ├── api-usage ├── juce-dsp-reverb-wrong-api-methods-FlutterVerb-20251111.md ├── rotary-slider-absolute-positioning-interaction-TapeMachine-20251107.md ├── webview-es6-module-loading-frozen-knobs-lushverb-20251111.md └── webview-parameter-not-updating-wrong-event-format-JUCE-20251108.md ├── build-failures ├── juceheader-not-found-cmake-JUCE-20251106.md ├── stale-build-after-stage-5-gui-changes-OrganicHats-20251112.md └── ui-trigger-button-processblock-invocation-thread-violation-JUCE-20251106.md ├── dsp-issues └── dsp-filters-not-responding-to-parameters-MicroGlitch-20251106.md ├── gui-issues ├── absolute-knob-drag-webview-20251111.md ├── invisible-rotary-sliders-flexbox-constraints-JUCE-20251106.md ├── rotating-lighting-unrealistic-knobs-JUCE-20251110.md ├── toggle-switch-wrong-api-getsliderstate-flutterverb-20251111.md ├── vu-meter-no-animation-loop-flutterverb-20251111.md ├── webview-frame-load-interrupted-TapeAge-20251111.md ├── webview-knob-hover-shake-microscale-transform-20251112.md ├── webview-knobs-frozen-multiple-causes-TapeAge-20251111.md └── webview-parameter-undefined-event-callback-TapeAge-20251111.md ├── parameter-issues ├── ableton-preset-interference-state-restoration-JUCE-20251107.md └── audiothumbnail-waveform-not-persisting-MicroGlitch-20251106.md ├── patterns ├── HOW-TO-ADD-CRITICAL-PATTERNS.md ├── README.md ├── common-solutions.md └── juce8-critical-patterns.md ├── runtime-issues ├── synth-no-audio-missing-is-synth-LushPad-20251113.md ├── vst3-bus-config-effect-missing-input-Shake-20251106.md └── webbrowser-local-html-url-cant-be-shown-JUCE-20251107.md └── validation-problems └── vst3-invalid-signature-plugin-cache-FlutterVerb-20251111.md /.claude/aesthetics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/README.md -------------------------------------------------------------------------------- /.claude/aesthetics/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/manifest.json -------------------------------------------------------------------------------- /.claude/aesthetics/studio-hardware-001/aesthetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/studio-hardware-001/aesthetic.md -------------------------------------------------------------------------------- /.claude/aesthetics/studio-hardware-001/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/studio-hardware-001/metadata.json -------------------------------------------------------------------------------- /.claude/aesthetics/studio-hardware-001/test-previews/drum-machine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/studio-hardware-001/test-previews/drum-machine.html -------------------------------------------------------------------------------- /.claude/aesthetics/studio-hardware-001/test-previews/simple-compressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/studio-hardware-001/test-previews/simple-compressor.html -------------------------------------------------------------------------------- /.claude/aesthetics/studio-hardware-001/test-previews/simple-synth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/studio-hardware-001/test-previews/simple-synth.html -------------------------------------------------------------------------------- /.claude/aesthetics/swiss-minimal-001/aesthetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/swiss-minimal-001/aesthetic.md -------------------------------------------------------------------------------- /.claude/aesthetics/swiss-minimal-001/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/swiss-minimal-001/metadata.json -------------------------------------------------------------------------------- /.claude/aesthetics/swiss-minimal-001/test-previews/simple-compressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/swiss-minimal-001/test-previews/simple-compressor.html -------------------------------------------------------------------------------- /.claude/aesthetics/swiss-minimal-001/test-previews/simple-synth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/swiss-minimal-001/test-previews/simple-synth.html -------------------------------------------------------------------------------- /.claude/aesthetics/vintage-bakelite-001/aesthetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/vintage-bakelite-001/aesthetic.md -------------------------------------------------------------------------------- /.claude/aesthetics/vintage-bakelite-001/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/vintage-bakelite-001/metadata.json -------------------------------------------------------------------------------- /.claude/aesthetics/vintage-bakelite-001/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/vintage-bakelite-001/preview.html -------------------------------------------------------------------------------- /.claude/aesthetics/vintage-hardware-001/aesthetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/vintage-hardware-001/aesthetic.md -------------------------------------------------------------------------------- /.claude/aesthetics/vintage-hardware-001/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/vintage-hardware-001/metadata.json -------------------------------------------------------------------------------- /.claude/aesthetics/vintage-hardware-001/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/aesthetics/vintage-hardware-001/preview.html -------------------------------------------------------------------------------- /.claude/agents/dsp-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/agents/dsp-agent.md -------------------------------------------------------------------------------- /.claude/agents/foundation-shell-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/agents/foundation-shell-agent.md -------------------------------------------------------------------------------- /.claude/agents/gui-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/agents/gui-agent.md -------------------------------------------------------------------------------- /.claude/agents/research-planning-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/agents/research-planning-agent.md -------------------------------------------------------------------------------- /.claude/agents/troubleshoot-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/agents/troubleshoot-agent.md -------------------------------------------------------------------------------- /.claude/agents/ui-design-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/agents/ui-design-agent.md -------------------------------------------------------------------------------- /.claude/agents/ui-finalization-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/agents/ui-finalization-agent.md -------------------------------------------------------------------------------- /.claude/agents/validation-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/agents/validation-agent.md -------------------------------------------------------------------------------- /.claude/commands/add-critical-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/add-critical-pattern.md -------------------------------------------------------------------------------- /.claude/commands/clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/clean.md -------------------------------------------------------------------------------- /.claude/commands/clear-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/clear-cache.md -------------------------------------------------------------------------------- /.claude/commands/continue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/continue.md -------------------------------------------------------------------------------- /.claude/commands/destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/destroy.md -------------------------------------------------------------------------------- /.claude/commands/doc-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/doc-fix.md -------------------------------------------------------------------------------- /.claude/commands/dream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/dream.md -------------------------------------------------------------------------------- /.claude/commands/implement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/implement.md -------------------------------------------------------------------------------- /.claude/commands/improve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/improve.md -------------------------------------------------------------------------------- /.claude/commands/install-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/install-plugin.md -------------------------------------------------------------------------------- /.claude/commands/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/package.md -------------------------------------------------------------------------------- /.claude/commands/pfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/pfs.md -------------------------------------------------------------------------------- /.claude/commands/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/plan.md -------------------------------------------------------------------------------- /.claude/commands/reconcile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/reconcile.md -------------------------------------------------------------------------------- /.claude/commands/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/research.md -------------------------------------------------------------------------------- /.claude/commands/reset-to-ideation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/reset-to-ideation.md -------------------------------------------------------------------------------- /.claude/commands/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/setup.md -------------------------------------------------------------------------------- /.claude/commands/show-standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/show-standalone.md -------------------------------------------------------------------------------- /.claude/commands/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/test.md -------------------------------------------------------------------------------- /.claude/commands/uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/commands/uninstall.md -------------------------------------------------------------------------------- /.claude/hooks/PostToolUse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/PostToolUse.sh -------------------------------------------------------------------------------- /.claude/hooks/PreCompact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/PreCompact.sh -------------------------------------------------------------------------------- /.claude/hooks/SessionStart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/SessionStart.sh -------------------------------------------------------------------------------- /.claude/hooks/Stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/Stop.sh -------------------------------------------------------------------------------- /.claude/hooks/SubagentStop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/SubagentStop.sh -------------------------------------------------------------------------------- /.claude/hooks/UserPromptSubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/UserPromptSubmit.sh -------------------------------------------------------------------------------- /.claude/hooks/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/hooks.json -------------------------------------------------------------------------------- /.claude/hooks/validators/contract_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/validators/contract_validator.py -------------------------------------------------------------------------------- /.claude/hooks/validators/validate-checksums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/validators/validate-checksums.py -------------------------------------------------------------------------------- /.claude/hooks/validators/validate-cross-contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/validators/validate-cross-contract.py -------------------------------------------------------------------------------- /.claude/hooks/validators/validate-dsp-components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/validators/validate-dsp-components.py -------------------------------------------------------------------------------- /.claude/hooks/validators/validate-foundation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/validators/validate-foundation.py -------------------------------------------------------------------------------- /.claude/hooks/validators/validate-gui-bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/validators/validate-gui-bindings.py -------------------------------------------------------------------------------- /.claude/hooks/validators/validate-parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/validators/validate-parameters.py -------------------------------------------------------------------------------- /.claude/hooks/validators/validate-silent-failures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/hooks/validators/validate-silent-failures.py -------------------------------------------------------------------------------- /.claude/preferences-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/preferences-README.md -------------------------------------------------------------------------------- /.claude/preferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/preferences.json -------------------------------------------------------------------------------- /.claude/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/schemas/README.md -------------------------------------------------------------------------------- /.claude/schemas/subagent-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/schemas/subagent-report.json -------------------------------------------------------------------------------- /.claude/schemas/validator-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/schemas/validator-report.json -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/assets/test-plugin-specs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/assets/test-plugin-specs.json -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/references/aesthetic-questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/references/aesthetic-questions.md -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/references/design-rationale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/references/design-rationale.md -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/references/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/references/error-handling.md -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/references/file-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/references/file-generation.md -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/references/handoff-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/references/handoff-protocol.md -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/references/question-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/references/question-examples.md -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/references/test-preview-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/references/test-preview-protocol.md -------------------------------------------------------------------------------- /.claude/skills/aesthetic-dreaming/references/workflow-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/aesthetic-dreaming/references/workflow-examples.md -------------------------------------------------------------------------------- /.claude/skills/build-automation/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/build-automation/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/build-automation/assets/success-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/build-automation/assets/success-menus.md -------------------------------------------------------------------------------- /.claude/skills/build-automation/references/failure-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/build-automation/references/failure-protocol.md -------------------------------------------------------------------------------- /.claude/skills/build-automation/references/integration-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/build-automation/references/integration-examples.md -------------------------------------------------------------------------------- /.claude/skills/build-automation/references/testing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/build-automation/references/testing-guide.md -------------------------------------------------------------------------------- /.claude/skills/build-automation/references/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/build-automation/references/troubleshooting.md -------------------------------------------------------------------------------- /.claude/skills/context-resume/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/context-resume/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/context-resume/references/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/context-resume/references/README.md -------------------------------------------------------------------------------- /.claude/skills/context-resume/references/backward-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/context-resume/references/backward-compatibility.md -------------------------------------------------------------------------------- /.claude/skills/context-resume/references/context-parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/context-resume/references/context-parsing.md -------------------------------------------------------------------------------- /.claude/skills/context-resume/references/continuation-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/context-resume/references/continuation-routing.md -------------------------------------------------------------------------------- /.claude/skills/context-resume/references/error-recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/context-resume/references/error-recovery.md -------------------------------------------------------------------------------- /.claude/skills/context-resume/references/handoff-location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/context-resume/references/handoff-location.md -------------------------------------------------------------------------------- /.claude/skills/deep-research/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/deep-research/assets/level1-report-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/assets/level1-report-template.md -------------------------------------------------------------------------------- /.claude/skills/deep-research/assets/level2-report-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/assets/level2-report-template.md -------------------------------------------------------------------------------- /.claude/skills/deep-research/assets/level3-report-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/assets/level3-report-template.md -------------------------------------------------------------------------------- /.claude/skills/deep-research/assets/report-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/assets/report-template.json -------------------------------------------------------------------------------- /.claude/skills/deep-research/assets/research-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/assets/research-progress.md -------------------------------------------------------------------------------- /.claude/skills/deep-research/references/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/references/error-handling.md -------------------------------------------------------------------------------- /.claude/skills/deep-research/references/example-scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/references/example-scenarios.md -------------------------------------------------------------------------------- /.claude/skills/deep-research/references/integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/references/integrations.md -------------------------------------------------------------------------------- /.claude/skills/deep-research/references/research-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/deep-research/references/research-protocol.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/assets/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/assets/creative-brief.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/assets/improvement-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/assets/improvement-proposal.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/assets/parameter-spec-draft-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/assets/parameter-spec-draft-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/references/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/references/README.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/references/adaptive-questioning-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/references/adaptive-questioning-examples.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/references/adaptive-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/references/adaptive-strategy.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/references/improvement-mode-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/references/improvement-mode-examples.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/references/improvement-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/references/improvement-workflow.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/references/new-plugin-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/references/new-plugin-workflow.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/references/parallel-workflow-test-scenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/references/parallel-workflow-test-scenario.md -------------------------------------------------------------------------------- /.claude/skills/plugin-ideation/references/question-generation-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-ideation/references/question-generation-patterns.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/assets/backup-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/assets/backup-template.sh -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/assets/notes-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/assets/notes-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/assets/rollback-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/assets/rollback-template.sh -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/README.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/breaking-changes.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/changelog-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/changelog-format.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/clarification-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/clarification-protocol.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/handoff-protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/handoff-protocols.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/headless-ui-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/headless-ui-workflow.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/investigation-tiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/investigation-tiers.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/regression-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/regression-testing.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/research-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/research-detection.md -------------------------------------------------------------------------------- /.claude/skills/plugin-improve/references/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-improve/references/versioning.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/assets/notes-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/assets/notes-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/assets/reset-confirmation-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/assets/reset-confirmation-example.txt -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/assets/reset-success-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/assets/reset-success-example.txt -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/references/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/references/README.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/references/cache-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/references/cache-management.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/references/decision-menu-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/references/decision-menu-protocol.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/references/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/references/error-handling.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/references/installation-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/references/installation-process.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/references/invocation-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/references/invocation-protocol.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/references/mode-3-reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/references/mode-3-reset.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/references/mode-4-destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/references/mode-4-destroy.md -------------------------------------------------------------------------------- /.claude/skills/plugin-lifecycle/references/uninstallation-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-lifecycle/references/uninstallation-process.md -------------------------------------------------------------------------------- /.claude/skills/plugin-packaging/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-packaging/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/plugin-packaging/assets/conclusion-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-packaging/assets/conclusion-template.txt -------------------------------------------------------------------------------- /.claude/skills/plugin-packaging/assets/readme-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-packaging/assets/readme-template.txt -------------------------------------------------------------------------------- /.claude/skills/plugin-packaging/assets/welcome-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-packaging/assets/welcome-template.txt -------------------------------------------------------------------------------- /.claude/skills/plugin-packaging/references/pkg-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-packaging/references/pkg-creation.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/archive/stage-0-research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/archive/stage-0-research.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/archive/stage-1-planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/archive/stage-1-planning.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/assets/architecture-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/assets/architecture-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/assets/continue-stage-0-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/assets/continue-stage-0-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/assets/continue-stage-1-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/assets/continue-stage-1-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/assets/decision-menu-stage-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/assets/decision-menu-stage-0.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/assets/decision-menu-stage-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/assets/decision-menu-stage-1.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/assets/implementation-handoff-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/assets/implementation-handoff-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/assets/plan-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/assets/plan-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/assets/precondition-failed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/assets/precondition-failed.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/assets/stage-1-blocked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/assets/stage-1-blocked.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/references/git-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/references/git-operations.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/references/preconditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/references/preconditions.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/references/state-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/references/state-updates.md -------------------------------------------------------------------------------- /.claude/skills/plugin-planning/references/subagent-invocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-planning/references/subagent-invocation.md -------------------------------------------------------------------------------- /.claude/skills/plugin-testing/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-testing/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/plugin-testing/assets/decision-menu-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-testing/assets/decision-menu-templates.md -------------------------------------------------------------------------------- /.claude/skills/plugin-testing/assets/manual-testing-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-testing/assets/manual-testing-checklist.md -------------------------------------------------------------------------------- /.claude/skills/plugin-testing/assets/report-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-testing/assets/report-templates.md -------------------------------------------------------------------------------- /.claude/skills/plugin-testing/references/failure-investigation-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-testing/references/failure-investigation-guide.md -------------------------------------------------------------------------------- /.claude/skills/plugin-testing/references/manual-testing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-testing/references/manual-testing-guide.md -------------------------------------------------------------------------------- /.claude/skills/plugin-testing/references/pluginval-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-testing/references/pluginval-guide.md -------------------------------------------------------------------------------- /.claude/skills/plugin-testing/references/test-specifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-testing/references/test-specifications.md -------------------------------------------------------------------------------- /.claude/skills/plugin-testing/references/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-testing/references/troubleshooting.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/assets/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/assets/architecture.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/assets/continue-here-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/assets/continue-here-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/assets/decision-menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/assets/decision-menus.json -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/assets/notes-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/assets/notes-template.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/assets/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/assets/plan.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/README.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/checkpoint-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/checkpoint-protocol.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/creative-brief-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/creative-brief-sync.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/dispatcher-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/dispatcher-pattern.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/error-handling.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/integration-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/integration-contracts.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/milestone-terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/milestone-terminology.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/phase-aware-dispatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/phase-aware-dispatch.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/precondition-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/precondition-checks.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/precondition-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/precondition-checks.sh -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/stage-1-foundation-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/stage-1-foundation-shell.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/stage-2-dsp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/stage-2-dsp.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/stage-3-gui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/stage-3-gui.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/stage-5-validation.md.deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/stage-5-validation.md.deprecated -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/state-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/state-management.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/validation-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/validation-integration.md -------------------------------------------------------------------------------- /.claude/skills/plugin-workflow/references/workflow-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/plugin-workflow/references/workflow-mode.md -------------------------------------------------------------------------------- /.claude/skills/system-setup/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/system-setup/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/system-setup/assets/system-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/system-setup/assets/system-check.sh -------------------------------------------------------------------------------- /.claude/skills/system-setup/assets/test-scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/system-setup/assets/test-scenarios.md -------------------------------------------------------------------------------- /.claude/skills/system-setup/references/error-recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/system-setup/references/error-recovery.md -------------------------------------------------------------------------------- /.claude/skills/system-setup/references/execution-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/system-setup/references/execution-notes.md -------------------------------------------------------------------------------- /.claude/skills/system-setup/references/juce-setup-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/system-setup/references/juce-setup-guide.md -------------------------------------------------------------------------------- /.claude/skills/system-setup/references/platform-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/system-setup/references/platform-requirements.md -------------------------------------------------------------------------------- /.claude/skills/system-setup/references/validation-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/system-setup/references/validation-workflow.md -------------------------------------------------------------------------------- /.claude/skills/system-setup/test-setup-skill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/system-setup/test-setup-skill.sh -------------------------------------------------------------------------------- /.claude/skills/troubleshooting-docs/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/troubleshooting-docs/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/troubleshooting-docs/assets/critical-pattern-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/troubleshooting-docs/assets/critical-pattern-template.md -------------------------------------------------------------------------------- /.claude/skills/troubleshooting-docs/assets/resolution-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/troubleshooting-docs/assets/resolution-template.md -------------------------------------------------------------------------------- /.claude/skills/troubleshooting-docs/references/example-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/troubleshooting-docs/references/example-walkthrough.md -------------------------------------------------------------------------------- /.claude/skills/troubleshooting-docs/references/yaml-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/troubleshooting-docs/references/yaml-schema.md -------------------------------------------------------------------------------- /.claude/skills/troubleshooting-docs/schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/troubleshooting-docs/schema.yaml -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/assets/integration-checklist-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/assets/integration-checklist-template.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/assets/parameter-binding-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/assets/parameter-binding-example.js -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/assets/parameter-spec-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/assets/parameter-spec-template.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/assets/ui-yaml-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/assets/ui-yaml-template.yaml -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/assets/webview-templates/CMakeLists-webview-snippet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/assets/webview-templates/CMakeLists-webview-snippet.cmake -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/assets/webview-templates/PluginEditor-webview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/assets/webview-templates/PluginEditor-webview.cpp -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/assets/webview-templates/PluginEditor-webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/assets/webview-templates/PluginEditor-webview.h -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/assets/webview-templates/index-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/assets/webview-templates/index-template.html -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/aesthetic-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/aesthetic-integration.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/browser-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/browser-testing.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/cmake-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/cmake-configuration.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/cmake-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/cmake-generation.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/common-pitfalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/common-pitfalls.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/context-extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/context-extraction.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/cpp-boilerplate-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/cpp-boilerplate-generation.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/decision-menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/decision-menus.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/delegation-protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/delegation-protocols.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/design-questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/design-questions.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/html-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/html-generation.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/layout-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/layout-validation.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/phase-b-enforcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/phase-b-enforcement.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/state-tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/state-tracking.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/ui-design-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/ui-design-rules.md -------------------------------------------------------------------------------- /.claude/skills/ui-mockup/references/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-mockup/references/versioning.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/assets/aesthetic-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/assets/aesthetic-template.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/assets/manifest-init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/assets/manifest-init.json -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/assets/metadata-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/assets/metadata-template.json -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/aesthetic-interpretation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/aesthetic-interpretation.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/apply-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/apply-operation.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/control-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/control-generation.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/delete-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/delete-operation.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/implementation-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/implementation-notes.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/layout-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/layout-generation.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/list-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/list-operation.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/pattern-extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/pattern-extraction.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/prose-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/prose-generation.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/save-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/save-operation.md -------------------------------------------------------------------------------- /.claude/skills/ui-template-library/references/update-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/ui-template-library/references/update-operation.md -------------------------------------------------------------------------------- /.claude/skills/workflow-reconciliation/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/workflow-reconciliation/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/workflow-reconciliation/assets/reconciliation-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/workflow-reconciliation/assets/reconciliation-examples.md -------------------------------------------------------------------------------- /.claude/skills/workflow-reconciliation/assets/reconciliation-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/workflow-reconciliation/assets/reconciliation-rules.json -------------------------------------------------------------------------------- /.claude/skills/workflow-reconciliation/references/handoff-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/skills/workflow-reconciliation/references/handoff-formats.md -------------------------------------------------------------------------------- /.claude/system-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/system-config.json -------------------------------------------------------------------------------- /.claude/utils/sync-brief-from-mockup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/utils/sync-brief-from-mockup.sh -------------------------------------------------------------------------------- /.claude/utils/validation-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/utils/validation-cache.md -------------------------------------------------------------------------------- /.claude/utils/validation-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.claude/utils/validation-cache.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/PLUGINS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/README.md -------------------------------------------------------------------------------- /backups/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/backups/.gitignore -------------------------------------------------------------------------------- /backups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/backups/README.md -------------------------------------------------------------------------------- /plugins/AngelGrain/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/.continue-here.md -------------------------------------------------------------------------------- /plugins/AngelGrain/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/AngelGrain/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/AngelGrain/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/AngelGrain/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/AngelGrain/.ideas/parameter-spec-draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/.ideas/parameter-spec-draft.md -------------------------------------------------------------------------------- /plugins/AngelGrain/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/AngelGrain/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/AngelGrain/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/AngelGrain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/AngelGrain/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/AngelGrain/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/AngelGrain/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/AngelGrain/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/AngelGrain/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/AngelGrain/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/AngelGrain/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AngelGrain/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v3-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v3-ui-test.html -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v3-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v3-ui.yaml -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v4-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v4-ui-test.html -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v4-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v4-ui.yaml -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v5-CMakeLists-SNIPPET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v5-CMakeLists-SNIPPET.txt -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v5-PluginEditor-TEMPLATE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v5-PluginEditor-TEMPLATE.cpp -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v5-PluginEditor-TEMPLATE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v5-PluginEditor-TEMPLATE.h -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v5-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v5-integration-checklist.md -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v5-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v5-ui-test.html -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v5-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v5-ui.html -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/mockups/v5-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/mockups/v5-ui.yaml -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/parameter-spec-draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/parameter-spec-draft.md -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/AutoClip/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/AutoClip/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/AutoClip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/AutoClip/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/NOTES.md -------------------------------------------------------------------------------- /plugins/AutoClip/Presets/Default.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Presets/Default.preset -------------------------------------------------------------------------------- /plugins/AutoClip/Presets/Extreme Clip.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Presets/Extreme Clip.preset -------------------------------------------------------------------------------- /plugins/AutoClip/Presets/Heavy Clip.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Presets/Heavy Clip.preset -------------------------------------------------------------------------------- /plugins/AutoClip/Presets/Moderate Clip.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Presets/Moderate Clip.preset -------------------------------------------------------------------------------- /plugins/AutoClip/Presets/Subtle Clip.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Presets/Subtle Clip.preset -------------------------------------------------------------------------------- /plugins/AutoClip/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/AutoClip/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/AutoClip/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/AutoClip/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/AutoClip/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/AutoClip/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/AutoClip/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/AutoClip/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/ClapMachine/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/ClapMachine/NOTES.md -------------------------------------------------------------------------------- /plugins/DriveVerb/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.continue-here.md -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v3-CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v3-CMakeLists.txt -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v3-PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v3-PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v3-PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v3-PluginEditor.h -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v3-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v3-integration-checklist.md -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v3-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v3-ui-test.html -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v3-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v3-ui.html -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/mockups/v3-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/mockups/v3-ui.yaml -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/DriveVerb/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/DriveVerb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/DriveVerb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/DriveVerb/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/NOTES.md -------------------------------------------------------------------------------- /plugins/DriveVerb/Presets/01 - Default.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Presets/01 - Default.preset -------------------------------------------------------------------------------- /plugins/DriveVerb/Presets/02 - Subtle Warmth.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Presets/02 - Subtle Warmth.preset -------------------------------------------------------------------------------- /plugins/DriveVerb/Presets/03 - Driven Ambience.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Presets/03 - Driven Ambience.preset -------------------------------------------------------------------------------- /plugins/DriveVerb/Presets/04 - Dark Filtered Hall.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Presets/04 - Dark Filtered Hall.preset -------------------------------------------------------------------------------- /plugins/DriveVerb/Presets/05 - Aggressive Saturation.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Presets/05 - Aggressive Saturation.preset -------------------------------------------------------------------------------- /plugins/DriveVerb/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/DriveVerb/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/DriveVerb/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/DriveVerb/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/DriveVerb/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/DriveVerb/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/DriveVerb/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DriveVerb/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/DriveVerb/build.log: -------------------------------------------------------------------------------- 1 | ninja: error: loading 'build.ninja': No such file or directory 2 | -------------------------------------------------------------------------------- /plugins/Drum808/.dsp-phase-3.1-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.dsp-phase-3.1-report.json -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v3-CMakeLists-SNIPPET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v3-CMakeLists-SNIPPET.txt -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v3-PluginEditor-TEMPLATE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v3-PluginEditor-TEMPLATE.cpp -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v3-PluginEditor-TEMPLATE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v3-PluginEditor-TEMPLATE.h -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v3-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v3-integration-checklist.md -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v3-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v3-ui-test.html -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v3-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v3-ui.html -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/mockups/v3-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/mockups/v3-ui.yaml -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/Drum808/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/Drum808/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/Drum808/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/Drum808/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/NOTES.md -------------------------------------------------------------------------------- /plugins/Drum808/Presets/01-Factory-Default.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Presets/01-Factory-Default.preset -------------------------------------------------------------------------------- /plugins/Drum808/Presets/02-Deep-Kick.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Presets/02-Deep-Kick.preset -------------------------------------------------------------------------------- /plugins/Drum808/Presets/03-Crispy-Hats.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Presets/03-Crispy-Hats.preset -------------------------------------------------------------------------------- /plugins/Drum808/Presets/04-Tight-Punch.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Presets/04-Tight-Punch.preset -------------------------------------------------------------------------------- /plugins/Drum808/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/Drum808/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/Drum808/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/Drum808/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/Drum808/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/Drum808/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/Drum808/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Drum808/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/DrumRoulette/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.continue-here.md -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v3-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v3-ui-test.html -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v3-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v3-ui.yaml -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v4-CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v4-CMakeLists.txt -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v4-PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v4-PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v4-PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v4-PluginEditor.h -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v4-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v4-integration-checklist.md -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v4-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v4-ui-test.html -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v4-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v4-ui.html -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/mockups/v4-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/mockups/v4-ui.yaml -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/DrumRoulette/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/DrumRoulette/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/DrumRoulette/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/DrumRoulette/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/NOTES.md -------------------------------------------------------------------------------- /plugins/DrumRoulette/Presets/01-Default Kit.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Presets/01-Default Kit.preset -------------------------------------------------------------------------------- /plugins/DrumRoulette/Presets/02-Tight Drums.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Presets/02-Tight Drums.preset -------------------------------------------------------------------------------- /plugins/DrumRoulette/Presets/03-Dark and Deep.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Presets/03-Dark and Deep.preset -------------------------------------------------------------------------------- /plugins/DrumRoulette/Presets/04-Bright and Crispy.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Presets/04-Bright and Crispy.preset -------------------------------------------------------------------------------- /plugins/DrumRoulette/Presets/05-Lo-Fi Character.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Presets/05-Lo-Fi Character.preset -------------------------------------------------------------------------------- /plugins/DrumRoulette/Source/DrumRouletteVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Source/DrumRouletteVoice.cpp -------------------------------------------------------------------------------- /plugins/DrumRoulette/Source/DrumRouletteVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Source/DrumRouletteVoice.h -------------------------------------------------------------------------------- /plugins/DrumRoulette/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/DrumRoulette/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/DrumRoulette/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/DrumRoulette/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/DrumRoulette/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/DrumRoulette/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/DrumRoulette/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/DrumRoulette/stage3-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/stage3-report.json -------------------------------------------------------------------------------- /plugins/DrumRoulette/stage5.1-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/DrumRoulette/stage5.1-report.json -------------------------------------------------------------------------------- /plugins/FlutterVerb/.continue-here.archived.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.continue-here.archived.md -------------------------------------------------------------------------------- /plugins/FlutterVerb/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.continue-here.md -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v3-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v3-ui-test.html -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v4-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v4-ui-test.html -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v5-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v5-ui-test.html -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v6-CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v6-CMakeLists.txt -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v6-PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v6-PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v6-PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v6-PluginEditor.h -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v6-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v6-integration-checklist.md -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v6-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v6-ui-test.html -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v6-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v6-ui.html -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/mockups/v6-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/mockups/v6-ui.yaml -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/FlutterVerb/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/FlutterVerb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/FlutterVerb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/FlutterVerb/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/NOTES.md -------------------------------------------------------------------------------- /plugins/FlutterVerb/Presets/Bright Plate.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Presets/Bright Plate.preset -------------------------------------------------------------------------------- /plugins/FlutterVerb/Presets/Dark Ambient.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Presets/Dark Ambient.preset -------------------------------------------------------------------------------- /plugins/FlutterVerb/Presets/Default.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Presets/Default.preset -------------------------------------------------------------------------------- /plugins/FlutterVerb/Presets/Large Hall.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Presets/Large Hall.preset -------------------------------------------------------------------------------- /plugins/FlutterVerb/Presets/Lo-Fi Tape.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Presets/Lo-Fi Tape.preset -------------------------------------------------------------------------------- /plugins/FlutterVerb/Presets/Small Room.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Presets/Small Room.preset -------------------------------------------------------------------------------- /plugins/FlutterVerb/Presets/Tape Warble.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Presets/Tape Warble.preset -------------------------------------------------------------------------------- /plugins/FlutterVerb/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/FlutterVerb/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/FlutterVerb/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/FlutterVerb/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/FlutterVerb/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/FlutterVerb/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/FlutterVerb/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/FlutterVerb/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/GainKnob/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.continue-here.md -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/mockups/v1-CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/mockups/v1-CMakeLists.txt -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/mockups/v1-PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/mockups/v1-PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/mockups/v1-PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/mockups/v1-PluginEditor.h -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/mockups/v1-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/mockups/v1-integration-checklist.md -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/mockups/v1-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/mockups/v1-ui.html -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/GainKnob/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/GainKnob/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/GainKnob/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/GainKnob/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/NOTES.md -------------------------------------------------------------------------------- /plugins/GainKnob/Presets/Half Volume.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Presets/Half Volume.preset -------------------------------------------------------------------------------- /plugins/GainKnob/Presets/Quiet.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Presets/Quiet.preset -------------------------------------------------------------------------------- /plugins/GainKnob/Presets/Silence.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Presets/Silence.preset -------------------------------------------------------------------------------- /plugins/GainKnob/Presets/Subtle Cut.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Presets/Subtle Cut.preset -------------------------------------------------------------------------------- /plugins/GainKnob/Presets/Unity.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Presets/Unity.preset -------------------------------------------------------------------------------- /plugins/GainKnob/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/GainKnob/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/GainKnob/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/GainKnob/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/GainKnob/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/GainKnob/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/GainKnob/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/GainKnob/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/LushPad/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.continue-here.md -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/mockups/v2-CMakeLists-SNIPPET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/mockups/v2-CMakeLists-SNIPPET.txt -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/mockups/v2-PluginEditor-TEMPLATE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/mockups/v2-PluginEditor-TEMPLATE.cpp -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/mockups/v2-PluginEditor-TEMPLATE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/mockups/v2-PluginEditor-TEMPLATE.h -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/mockups/v2-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/mockups/v2-integration-checklist.md -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/mockups/v2-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/mockups/v2-ui.html -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/LushPad/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/LushPad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LushPad/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/NOTES.md -------------------------------------------------------------------------------- /plugins/LushPad/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/LushPad/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/LushPad/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/LushPad/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/LushPad/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/LushPad/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/LushPad/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushPad/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/LushVerb/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.continue-here.md -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v3-CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v3-CMakeLists.txt -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v3-PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v3-PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v3-PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v3-PluginEditor.h -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v3-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v3-integration-checklist.md -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v3-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v3-ui-test.html -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v3-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v3-ui.html -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/mockups/v3-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/mockups/v3-ui.yaml -------------------------------------------------------------------------------- /plugins/LushVerb/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/LushVerb/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/LushVerb/NOTES.md -------------------------------------------------------------------------------- /plugins/MinimalKick/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.continue-here.md -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/mockups/v2-CMakeLists-SNIPPET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/mockups/v2-CMakeLists-SNIPPET.txt -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/mockups/v2-PluginEditor-TEMPLATE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/mockups/v2-PluginEditor-TEMPLATE.cpp -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/mockups/v2-PluginEditor-TEMPLATE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/mockups/v2-PluginEditor-TEMPLATE.h -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/mockups/v2-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/mockups/v2-integration-checklist.md -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/mockups/v2-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/mockups/v2-ui.html -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/MinimalKick/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/MinimalKick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/MinimalKick/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/NOTES.md -------------------------------------------------------------------------------- /plugins/MinimalKick/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/MinimalKick/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/MinimalKick/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/MinimalKick/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/MinimalKick/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/MinimalKick/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/MinimalKick/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/MinimalKick/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/OrganicHats/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.continue-here.md -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/mockups/v2-CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/mockups/v2-CMakeLists.txt -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/mockups/v2-PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/mockups/v2-PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/mockups/v2-PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/mockups/v2-PluginEditor.h -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/mockups/v2-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/mockups/v2-integration-checklist.md -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/mockups/v2-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/mockups/v2-ui.html -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/OrganicHats/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/OrganicHats/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/OrganicHats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/OrganicHats/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/NOTES.md -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/HiHatSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/HiHatSound.h -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/HiHatVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/HiHatVoice.cpp -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/HiHatVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/HiHatVoice.h -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/OrganicHats/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/OrganicHats/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/PadForge/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.continue-here.md -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/mockups/v2-CMakeLists-SNIPPET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/mockups/v2-CMakeLists-SNIPPET.txt -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/mockups/v2-PluginEditor-TEMPLATE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/mockups/v2-PluginEditor-TEMPLATE.cpp -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/mockups/v2-PluginEditor-TEMPLATE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/mockups/v2-PluginEditor-TEMPLATE.h -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/mockups/v2-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/mockups/v2-integration-checklist.md -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/mockups/v2-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/mockups/v2-ui.html -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/PadForge/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/PadForge/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/Scatter/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.continue-here.md -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v3-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v3-ui-test.html -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v3-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v3-ui.yaml -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v4-CMakeLists-SNIPPET.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v4-CMakeLists-SNIPPET.txt -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v4-PluginEditor-TEMPLATE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v4-PluginEditor-TEMPLATE.cpp -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v4-PluginEditor-TEMPLATE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v4-PluginEditor-TEMPLATE.h -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v4-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v4-integration-checklist.md -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v4-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v4-ui-test.html -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v4-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v4-ui.html -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/mockups/v4-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/mockups/v4-ui.yaml -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/Scatter/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/Scatter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/Scatter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/Scatter/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/NOTES.md -------------------------------------------------------------------------------- /plugins/Scatter/Presets/01_Default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Presets/01_Default.txt -------------------------------------------------------------------------------- /plugins/Scatter/Presets/02_Shimmer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Presets/02_Shimmer.txt -------------------------------------------------------------------------------- /plugins/Scatter/Presets/03_Stutter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Presets/03_Stutter.txt -------------------------------------------------------------------------------- /plugins/Scatter/Presets/04_Ambient_Wash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Presets/04_Ambient_Wash.txt -------------------------------------------------------------------------------- /plugins/Scatter/Presets/05_Granular_Reverse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Presets/05_Granular_Reverse.txt -------------------------------------------------------------------------------- /plugins/Scatter/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/Scatter/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/Scatter/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/Scatter/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/Scatter/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/Scatter/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/Scatter/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Scatter/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/TEMPLATE-HEADLESS-EDITOR/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TEMPLATE-HEADLESS-EDITOR/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/TEMPLATE-HEADLESS-EDITOR/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TEMPLATE-HEADLESS-EDITOR/PluginEditor.h -------------------------------------------------------------------------------- /plugins/TEMPLATE-HEADLESS-EDITOR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TEMPLATE-HEADLESS-EDITOR/README.md -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/architecture.md -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v3-CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v3-CMakeLists.txt -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v3-PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v3-PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v3-PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v3-PluginEditor.h -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v3-integration-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v3-integration-checklist.md -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v3-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v3-ui-test.html -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v3-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v3-ui.html -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/mockups/v3-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/mockups/v3-ui.yaml -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/parameter-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/parameter-spec.md -------------------------------------------------------------------------------- /plugins/TapeAge/.ideas/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/.ideas/plan.md -------------------------------------------------------------------------------- /plugins/TapeAge/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/TapeAge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/TapeAge/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/NOTES.md -------------------------------------------------------------------------------- /plugins/TapeAge/Presets/Classic Tape.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Presets/Classic Tape.preset -------------------------------------------------------------------------------- /plugins/TapeAge/Presets/Destroyed.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Presets/Destroyed.preset -------------------------------------------------------------------------------- /plugins/TapeAge/Presets/Subtle Warmth.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Presets/Subtle Warmth.preset -------------------------------------------------------------------------------- /plugins/TapeAge/Presets/Unity.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Presets/Unity.preset -------------------------------------------------------------------------------- /plugins/TapeAge/Presets/Worn Out.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Presets/Worn Out.preset -------------------------------------------------------------------------------- /plugins/TapeAge/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugins/TapeAge/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Source/PluginEditor.h -------------------------------------------------------------------------------- /plugins/TapeAge/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugins/TapeAge/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Source/PluginProcessor.h -------------------------------------------------------------------------------- /plugins/TapeAge/Source/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Source/ui/public/index.html -------------------------------------------------------------------------------- /plugins/TapeAge/Source/ui/public/js/juce/check_native_interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Source/ui/public/js/juce/check_native_interop.js -------------------------------------------------------------------------------- /plugins/TapeAge/Source/ui/public/js/juce/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/Source/ui/public/js/juce/index.js -------------------------------------------------------------------------------- /plugins/TapeAge/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/build.log -------------------------------------------------------------------------------- /plugins/TapeAge/dist/TapeAge-by-TACHES.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/dist/TapeAge-by-TACHES.pkg -------------------------------------------------------------------------------- /plugins/TapeAge/dist/install-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/TapeAge/dist/install-readme.txt -------------------------------------------------------------------------------- /plugins/Words/.continue-here.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Words/.continue-here.md -------------------------------------------------------------------------------- /plugins/Words/.ideas/creative-brief.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Words/.ideas/creative-brief.md -------------------------------------------------------------------------------- /plugins/Words/.ideas/mockups/v1-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Words/.ideas/mockups/v1-ui-test.html -------------------------------------------------------------------------------- /plugins/Words/.ideas/mockups/v1-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Words/.ideas/mockups/v1-ui.yaml -------------------------------------------------------------------------------- /plugins/Words/.ideas/mockups/v2-ui-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Words/.ideas/mockups/v2-ui-test.html -------------------------------------------------------------------------------- /plugins/Words/.ideas/mockups/v2-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/plugins/Words/.ideas/mockups/v2-ui.yaml -------------------------------------------------------------------------------- /scripts/build-and-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/scripts/build-and-install.sh -------------------------------------------------------------------------------- /scripts/verify-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/scripts/verify-backup.sh -------------------------------------------------------------------------------- /troubleshooting/api-usage/juce-dsp-reverb-wrong-api-methods-FlutterVerb-20251111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/api-usage/juce-dsp-reverb-wrong-api-methods-FlutterVerb-20251111.md -------------------------------------------------------------------------------- /troubleshooting/api-usage/rotary-slider-absolute-positioning-interaction-TapeMachine-20251107.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/api-usage/rotary-slider-absolute-positioning-interaction-TapeMachine-20251107.md -------------------------------------------------------------------------------- /troubleshooting/api-usage/webview-es6-module-loading-frozen-knobs-lushverb-20251111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/api-usage/webview-es6-module-loading-frozen-knobs-lushverb-20251111.md -------------------------------------------------------------------------------- /troubleshooting/api-usage/webview-parameter-not-updating-wrong-event-format-JUCE-20251108.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/api-usage/webview-parameter-not-updating-wrong-event-format-JUCE-20251108.md -------------------------------------------------------------------------------- /troubleshooting/build-failures/juceheader-not-found-cmake-JUCE-20251106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/build-failures/juceheader-not-found-cmake-JUCE-20251106.md -------------------------------------------------------------------------------- /troubleshooting/build-failures/stale-build-after-stage-5-gui-changes-OrganicHats-20251112.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/build-failures/stale-build-after-stage-5-gui-changes-OrganicHats-20251112.md -------------------------------------------------------------------------------- /troubleshooting/build-failures/ui-trigger-button-processblock-invocation-thread-violation-JUCE-20251106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/build-failures/ui-trigger-button-processblock-invocation-thread-violation-JUCE-20251106.md -------------------------------------------------------------------------------- /troubleshooting/dsp-issues/dsp-filters-not-responding-to-parameters-MicroGlitch-20251106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/dsp-issues/dsp-filters-not-responding-to-parameters-MicroGlitch-20251106.md -------------------------------------------------------------------------------- /troubleshooting/gui-issues/absolute-knob-drag-webview-20251111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/gui-issues/absolute-knob-drag-webview-20251111.md -------------------------------------------------------------------------------- /troubleshooting/gui-issues/invisible-rotary-sliders-flexbox-constraints-JUCE-20251106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/gui-issues/invisible-rotary-sliders-flexbox-constraints-JUCE-20251106.md -------------------------------------------------------------------------------- /troubleshooting/gui-issues/rotating-lighting-unrealistic-knobs-JUCE-20251110.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/gui-issues/rotating-lighting-unrealistic-knobs-JUCE-20251110.md -------------------------------------------------------------------------------- /troubleshooting/gui-issues/toggle-switch-wrong-api-getsliderstate-flutterverb-20251111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/gui-issues/toggle-switch-wrong-api-getsliderstate-flutterverb-20251111.md -------------------------------------------------------------------------------- /troubleshooting/gui-issues/vu-meter-no-animation-loop-flutterverb-20251111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/gui-issues/vu-meter-no-animation-loop-flutterverb-20251111.md -------------------------------------------------------------------------------- /troubleshooting/gui-issues/webview-frame-load-interrupted-TapeAge-20251111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/gui-issues/webview-frame-load-interrupted-TapeAge-20251111.md -------------------------------------------------------------------------------- /troubleshooting/gui-issues/webview-knob-hover-shake-microscale-transform-20251112.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/gui-issues/webview-knob-hover-shake-microscale-transform-20251112.md -------------------------------------------------------------------------------- /troubleshooting/gui-issues/webview-knobs-frozen-multiple-causes-TapeAge-20251111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/gui-issues/webview-knobs-frozen-multiple-causes-TapeAge-20251111.md -------------------------------------------------------------------------------- /troubleshooting/gui-issues/webview-parameter-undefined-event-callback-TapeAge-20251111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/gui-issues/webview-parameter-undefined-event-callback-TapeAge-20251111.md -------------------------------------------------------------------------------- /troubleshooting/parameter-issues/ableton-preset-interference-state-restoration-JUCE-20251107.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/parameter-issues/ableton-preset-interference-state-restoration-JUCE-20251107.md -------------------------------------------------------------------------------- /troubleshooting/parameter-issues/audiothumbnail-waveform-not-persisting-MicroGlitch-20251106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/parameter-issues/audiothumbnail-waveform-not-persisting-MicroGlitch-20251106.md -------------------------------------------------------------------------------- /troubleshooting/patterns/HOW-TO-ADD-CRITICAL-PATTERNS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/patterns/HOW-TO-ADD-CRITICAL-PATTERNS.md -------------------------------------------------------------------------------- /troubleshooting/patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/patterns/README.md -------------------------------------------------------------------------------- /troubleshooting/patterns/common-solutions.md: -------------------------------------------------------------------------------- 1 | # Common JUCE Plugin Solutions 2 | -------------------------------------------------------------------------------- /troubleshooting/patterns/juce8-critical-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/patterns/juce8-critical-patterns.md -------------------------------------------------------------------------------- /troubleshooting/runtime-issues/synth-no-audio-missing-is-synth-LushPad-20251113.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/runtime-issues/synth-no-audio-missing-is-synth-LushPad-20251113.md -------------------------------------------------------------------------------- /troubleshooting/runtime-issues/vst3-bus-config-effect-missing-input-Shake-20251106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/runtime-issues/vst3-bus-config-effect-missing-input-Shake-20251106.md -------------------------------------------------------------------------------- /troubleshooting/runtime-issues/webbrowser-local-html-url-cant-be-shown-JUCE-20251107.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/runtime-issues/webbrowser-local-html-url-cant-be-shown-JUCE-20251107.md -------------------------------------------------------------------------------- /troubleshooting/validation-problems/vst3-invalid-signature-plugin-cache-FlutterVerb-20251111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glittercowboy/plugin-freedom-system/HEAD/troubleshooting/validation-problems/vst3-invalid-signature-plugin-cache-FlutterVerb-20251111.md --------------------------------------------------------------------------------