Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/english-conjugation/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
3 changes: 3 additions & 0 deletions extensions/english-conjugation/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
raycast-env.d.ts
4 changes: 4 additions & 0 deletions extensions/english-conjugation/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
5 changes: 5 additions & 0 deletions extensions/english-conjugation/AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# AGENTS

## Docs

- `docs/english-conjugation.md` — Overview of the Raycast command, conjugation flow, and development commands.
7 changes: 7 additions & 0 deletions extensions/english-conjugation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## [Initial Release] - {PR_MERGE_DATE}

- Added a Raycast command to look up the essential conjugated forms of English verbs.
- Added common collocations for supported verbs.
- Added screenshot metadata for the store listing.
30 changes: 30 additions & 0 deletions extensions/english-conjugation/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# English Verb Conjugation

A Raycast extension to look up English verb forms and common collocations in a clean, minimal interface.

## What it shows

- Infinitive
- Third-person singular
- Simple past
- Past participle
- Present participle
- Common collocations for supported verbs

## How to use

- Open `Conjugate Verb` in Raycast.
- Type an infinitive such as `go`, `write`, `take`, or `make`.
- Browse the essential forms in the list and review usage notes and collocations in the detail pane.

## Development

```bash
npm install
npm run dev
```

## Notes

- The main input is the Raycast search bar.
- The command also accepts an optional `verb` argument from Raycast root search.
Binary file added extensions/english-conjugation/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions extensions/english-conjugation/docs/english-conjugation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# English Conjugation

## Purpose

This project is a Raycast extension that lets the user type an English infinitive and immediately see the essential conjugated forms with a minimal UI.

## Main Files

| File | Responsibility |
| ------------------------ | ------------------------------------------------------------------ |
| `package.json` | Raycast manifest, command configuration, scripts, and dependencies |
| `src/conjugate-verb.tsx` | Main Raycast command UI using a `List` with detail pane |
| `src/conjugation.ts` | Input parsing and form-building logic |
| `src/collocations.ts` | Curated common-collocation dataset for frequent verbs |
| `src/eng-verber.d.ts` | Local type declaration for the conjugation package |

## Main Flow

1. Raycast opens the `conjugate-verb` command.
2. The command seeds the search bar from the optional `verb` argument.
3. Every search-bar update is treated as the current infinitive input.
4. `src/conjugation.ts` strips a leading `to`, keeps the first token, and asks the conjugation package for verb forms.
5. The helper also looks up curated common collocations for frequent verbs.
6. The UI renders the five essential forms as list items and shows lightweight usage guidance plus collocations in the detail pane.
7. Each item offers copy actions for the selected form, the collocations when available, or the full set.

## UX Notes

- The list uses custom filtering because the search bar is the verb input itself.
- The right-side detail pane keeps the main list compact and readable.
- Collocations live in the detail pane so the primary list stays minimal.
- Empty state stays explicit so the extension feels guided instead of blank.

## Config

- `npm run dev` starts Raycast development mode.
- `npm run lint` runs Raycast linting.
- `npm run build` validates the production build with `ray build -e dist`.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading