
Session Palace Builder
Pick a pre-built session palace layout so your agent keeps feature work, research, decisions, or debugging in named rooms instead of one endless chat thread.
Install
npx skills add https://github.com/athola/claude-night-market --skill session-palace-builderWhat is this skill?
- Software Development Workshop template with six rooms from requirements through deployment platform
- Research Library template for questions, methodology, analysis, sources, conclusions, and follow-ups
- Decision Council template for evidence, options, debate, votes, and action registry
- Debug Workshop pattern for structured troubleshooting sessions
- Beginner-oriented layouts tagged for templates, workflows, and dependencies on session-palace-builder
Adoption & trust: 1 installs on skills.sh; 304 GitHub stars; 3/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
Recommended Skills
Journey fit
Canonical shelf is build/agent-tooling because palace templates structure how the agent partitions work during implementation and adjacent rituals. Session palaces are agent-session scaffolding—room-based context maps—not a single deploy or test task.
Common Questions / FAQ
Is Session Palace Builder safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Session Palace Builder
# Session Palace Templates Pre-designed templates for common session types accelerate palace creation. ## Software Development Workshop ``` Development Workshop Palace ├── Requirements Room (Feature specifications) ├── Architecture Hall (Design decisions) ├── Implementation Forge (Code and development) ├── Testing Arena (Quality assurance) ├── Review Chamber (Code reviews and feedback) └── Deployment Platform (Release preparation) ``` **Best for**: Feature development, bug fixes, refactoring projects ## Research Library ``` Research Library Palace ├── Question Foyer (Research questions and hypotheses) ├── Methodology Wing (Research approaches) ├── Data Analysis Hall (Findings and insights) ├── Source Gallery (References and citations) ├── Conclusion Chamber (Synthesis and answers) └── Future Study Alcove (Further research directions) ``` **Best for**: Investigation, analysis, documentation projects ## Decision Council ``` Decision Council Palace ├── Evidence Chamber (Facts and data) ├── Options Gallery (Alternatives considered) ├── Debate Floor (Pros and cons discussion) ├── Vote Hall (Final decisions) └── Action Registry (Implementation assignments) ``` **Best for**: Architecture decisions, planning sessions, reviews ## Debug Workshop ``` Debug Workshop Palace ├── Symptom Board (Error manifestations) ├── Hypothesis Lab (Potential causes) ├── Investigation Bench (Testing and exploration) ├── Root Cause Vault (Confirmed causes) └── Fix Foundry (Solution implementation) ``` **Best for**: Bug investigation, troubleshooting, incident response ## Template Customization Start from a template and modify: 1. Add/remove rooms based on session needs 2. Rename areas for domain specificity 3. Add shortcuts for frequent navigation paths 4. Create sub-areas for detailed organization --- name: session-palace-builder description: Builds session-scoped temporary memory palaces for extended conversations. Use when tracking state across interruptions in a multi-step project. alwaysApply: false category: session-management tags: - session - context - project-memory - conversation-state - temporary-storage dependencies: - memory-palace-architect scripts: [] usage_patterns: - session-context - project-tracking - state-management complexity: intermediate model_hint: standard estimated_tokens: 500 --- ## Table of Contents - [What It Is](#what-it-is) - [Quick Start](#quick-start) - [Mental Model](#mental-model) - [When to Use](#when-to-use) - [Session Palace Templates](#session-palace-templates) - [Information Categories](#information-categories) - [Core Workflow](#core-workflow) - [Session Lifecycle](#session-lifecycle) - [Clarity Checkpoints](#clarity-checkpoints) - [Detailed Resources](#detailed-resources) - [Integration](#integration) - [Exit Criteria](#exit-criteria) # Session Palace Builder Construct temporary, session-specific memory palaces for extended conversations and complex projects. Preserves context across interruptions and enables structured information accumulation. ## What It Is Session palaces are lightweight, temporary memory structures that: - Preserve context for extended conversations - Track decisions and their rationale - Organize project artifacts spatially - Enable context recovery after interruptions - Support collaborative information gathering ## Quick Start ### Build Commands \`\`\`bash # Run build make build # Clean and rebuild make clean && make build \`\`\` ### Testing \`\`\`bash # Run tests make test # Run with verbose output make test VERBOSE=1 \`\`\` **Verification**: Run `make build && make test` to confirm build works. ## When To Use - Extended conversations requiring context preservation - Complex, multi-step projects with interrelated components - Wor