@robinpath/asana 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +117 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,117 @@
1
+ # @robinpath/asana
2
+
3
+ > Asana module for RobinPath.
4
+
5
+ ![Category](https://img.shields.io/badge/category-Project-management-blue) ![Functions](https://img.shields.io/badge/functions-23-green) ![Auth](https://img.shields.io/badge/auth-API%20Key-orange) ![License](https://img.shields.io/badge/license-MIT-brightgreen)
6
+
7
+ ## Why use this module?
8
+
9
+ The `asana` module lets you:
10
+
11
+ - listWorkspaces
12
+ - listProjects
13
+ - getProject
14
+ - createProject
15
+ - updateProject
16
+
17
+ All functions are callable directly from RobinPath scripts with a simple, consistent API.
18
+
19
+ ## Installation
20
+
21
+ ```bash
22
+ npm install @robinpath/asana
23
+ ```
24
+
25
+ ## Quick Start
26
+
27
+ **1. Set up credentials**
28
+
29
+ ```robinpath
30
+ asana.setCredentials "your-credentials"
31
+ ```
32
+
33
+ **2. listWorkspaces**
34
+
35
+ ```robinpath
36
+ asana.listWorkspaces
37
+ ```
38
+
39
+ ## Available Functions
40
+
41
+ | Function | Description |
42
+ |----------|-------------|
43
+ | `asana.setCredentials` | Configure asana credentials. |
44
+ | `asana.listWorkspaces` | listWorkspaces |
45
+ | `asana.listProjects` | listProjects |
46
+ | `asana.getProject` | getProject |
47
+ | `asana.createProject` | createProject |
48
+ | `asana.updateProject` | updateProject |
49
+ | `asana.deleteProject` | deleteProject |
50
+ | `asana.listTasks` | listTasks |
51
+ | `asana.getTask` | getTask |
52
+ | `asana.createTask` | createTask |
53
+ | `asana.updateTask` | updateTask |
54
+ | `asana.deleteTask` | deleteTask |
55
+ | `asana.addComment` | addComment |
56
+ | `asana.listSections` | listSections |
57
+ | `asana.createSection` | createSection |
58
+ | `asana.addTaskToSection` | addTaskToSection |
59
+ | `asana.listTags` | listTags |
60
+ | `asana.createTag` | createTag |
61
+ | `asana.addTagToTask` | addTagToTask |
62
+ | `asana.getUser` | getUser |
63
+ | `asana.listTeams` | listTeams |
64
+ | `asana.searchTasks` | searchTasks |
65
+ | `asana.listSubtasks` | listSubtasks |
66
+
67
+ ## Examples
68
+
69
+ ### listWorkspaces
70
+
71
+ ```robinpath
72
+ asana.listWorkspaces
73
+ ```
74
+
75
+ ### listProjects
76
+
77
+ ```robinpath
78
+ asana.listProjects
79
+ ```
80
+
81
+ ### getProject
82
+
83
+ ```robinpath
84
+ asana.getProject
85
+ ```
86
+
87
+ ## Integration with RobinPath
88
+
89
+ ```typescript
90
+ import { RobinPath } from "@wiredwp/robinpath";
91
+ import Module from "@robinpath/asana";
92
+
93
+ const rp = new RobinPath();
94
+ rp.registerModule(Module.name, Module.functions);
95
+ rp.registerModuleMeta(Module.name, Module.functionMetadata);
96
+
97
+ const result = await rp.executeScript(`
98
+ asana.setCredentials "your-credentials"
99
+ asana.listWorkspaces
100
+ `);
101
+ ```
102
+
103
+ ## Full API Reference
104
+
105
+ See [MODULE.md](./MODULE.md) for complete documentation including all parameters, return types, error handling, and advanced examples.
106
+
107
+ ## Related Modules
108
+
109
+ - [`@robinpath/clickup`](../clickup) — ClickUp module for complementary functionality
110
+ - [`@robinpath/jira`](../jira) — Jira module for complementary functionality
111
+ - [`@robinpath/linear`](../linear) — Linear module for complementary functionality
112
+ - [`@robinpath/monday`](../monday) — Monday.com module for complementary functionality
113
+ - [`@robinpath/todoist`](../todoist) — Todoist module for complementary functionality
114
+
115
+ ## License
116
+
117
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robinpath/asana",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },