mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 04:53:38 +02:00
The credit system was overengineered for the local-first architecture: - Productivity micro-credits (task/event/contact creation at 0.02 credits) made no sense since these operations happen locally in IndexedDB with zero server cost and were never enforced - Guild pool system (6 DB tables, spending limits, membership checks) had no active users - Gift system had 5 types (simple/personalized/split/first_come/riddle) when 2 suffice Now credits are only charged for operations that actually cost money: AI API calls and premium features (sync, exports). This makes the value proposition clear to users. Changes: - Remove 8 productivity operations + CreditCategory.PRODUCTIVITY from @mana/credits - Delete guild pool service, routes, schema (3 files); remove guild refs from 8 backend files - Simplify gifts to simple + personalized only; remove bcrypt/riddle/portions logic - Update all frontend pages (credits dashboard, gift create/redeem, public gift page) - Update shared-hono consumeCredits() to remove creditSource parameter - Update mana-credits CLAUDE.md Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
1,003 B
JavaScript
35 lines
1,003 B
JavaScript
// @ts-check
|
|
import { baseConfig, typescriptConfig, svelteConfig, prettierConfig } from '@mana/eslint-config';
|
|
|
|
export default [
|
|
{
|
|
ignores: ['dist/**', '.svelte-kit/**', 'node_modules/**'],
|
|
},
|
|
...baseConfig,
|
|
...typescriptConfig,
|
|
...svelteConfig,
|
|
...prettierConfig,
|
|
// Guard: prevent raw liveQuery imports in module code. All modules
|
|
// must use useLiveQueryWithDefault from @mana/local-store/svelte
|
|
// instead, which provides a reactive { value, loading, error } shape.
|
|
// Raw liveQuery returns an Observable that requires manual .subscribe()
|
|
// boilerplate and was the root cause of 38 type errors.
|
|
{
|
|
files: ['src/lib/modules/**/queries.ts'],
|
|
rules: {
|
|
'no-restricted-imports': [
|
|
'error',
|
|
{
|
|
paths: [
|
|
{
|
|
name: 'dexie',
|
|
importNames: ['liveQuery'],
|
|
message:
|
|
'Use useLiveQueryWithDefault from @mana/local-store/svelte instead of raw liveQuery. See the Observable migration commit for rationale.',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
];
|