├── .clinerules ├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.ja.md ├── README.md ├── README.zh.md ├── docs ├── refactoring-plan_20250319.md └── type-system-refactoring-plan.md ├── examples ├── activity-logging-examples.md ├── analytics-logging-examples.md └── error-logging-rules.md ├── package.json ├── src ├── functions │ ├── file-io.ts │ ├── log-entry.ts │ ├── pagination.ts │ ├── search-filters.ts │ ├── search.ts │ └── validation.ts ├── index.ts ├── schemas │ └── zod-schemas.ts ├── tools │ └── mcp-tools.ts └── types │ ├── core.ts │ ├── result.ts │ └── search.ts ├── tests └── unit │ ├── functions │ ├── file-io.test.ts │ ├── log-entry.test.ts │ ├── pagination.test.ts │ ├── search-filters.test.ts │ ├── search.test.ts │ └── validation.test.ts │ ├── tools │ └── mcp-tools.test.ts │ └── types │ ├── core.test.ts │ └── result.test.ts ├── tsconfig.json └── vitest.config.ts /.clinerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/.clinerules -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/README.zh.md -------------------------------------------------------------------------------- /docs/refactoring-plan_20250319.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/docs/refactoring-plan_20250319.md -------------------------------------------------------------------------------- /docs/type-system-refactoring-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/docs/type-system-refactoring-plan.md -------------------------------------------------------------------------------- /examples/activity-logging-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/examples/activity-logging-examples.md -------------------------------------------------------------------------------- /examples/analytics-logging-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/examples/analytics-logging-examples.md -------------------------------------------------------------------------------- /examples/error-logging-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/examples/error-logging-rules.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/package.json -------------------------------------------------------------------------------- /src/functions/file-io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/functions/file-io.ts -------------------------------------------------------------------------------- /src/functions/log-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/functions/log-entry.ts -------------------------------------------------------------------------------- /src/functions/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/functions/pagination.ts -------------------------------------------------------------------------------- /src/functions/search-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/functions/search-filters.ts -------------------------------------------------------------------------------- /src/functions/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/functions/search.ts -------------------------------------------------------------------------------- /src/functions/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/functions/validation.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/schemas/zod-schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/schemas/zod-schemas.ts -------------------------------------------------------------------------------- /src/tools/mcp-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/tools/mcp-tools.ts -------------------------------------------------------------------------------- /src/types/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/types/core.ts -------------------------------------------------------------------------------- /src/types/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/types/result.ts -------------------------------------------------------------------------------- /src/types/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/src/types/search.ts -------------------------------------------------------------------------------- /tests/unit/functions/file-io.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tests/unit/functions/file-io.test.ts -------------------------------------------------------------------------------- /tests/unit/functions/log-entry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tests/unit/functions/log-entry.test.ts -------------------------------------------------------------------------------- /tests/unit/functions/pagination.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tests/unit/functions/pagination.test.ts -------------------------------------------------------------------------------- /tests/unit/functions/search-filters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tests/unit/functions/search-filters.test.ts -------------------------------------------------------------------------------- /tests/unit/functions/search.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tests/unit/functions/search.test.ts -------------------------------------------------------------------------------- /tests/unit/functions/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tests/unit/functions/validation.test.ts -------------------------------------------------------------------------------- /tests/unit/tools/mcp-tools.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tests/unit/tools/mcp-tools.test.ts -------------------------------------------------------------------------------- /tests/unit/types/core.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tests/unit/types/core.test.ts -------------------------------------------------------------------------------- /tests/unit/types/result.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tests/unit/types/result.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annenpolka/roo-logger/HEAD/vitest.config.ts --------------------------------------------------------------------------------