This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # == PILLAR IV: INTERACTIVE VARIABLE IN PATH AND CONTENT TEST == | |
| # NOTE: We deliberately OMIT the definitions for 'version' and 'config_name'. | |
| /build-{{ version }}/ | |
| # Variable 'config_name' is missing definition, forces prompt. | |
| config.json :: "{\n \"version\": \"{{ version }}\",\n \"mode\": \"production\"\n}" | |
| # Variable 'source_file' is missing definition, forces prompt. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # == PILLAR III: ROOT AND SLASHE RESILIENCE TEST == | |
| $$ service = api | |
| # Root structure with a leading slash and trailing slash | |
| /{{ service }}-service// | |
| # Intentional empty line with spaces | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # == PILLAR II: AMBIGUOUS CONTENT & ESCAPE TEST == | |
| $$ author = JaneDoe | |
| $$ year = 2024 | |
| /project-{{ year }}/ | |
| # Test Inline Content with embedded newlines and quotes | |
| config.json :: "{\n \"author\": \"{{ author }}\",\n \"port\": 8080\n}" | |
| # Test External Seed Path (<<) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # == PILLAR I: MIXED HIERARCHY & EXECUTION TEST == | |
| $$ app_name = sentinel | |
| $$ db_name = postgresql | |
| $$ version = 1.2 | |
| /{{ app_name }}-app// | |
| src/ | |
| models/ | |
| user.py | |
| data/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $$ framework = "React" | |
| /celestial-project/ | |
| └── main.jsx :: "console.log('Hello from a remote {{ framework }} project!');" |