Skip to content

Commit 87d6553

Browse files
committed
feat: remove skill types and move architecture docs to references
1 parent 72e92f8 commit 87d6553

File tree

31 files changed

+33
-42
lines changed

31 files changed

+33
-42
lines changed

.agent/skills/riligar-business-startup/SKILL.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
name: riligar-business-startup
3-
type: business
43
description: Comprehensive startup planning toolkit. Use for business cases, financial projections (3-5 year models), and market opportunity analysis (TAM/SAM/SOM). Covers investor-ready documentation, fundraising strategy, and go-to-market planning.
54
---
65

.agent/skills/riligar-design-system/SKILL.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
name: riligar-design-system
3-
type: design
43
description: Especialista no Sistema Visual da RiLiGar. Use para: (1) Criação de interfaces web e mobile (Light/Dark Mode), (2) Implementação de componentes UI (Mantine Only), (3) Garantir estética minimalista "Content-First", (4) Aplicar tokens de design via Mantine Theme.
54
---
65

.agent/skills/riligar-dev-architecture/SKILL.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
name: riligar-dev-architecture
3-
type: development
43
description: Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisions or analyzing system design.
54
---
65

@@ -12,13 +11,13 @@ description: Architectural decision-making framework. Requirements analysis, tra
1211

1312
**Read ONLY files relevant to the request!** Check the content map, find what you need.
1413

15-
| File | Description | When to Read |
16-
| ----------------------- | ---------------------------------------- | ---------------------------- |
17-
| `context-discovery.md` | Questions to ask, project classification | Starting architecture design |
18-
| `trade-off-analysis.md` | ADR templates, trade-off framework | Documenting decisions |
19-
| `pattern-selection.md` | Decision trees, anti-patterns | Choosing patterns |
20-
| `examples.md` | MVP, SaaS, Enterprise examples | Reference implementations |
21-
| `patterns-reference.md` | Quick lookup for patterns | Pattern comparison |
14+
| File | Description | When to Read |
15+
| ----------------------------------- | ---------------------------------------- | ---------------------------- |
16+
| `references/context-discovery.md` | Questions to ask, project classification | Starting architecture design |
17+
| `references/trade-off-analysis.md` | ADR templates, trade-off framework | Documenting decisions |
18+
| `references/pattern-selection.md` | Decision trees, anti-patterns | Choosing patterns |
19+
| `references/examples.md` | MVP, SaaS, Enterprise examples | Reference implementations |
20+
| `references/patterns-reference.md` | Quick lookup for patterns | Pattern comparison |
2221

2322
---
2423

.agent/skills/riligar-dev-architecture/context-discovery.md renamed to .agent/skills/riligar-dev-architecture/references/context-discovery.md

File renamed without changes.

.agent/skills/riligar-dev-architecture/examples.md renamed to .agent/skills/riligar-dev-architecture/references/examples.md

File renamed without changes.

.agent/skills/riligar-dev-architecture/pattern-selection.md renamed to .agent/skills/riligar-dev-architecture/references/pattern-selection.md

File renamed without changes.

.agent/skills/riligar-dev-architecture/patterns-reference.md renamed to .agent/skills/riligar-dev-architecture/references/patterns-reference.md

File renamed without changes.

.agent/skills/riligar-dev-architecture/trade-off-analysis.md renamed to .agent/skills/riligar-dev-architecture/references/trade-off-analysis.md

File renamed without changes.

.agent/skills/riligar-dev-auth-elysia/SKILL.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
name: riligar-dev-auth-elysia
3-
type: development
43
description: 'Comprehensive guide for integrating the Riligar Auth Elysia SDK into backend servers. Use when a user needs to: (1) Set up a backend auth plugin, (2) Configure Elysia with Riligar Secret Key, (3) Protect API routes or groups, (4) Access authenticated user data in handlers, (5) Perform manual JWT verification.'
54
---
65

@@ -20,13 +19,18 @@ npm install @riligar/auth-elysia
2019

2120
### 2. Environment Variables
2221

23-
Set up your Secret Key and URLs in your `.env` file.
22+
Set up your Secret Key and URLs in your environment files.
2423

2524
> [!CAUTION]
2625
> Backend integration requires the **Secret Key** (`sk_...`). Never share this key or include it in client-side code.
2726
2827
```bash
29-
# .env
28+
# .env.development
29+
AUTH_API_URL=https://manager.myauth.click
30+
AUTH_API_SECRET=sk_test_your_secret_key
31+
AUTH_JWKS_URL=https://manager.myauth.click/.well-known/jwks.json
32+
33+
# .env.production
3034
AUTH_API_URL=https://manager.myauth.click
3135
AUTH_API_SECRET=sk_live_your_secret_key
3236
AUTH_JWKS_URL=https://manager.myauth.click/.well-known/jwks.json

.agent/skills/riligar-dev-auth-react/SKILL.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
name: riligar-dev-auth-react
3-
type: development
43
description: 'Comprehensive guide for integrating the Riligar Auth React SDK into web applications. Use when a user needs to: (1) Set up authentication from scratch, (2) Configure AuthProvider, (3) Implement route protection, (4) Use auth hooks or pre-built UI components, (5) Handle login/signup/profile/magic links in React.'
54
---
65

@@ -20,13 +19,16 @@ bun add @riligar/auth-react
2019

2120
### 2. Environment Variables
2221

23-
Set up your Public Key in your `.env.local` file.
22+
Set up your Public Key in your environment files.
2423

2524
> [!IMPORTANT]
2625
> Always use the **Public Key** (`pk_...`) in the frontend. Never expose your Secret Key.
2726
2827
```bash
29-
# .env.local
28+
# .env.development
29+
VITE_AUTH_API_KEY=pk_test_your_public_key
30+
31+
# .env.production
3032
VITE_AUTH_API_KEY=pk_live_your_public_key
3133
```
3234

0 commit comments

Comments
 (0)