mnehmos.quest-keeper.game
No description available.
File Explorer
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- git-pulse.zip
- quest-keeper-frontend.zip
- quest-keeper-master.zip
- tdd-playtest.zip
- settings.local.json
- ci.yml
- deploy-staging.yml
- release.yml
- extensions.json
- dnd_spatial_rules.md
- llm_tool_mappings.md
- master_spec.md
- phase2_ui_design.md
- phase3_3d_design.md
- phase3_5_interaction_design.md
- phase4_integration_design.md
- DEVELOPMENT_PLAN.md
- PROJECT_VISION.md
- TAURI_SIDECAR_DEPLOYMENT.md
- TDD_REFACTORING_PLAN.md
- tauri.svg
- vite.svg
- checkpoint-database.js
- dev-server.js
- prepare-mcp.js
- react.svg
- AdventureView.tsx
- CharacterCreationModal.tsx
- ConcentrationIndicator.tsx
- ConditionsDisplay.tsx
- CustomEffectsDisplay.tsx
- LevelUpModal.tsx
- SpellBookView.tsx
- SpellSlotsDisplay.tsx
- CensorBlock.tsx
- Spoiler.tsx
- StreamingMessage.tsx
- ToolCallDisplay.tsx
- ConditionBadge.tsx
- ConfirmModal.tsx
- SelectionStatusIndicator.tsx
- XPBar.tsx
- AuraListPanel.tsx
- CharacterQuickView.tsx
- CombatHUD.test.tsx
- CombatHUD.tsx
- LootPanel.tsx
- PartyStatusBar.tsx
- QuickActionBar.tsx
- RestPanel.tsx
- SpellbookDrawer.tsx
- TurnOrderBar.tsx
- AppLayout.tsx
- MainViewport.tsx
- NavBar.tsx
- TerminalPanel.tsx
- NpcMemoryTimeline.tsx
- NpcRelationshipCard.tsx
- CharacterCreationModal.tsx
- CharacterPickerModal.tsx
- index.ts
- PartyCreatorModal.tsx
- PartyPanel.tsx
- PartySelector.tsx
- CampaignSetupWizard.tsx
- WorldGenerationModal.tsx
- SettingsModal.tsx
- ChatHistory.tsx
- ChatInput.tsx
- ChatSidebar.tsx
- ConnectedWater.tsx
- CreatureLibrary.test.tsx
- CreatureLibrary.tsx
- index.ts
- modelRegistry.ts
- ProceduralCreature.tsx
- ProceduralProps.tsx
- AuraLayer.tsx
- AuraRing.tsx
- BattlemapCanvas.tsx
- CameraControls.tsx
- CharacterEditModal.tsx
- CharacterHeader.tsx
- CharacterSheetView.tsx
- EntityLayer.tsx
- EntityTooltip.tsx
- GridSystem.tsx
- InventoryView.tsx
- LineOfSight.tsx
- NotesView.tsx
- NpcJournalView.tsx
- POIDetailPanel.tsx
- SettingsView.tsx
- Terrain.tsx
- TerrainTooltip.tsx
- Token.tsx
- VisualizationControls.tsx
- WorldEnvironmentForm.tsx
- WorldEnvironmentOverlay.tsx
- WorldMapCanvas.tsx
- WorldStateView.tsx
- index.ts
- NationCard.tsx
- RegionCard.tsx
- WorldStateCard.tsx
- WorldVisualization.tsx
- ThemeSelector.tsx
- ThemeContext.tsx
- dnd5eItems.ts
- playerGuide.ts
- startingGear.ts
- tips.ts
- xpTable.ts
- index.ts
- useAutoScroll.ts
- useStreamingText.ts
- layer1-identity.md
- layer2-rules.md
- playtest-mode.md
- AnthropicProvider.ts
- GeminiProvider.ts
- OpenAIProvider.ts
- contextBuilder.ts
- LLMService.ts
- types.ts
- eventPoller.ts
- mcpClient.ts
- toolRegistry.ts
- watchdog.test.ts
- watchdog.ts
- chatStore.ts
- combatStore.ts
- gameStateStore.ts
- hudStore.test.ts
- hudStore.ts
- notesStore.ts
- npcStore.ts
- partyStore.test.ts
- partyStore.ts
- sessionStore.ts
- settingsStore.ts
- uiStore.ts
- mcpClient.ts
- tauriApis.ts
- setup.ts
- watchdog.ts
- aiBackgroundGenerator.ts
- eventBus.ts
- gridHelpers.test.ts
- gridHelpers.ts
- mcpUtils.test.ts
- mcpUtils.ts
- toolResponseFormatter.test.ts
- toolResponseFormatter.ts
- App.css
- App.tsx
- main.tsx
- vite-env.d.ts
- default.json
- 128x128.png
- [email protected]
- 32x32.png
- icon.icns
- icon.ico
- icon.png
- Square107x107Logo.png
- Square142x142Logo.png
- Square150x150Logo.png
- Square284x284Logo.png
- Square30x30Logo.png
- Square310x310Logo.png
- Square44x44Logo.png
- Square71x71Logo.png
- Square89x89Logo.png
- StoreLogo.png
- lib.rs
- main.rs
- .gitignore
- .taurignore
- 2
- better_sqlite3.node
- build.rs
- Cargo.lock
- Cargo.toml
- rpg-mcp-server-x86_64-pc-windows-msvc.exe
- tauri.conf.json
- .env.production
- .env.staging
- .gitattributes
- .gitignore
- index.html
- integration_report.md.resolved
- package-lock.json
- package.json
- postcss.config.js
- PROJECT_KNOWLEDGE.md
- README.md
- tailwind.config.js
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- vitest.config.ts
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git push
View Details ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
git tag
View Details ▼
git tag
Create, list, delete, or verify tags.
A tag is a static reference to a commit.
git tag
List all tags:
git tag {{tag_name}}
Create a tag with the given name pointing to the current commit:
git tag {{tag_name}} {{commit}}
Create a tag with the given name pointing to a given commit:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
copy
View Details ▼
copy
Copy files.
COPY {{path/to/source_file}} {{path/to/destination_file}}
Copy a file:
