Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Motion extension #17462

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 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/motion/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
45 changes: 45 additions & 0 deletions extensions/motion/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store

# Node.js
node_modules/
npm-debug.log
yarn-debug.log
yarn-error.log

# Build files
dist/
build/
.raycast/

# Environment
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# IDE files
.idea/
.vscode/
*.code-workspace

# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Logs
logs
*.log
4 changes: 4 additions & 0 deletions extensions/motion/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/motion/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Motion Changelog

## [Initial Version] - {PR_MERGE_DATE}
52 changes: 52 additions & 0 deletions extensions/motion/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Motion Raycast Extension

A Raycast extension for interacting with the [Motion](https://www.usemotion.com/) task management platform directly from your desktop.

## Features

- **Add Task**: Quickly create new tasks with title, description, due date, priority, and label
- **Query Motion**: Ask AI about your Motion tasks and schedule
- **Debug Workspaces**: View and debug workspace information

## Installation

<<<<<<< HEAD
1. Clone this repository
2. Open the directory in your terminal
3. Run `npm install` to install dependencies
4. Run `npm run dev` to start the development server
=======
1. Install the extension from the Raycast store.
2. Set up your Motion API credentials:
- Get your API key from Motion's developer settings
- Find your workspace ID in your Motion account (to be confirmed how to do this)
- Add these to the extension preferences in Raycast
>>>>>>> origin/main

## Configuration

1. Get your Motion API key from the Motion platform
2. Configure the extension with your API key

## Development

This extension is built with:
- React
- Raycast API
- TypeScript

## License

MIT

## Author

Created by Owen Price

```bash
# Install dependencies
npm install

# Start development server
npm run dev
```
Binary file added extensions/motion/assets/extension-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading