https://github.com/hackergrrl/agenda-cli
:calendar: Keep track of things in the future.
https://github.com/hackergrrl/agenda-cli
Last synced: 15 days ago
JSON representation
:calendar: Keep track of things in the future.
- Host: GitHub
- URL: https://github.com/hackergrrl/agenda-cli
- Owner: hackergrrl
- Created: 2017-02-19T06:52:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-19T07:50:51.000Z (over 8 years ago)
- Last Synced: 2025-05-24T15:16:34.450Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 12
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# agenda
> a small cli program to keep track of things in the future
## Usage
```
$ agenda --helpUSAGE:
agenda [day|week|month]
Prints all upcoming events for the time period ahead. If no argument is
given, 'week' is shown.agenda add 'date string' 'event description'
Creates a new event with the given description and date.
agenda remove
Remove an event by its ID hash.
$ agenda add 'next wednesday' 'L.A. conference'
[825e33a09164898b] Added "L.A. conference": next wednesday.$ agenda
Wed Feb 22: L.A. conference [825e33a09164898b]
```## Install
With [npm](https://npmjs.org/) installed, run
```
$ npm install -g agenda-cli
```Note that the package name is `agenda-cli`, not `agenda`.
## Future
`agenda` uses [norcal](https://github.com/substack/norcal) under the hood, which
means the underlying calendaring information is stored in a peer-to-peer data
structure. This could have fun & interesting ramifications, such as serverless
sharing of agendas with others!## License
ISC