├── .ai ├── README.md ├── architecture.md ├── context-rules.md ├── ledgers │ ├── _active.md │ ├── _template.md │ ├── config-management.md │ ├── export-functionality.md │ ├── npm-publishing-preparation.md │ ├── status-management.md │ └── template-customization.md ├── patterns.md └── project.md ├── .cursorrules ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── assets ├── wrinkl_logo.png ├── wrinkl_logo_official.svg ├── wrinkl_logo_w_text.png └── wrinkl_logo_w_text.svg ├── augment.md ├── bin └── wrinkl.js ├── biome.json ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── src ├── commands │ ├── archive.js │ ├── feature.js │ ├── init.js │ └── list.js ├── index.js ├── templates │ ├── ai │ │ ├── README.md │ │ ├── architecture.md │ │ ├── context-rules.md │ │ ├── patterns.md │ │ └── project.md │ ├── augment.md │ ├── copilot-instructions.md │ ├── cursorrules.md │ └── ledgers │ │ ├── _active.md │ │ └── _template.md └── utils │ ├── config.js │ ├── logger.js │ └── package-manager.js └── test ├── commands ├── archive.test.js ├── feature.test.js ├── init.test.js └── list.test.js ├── init.test.js └── setup.js /.ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/README.md -------------------------------------------------------------------------------- /.ai/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/architecture.md -------------------------------------------------------------------------------- /.ai/context-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/context-rules.md -------------------------------------------------------------------------------- /.ai/ledgers/_active.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/ledgers/_active.md -------------------------------------------------------------------------------- /.ai/ledgers/_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/ledgers/_template.md -------------------------------------------------------------------------------- /.ai/ledgers/config-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/ledgers/config-management.md -------------------------------------------------------------------------------- /.ai/ledgers/export-functionality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/ledgers/export-functionality.md -------------------------------------------------------------------------------- /.ai/ledgers/npm-publishing-preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/ledgers/npm-publishing-preparation.md -------------------------------------------------------------------------------- /.ai/ledgers/status-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/ledgers/status-management.md -------------------------------------------------------------------------------- /.ai/ledgers/template-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/ledgers/template-customization.md -------------------------------------------------------------------------------- /.ai/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/patterns.md -------------------------------------------------------------------------------- /.ai/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.ai/project.md -------------------------------------------------------------------------------- /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.cursorrules -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/README.md -------------------------------------------------------------------------------- /assets/wrinkl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/assets/wrinkl_logo.png -------------------------------------------------------------------------------- /assets/wrinkl_logo_official.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/assets/wrinkl_logo_official.svg -------------------------------------------------------------------------------- /assets/wrinkl_logo_w_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/assets/wrinkl_logo_w_text.png -------------------------------------------------------------------------------- /assets/wrinkl_logo_w_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/assets/wrinkl_logo_w_text.svg -------------------------------------------------------------------------------- /augment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/augment.md -------------------------------------------------------------------------------- /bin/wrinkl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/bin/wrinkl.js -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/biome.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/commands/archive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/commands/archive.js -------------------------------------------------------------------------------- /src/commands/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/commands/feature.js -------------------------------------------------------------------------------- /src/commands/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/commands/init.js -------------------------------------------------------------------------------- /src/commands/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/commands/list.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/index.js -------------------------------------------------------------------------------- /src/templates/ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/ai/README.md -------------------------------------------------------------------------------- /src/templates/ai/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/ai/architecture.md -------------------------------------------------------------------------------- /src/templates/ai/context-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/ai/context-rules.md -------------------------------------------------------------------------------- /src/templates/ai/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/ai/patterns.md -------------------------------------------------------------------------------- /src/templates/ai/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/ai/project.md -------------------------------------------------------------------------------- /src/templates/augment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/augment.md -------------------------------------------------------------------------------- /src/templates/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/copilot-instructions.md -------------------------------------------------------------------------------- /src/templates/cursorrules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/cursorrules.md -------------------------------------------------------------------------------- /src/templates/ledgers/_active.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/ledgers/_active.md -------------------------------------------------------------------------------- /src/templates/ledgers/_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/templates/ledgers/_template.md -------------------------------------------------------------------------------- /src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/utils/config.js -------------------------------------------------------------------------------- /src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/utils/logger.js -------------------------------------------------------------------------------- /src/utils/package-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/src/utils/package-manager.js -------------------------------------------------------------------------------- /test/commands/archive.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/test/commands/archive.test.js -------------------------------------------------------------------------------- /test/commands/feature.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/test/commands/feature.test.js -------------------------------------------------------------------------------- /test/commands/init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/test/commands/init.test.js -------------------------------------------------------------------------------- /test/commands/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/test/commands/list.test.js -------------------------------------------------------------------------------- /test/init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/test/init.test.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangebread/wrinkl/HEAD/test/setup.js --------------------------------------------------------------------------------