@codihaus/claude-skills 1.6.5 → 1.6.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,210 +0,0 @@
1
- # Feature Inference Patterns
2
-
3
- Map file/folder names to features.
4
-
5
- ## Core Features
6
-
7
- ### Authentication
8
-
9
- **Patterns**:
10
- ```
11
- auth/, authentication/
12
- login.*, signin.*, sign-in.*
13
- signup.*, register.*, sign-up.*
14
- logout.*, signout.*, sign-out.*
15
- forgot-password.*, reset-password.*
16
- verify.*, confirm.*, activate.*
17
- ```
18
-
19
- **Evidence files**:
20
- - `app/api/auth/[...nextauth]/route.ts`
21
- - `lib/auth.ts`, `utils/auth.ts`
22
- - `middleware.ts` (protected routes)
23
- - `components/LoginForm.*`
24
-
25
- ### User Management
26
-
27
- **Patterns**:
28
- ```
29
- user/, users/
30
- profile.*, account.*
31
- settings.*, preferences.*
32
- avatar.*, photo.*
33
- ```
34
-
35
- **Evidence files**:
36
- - `pages/profile.*`
37
- - `components/UserCard.*`
38
- - `api/users/**`
39
-
40
- ### Dashboard
41
-
42
- **Patterns**:
43
- ```
44
- dashboard/
45
- overview.*, home.* (when inside dashboard/)
46
- analytics.*, stats.*
47
- ```
48
-
49
- **Evidence files**:
50
- - `pages/dashboard/index.*`
51
- - `components/DashboardLayout.*`
52
-
53
- ### Payments & Billing
54
-
55
- **Patterns**:
56
- ```
57
- payment/, payments/
58
- checkout.*, cart.*
59
- billing.*, invoice.*
60
- subscription.*, plan.*, pricing.*
61
- stripe/, paypal/
62
- ```
63
-
64
- **Evidence files**:
65
- - `api/stripe/**`
66
- - `components/CheckoutForm.*`
67
- - `lib/stripe.ts`
68
-
69
- ### Admin Panel
70
-
71
- **Patterns**:
72
- ```
73
- admin/
74
- management/, manage/
75
- cms/, content/
76
- ```
77
-
78
- **Evidence files**:
79
- - `pages/admin/**`
80
- - `components/AdminLayout.*`
81
-
82
- ## Common Features
83
-
84
- ### Notifications
85
-
86
- **Patterns**:
87
- ```
88
- notification/, notifications/
89
- alerts/, inbox/
90
- push/, email/
91
- ```
92
-
93
- ### Messaging/Chat
94
-
95
- **Patterns**:
96
- ```
97
- message/, messages/
98
- chat/, conversation/
99
- inbox/, thread/
100
- ```
101
-
102
- ### Search
103
-
104
- **Patterns**:
105
- ```
106
- search.*, find.*
107
- filter.*, browse.*
108
- explore.*, discover.*
109
- ```
110
-
111
- ### File Upload
112
-
113
- **Patterns**:
114
- ```
115
- upload/, uploads/
116
- files/, documents/
117
- media/, assets/
118
- storage/, attachments/
119
- ```
120
-
121
- ### Orders & Products
122
-
123
- **Patterns**:
124
- ```
125
- order/, orders/
126
- product/, products/
127
- catalog/, inventory/
128
- cart/, basket/
129
- shop/, store/
130
- ```
131
-
132
- ### Teams & Organizations
133
-
134
- **Patterns**:
135
- ```
136
- team/, teams/
137
- organization/, org/
138
- workspace/, company/
139
- member/, members/
140
- invite.*, invitation.*
141
- ```
142
-
143
- ### Onboarding
144
-
145
- **Patterns**:
146
- ```
147
- onboarding/, getting-started/
148
- wizard/, setup/
149
- welcome.*, intro.*
150
- tour.*, guide.*
151
- ```
152
-
153
- ### Help & Support
154
-
155
- **Patterns**:
156
- ```
157
- help/, support/
158
- faq/, knowledge-base/
159
- ticket/, tickets/
160
- contact.*, feedback.*
161
- ```
162
-
163
- ### Reporting & Analytics
164
-
165
- **Patterns**:
166
- ```
167
- report/, reports/
168
- analytics/, metrics/
169
- insights/, stats/
170
- export.*, download.*
171
- ```
172
-
173
- ## Feature Confidence Levels
174
-
175
- ### High Confidence
176
- - Dedicated folder with multiple files
177
- - API routes for the feature
178
- - Multiple components related to feature
179
-
180
- ### Medium Confidence
181
- - Single page file
182
- - One or two related components
183
- - Mentioned in config/routes
184
-
185
- ### Low Confidence
186
- - Only file name match
187
- - Could be placeholder
188
- - No supporting files
189
-
190
- ## Output Format
191
-
192
- ```markdown
193
- ## Existing Features
194
-
195
- | Feature | Confidence | Evidence |
196
- |---------|------------|----------|
197
- | Authentication | High | `auth/`, `api/auth/`, `LoginForm.tsx` |
198
- | Dashboard | High | `pages/dashboard/`, multiple components |
199
- | User Profile | Medium | `pages/profile.tsx`, `UserCard.tsx` |
200
- | Search | Low | `SearchBar.tsx` only |
201
- | Payments | None | No evidence found |
202
- ```
203
-
204
- ## Tips
205
-
206
- 1. Look for **folder + multiple files** = likely real feature
207
- 2. Check for **API routes** to confirm backend support
208
- 3. **Config references** (next.config, .env) add confidence
209
- 4. **README mentions** confirm intentional features
210
- 5. Single component might be **planned but not built**
@@ -1,252 +0,0 @@
1
- # File Search Patterns
2
-
3
- Patterns for finding files in codebases.
4
-
5
- ## Frontend Files
6
-
7
- ### Include
8
-
9
- ```
10
- # Vue
11
- **/*.vue
12
-
13
- # React
14
- **/*.tsx
15
- **/*.jsx
16
-
17
- # Svelte
18
- **/*.svelte
19
-
20
- # Angular
21
- **/*.component.ts
22
- **/*.component.html
23
-
24
- # Next.js
25
- **/pages/**/*.tsx
26
- **/pages/**/*.ts
27
- **/app/**/page.tsx
28
- **/app/**/layout.tsx
29
-
30
- # Nuxt
31
- **/pages/**/*.vue
32
- **/layouts/**/*.vue
33
-
34
- # General
35
- **/views/**/*
36
- **/screens/**/*
37
- **/components/**/*
38
- ```
39
-
40
- ### Exclude
41
-
42
- ```
43
- # Dependencies
44
- node_modules/**
45
- vendor/**
46
- bower_components/**
47
-
48
- # Build output
49
- dist/**
50
- build/**
51
- .next/**
52
- .nuxt/**
53
- .output/**
54
- out/**
55
- .vercel/**
56
-
57
- # Generated
58
- *.min.js
59
- *.bundle.js
60
- *.chunk.js
61
- *.generated.*
62
-
63
- # Tests
64
- __tests__/**
65
- **/*.test.*
66
- **/*.spec.*
67
- **/test/**
68
- **/tests/**
69
- cypress/**
70
- e2e/**
71
-
72
- # Config & tools
73
- .git/**
74
- .github/**
75
- coverage/**
76
- .cache/**
77
- .turbo/**
78
- ```
79
-
80
- ## Backend/API Files
81
-
82
- ### Routes & Handlers
83
-
84
- ```
85
- **/api/**/*.ts
86
- **/api/**/*.js
87
- **/routes/**/*.ts
88
- **/routes/**/*.js
89
- **/controllers/**/*.ts
90
- **/handlers/**/*.ts
91
- **/server/**/*.ts
92
- ```
93
-
94
- ### Models & Schemas
95
-
96
- ```
97
- **/models/**/*.ts
98
- **/entities/**/*.ts
99
- **/schemas/**/*.ts
100
- **/types/**/*.ts
101
- prisma/schema.prisma
102
- drizzle/**/*.ts
103
- **/migrations/**/*.sql
104
- ```
105
-
106
- ### Services & Lib
107
-
108
- ```
109
- **/services/**/*.ts
110
- **/lib/**/*.ts
111
- **/utils/**/*.ts
112
- **/helpers/**/*.ts
113
- ```
114
-
115
- ## Config Files
116
-
117
- ### Package Managers
118
-
119
- ```
120
- package.json
121
- pnpm-lock.yaml
122
- yarn.lock
123
- package-lock.json
124
- requirements.txt
125
- Pipfile
126
- go.mod
127
- Cargo.toml
128
- composer.json
129
- Gemfile
130
- ```
131
-
132
- ### Framework Config
133
-
134
- ```
135
- next.config.*
136
- nuxt.config.*
137
- vite.config.*
138
- vue.config.*
139
- angular.json
140
- svelte.config.*
141
- remix.config.*
142
- astro.config.*
143
- ```
144
-
145
- ### Build Tools
146
-
147
- ```
148
- tsconfig.json
149
- jsconfig.json
150
- webpack.config.*
151
- rollup.config.*
152
- esbuild.config.*
153
- turbo.json
154
- nx.json
155
- ```
156
-
157
- ### Environment
158
-
159
- ```
160
- .env
161
- .env.example
162
- .env.local
163
- .env.development
164
- .env.production
165
- ```
166
-
167
- ## Documentation
168
-
169
- ```
170
- README.md
171
- CLAUDE.md
172
- CONTRIBUTING.md
173
- CHANGELOG.md
174
- docs/**/*.md
175
- .github/**/*.md
176
- ```
177
-
178
- ## Targeted Search Patterns
179
-
180
- ### Auth
181
-
182
- ```
183
- **/auth/**/*
184
- **/login/**/*
185
- **/signin/**/*
186
- **/signup/**/*
187
- **/register/**/*
188
- **/session/**/*
189
- middleware.ts
190
- middleware.js
191
- ```
192
-
193
- ### Payments
194
-
195
- ```
196
- **/payment/**/*
197
- **/payments/**/*
198
- **/checkout/**/*
199
- **/billing/**/*
200
- **/subscription/**/*
201
- **/stripe/**/*
202
- **/plans/**/*
203
- ```
204
-
205
- ### Users
206
-
207
- ```
208
- **/user/**/*
209
- **/users/**/*
210
- **/profile/**/*
211
- **/account/**/*
212
- **/settings/**/*
213
- ```
214
-
215
- ### Admin
216
-
217
- ```
218
- **/admin/**/*
219
- **/dashboard/**/*
220
- **/management/**/*
221
- ```
222
-
223
- ## Grep Patterns
224
-
225
- ### Auth Keywords
226
-
227
- ```
228
- nextauth|clerk|auth0|supabase.auth
229
- useSession|getSession|getServerSession
230
- jwt|jsonwebtoken
231
- bcrypt|argon2|password
232
- login|signin|signout|logout
233
- ```
234
-
235
- ### API Keywords
236
-
237
- ```
238
- router\.|app\.(get|post|put|delete|patch)
239
- createRouter|createTRPCRouter
240
- fetch\(|axios\.|ky\.
241
- graphql|gql`|useQuery
242
- ```
243
-
244
- ### Database Keywords
245
-
246
- ```
247
- prisma\.|PrismaClient
248
- drizzle\(|createClient
249
- mongoose\.|Schema\(
250
- @Entity|@Column|TypeORM
251
- knex\(|pg\(|mysql\(
252
- ```