Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
14 changes: 14 additions & 0 deletions extensions/focusmate/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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
compiled_raycast_rust

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/focusmate/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
9 changes: 9 additions & 0 deletions extensions/focusmate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Focusmate Changelog

## [Initial Version] - {PR_MERGE_DATE}

### Add Commands

- View your Focusmate profile, including user ID, total session count, timezone, and favorite status
- View your Focusmate sessions from the last 30 days
- Open the Focusmate dashboard in your browser
9 changes: 9 additions & 0 deletions extensions/focusmate/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Focusmate

View your [Focusmate](https://focusmate.com) sessions and profile information.

## Setup

This extension requires a Focusmate API key. You can generate one from your [Focusmate account settings](https://www.focusmate.com/profile/edit).

After installing, open any of the extension's commands and you will be prompted to enter your API key. The key is stored securely in Raycast preferences.
Binary file added extensions/focusmate/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.
6 changes: 6 additions & 0 deletions extensions/focusmate/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const { defineConfig } = require("eslint/config");
const raycastConfig = require("@raycast/eslint-config");

module.exports = defineConfig([
...raycastConfig,
]);
Loading
Loading