HAXPlaybook/README.md

136 строки
7.8 KiB
Markdown
Исходник Постоянная ссылка Обычный вид История

2021-01-05 02:06:50 +03:00
# Introduction
2020-12-08 22:20:32 +03:00
2021-01-08 23:33:33 +03:00
The HAX Playbook is an interactive tool for generating interaction scenarios to test when designing
user-facing AI systems.
A default survey about designing an AI system is included in this repository. It provides a
demonstration of the features supported by the web app.
2020-12-08 22:20:32 +03:00
2021-01-05 02:06:50 +03:00
The web app's features include fully customizable contextual help cards, salutation message,
farewell message, and a list of tasks based on survey results. All of these components are read
from a JSON file. See the Extension section for more details.
2020-12-08 22:20:32 +03:00
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
# Getting started
2021-01-05 02:06:50 +03:00
2021-01-06 03:49:53 +03:00
To run the app, open a terminal in the root directory of the repository and run:
2021-01-05 02:06:50 +03:00
```
$> npm install
$> npm start
```
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
# Extending survey functionality
2021-01-05 02:06:50 +03:00
The survey and textual content are defined in JSON files. To add your own content, modify the JSON files
as instructed below.
## Survey
The survey is defined in `src/data/survey.json`. SurveyJS is the library used to render
the survey. To create your own survey, use the [survey creator](https://surveyjs.io/create-survey) on the SurveyJS website.
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
To export the survey you've created, click on the `JSON Editor` tab and copy the contents, then paste into `src/data/survey.json`.
### Survey guidelines
2021-01-05 02:06:50 +03:00
To make sure your survey is supported, please adhere to the following guidelines:
- Only use the radio group, dropdown, and boolean survey components.
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
- Specify a `name` for each question. A default name like `question1` will be provided automatically in the SurveyJS builder. It's better to use a descriptive name to make the generated `content.json` file more readable.
2021-01-05 02:06:50 +03:00
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
### How to create a cascading survey
The survey included with the HAX Playbook has a cascading-question effect, causing new questions to appear when the user selects an answer.
Cascading questions are implemented by configuring the visibility rules for questions in the survey.
The visibility rules can be configured in the SurveyJS builder or in the JSON file.
To configure visibility in the SurveyJS builder, select the question to modify, then select the `Visible if` rule in the `Logic` section of the `Properties` toolbar.
A cascading-question effect is implemented by using the rule `{previous_question_name} is not empty`.
Effectively, this rule says, "if an answer has been selected for the previous question, then show this question."
2021-01-05 02:06:50 +03:00
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
## Textual content
2021-01-05 02:06:50 +03:00
All of the content outside of the survey itself is defined in `src/data/content.json`. This content is used to enrich the user experience
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
by providing an introduction, instructions for each survey question, contextual help for each choice, and tasks for each choice. HTML is supported inside each component.
2021-01-05 02:06:50 +03:00
### Generating a starter file
A starter content.json file can be generated from a survey.json file. The starter file will contain a skeleton of the data with empty strings
ready for you to fill in. There are two options to generate it.
#### Script
To use the script, open a terminal at the repository's root directory and do:
```
$> node scripts/generate.js <path_to_survey.json> <output_file_name>
```
#### API
If you can't run node locally, there is also an API available. Send your `survey.json` in the request body.
`POST https://surveymeta.azurewebsites.net/api/generate`
### Explanation of properties in content.json
#### Top-level properties
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
- introduction: The message displayed before the survey begins. This is optional.
- surveyInstructions: The message to display above the survey. This property has a `title` and a `message`.
- taskInstructions: The message to display above the list of tasks. This property also has a `title` and a `message`.
2021-01-05 02:06:50 +03:00
#### Question properties
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
- name: The name of the question. Must match the question name in `survey.json`.
- category: The category for the question. Tasks will be consolidated into sections by category.
2021-01-05 02:06:50 +03:00
#### Choice properties
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
- name: The name of the choice. Must match the choice name in `survey.json`.
- definition: A message that will appear below the survey choice, along with the ? button.
- examples: Contains an array of examples. These examples are shown in the help pop-up when the ? button is clicked for that choice.
2021-01-05 02:06:50 +03:00
- taskCard: Defines the tasks corresponding to the question. Tasks are shown in the survey results page.
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
#### Example properties
- name: The title of the example. Appears in the help dialog as a heading.
- details: The message for the example. HTML is supported.
- visibleIf: A logic expression that controls whether or not this example is visible. This can be used to provide contextual examples based on the user's choices in the survey. [Syntax documentation](#syntax-for-visibleif-logic)
2021-01-05 02:06:50 +03:00
#### Task card properties
- message: A message to show for the entire group of tasks.
- tasks: An array of tasks.
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
#### Task properties
2021-01-05 02:06:50 +03:00
- name: The title of the task.
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
- details: The message for to the task. HTML is supported.
- visibleIf: A logic expression that controls whether or not this task is visible. This can be used to provide contextual tasks based on the user's choices in the survey. [Syntax documentation](#syntax-for-visibleif-logic)
### Syntax for visibleIf logic
SurveyJS includes a robust domain-specific language for controlling the flow of the survey. See https://surveyjs.io/Documentation/Library#conditions for the official documentation and examples. Configuring logic in the [survey creator](https://surveyjs.io/create-survey) is a good option if you don't want to handwrite code.
Here are some basic examples to get you started.
- Check if the user selected a certain choice: `"visibleIf": "{questionName} = 'choice'"`
- Check if the user **did not** select a choice: `"visibleIf": "{questionName} <> 'choice'"`
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
# Contributing
2020-12-08 22:20:32 +03:00
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
Check [CONTRIBUTING](CONTRIBUTING.md) page.
2020-12-08 22:20:32 +03:00
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
# Research and acknowledgements
This project materializes and implements ideas from ongoing research on Human-AI interaction. Here is a list of development and research contributors:
2020-12-08 22:20:32 +03:00
**Current Contributors**: [Nicholas King](https://www.nickbking.com/), [Jingya Chen](https://www.jingyachen.net/), [Kathleen Walker](https://www.linkedin.com/in/kathleenedits/), [Mihaela Vorvoreanu](https://mihaelav.com/), [Xavier Fernandes](https://www.linkedin.com/in/praphat-xavier-fernandes-86574814/), [Juan Lema](http://juanlema.com), [Adam Fourney](https://www.adamfourney.com/), [Saleema Amershi](https://www.linkedin.com/in/saleema-amershi/)
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
**Research Contributors**: [Matthew K. Hong](https://www.matthewkhong.com/), [Adam Fourney](https://www.adamfourney.com/), [Derek DeBellis](https://www.linkedin.com/in/derekdebellis/), [Saleema Amershi](https://www.linkedin.com/in/saleema-amershi/)
**ACM Reference Format**:
Matthew K. Hong, Adam Fourney, Derek DeBellis, and Saleema Amershi. 2021. Planning for Natural Language Failures with the AI
Playbook. In CHI Conference on Human Factors in Computing Systems (CHI 21), May 8–13, 2021, Yokohama, Japan. ACM, New York,
NY, USA, 16 pages. https://doi.org/10.1145/3411764.3445735
# Microsoft Open Source Code of Conduct
2020-12-08 22:20:32 +03:00
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
# License
This project is licensed under the terms of the MIT license. See [LICENSE.txt](LICENSE.txt) for additional details.
2020-12-08 22:20:32 +03:00
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
# Trademarks
2020-12-08 22:20:32 +03:00
CHI2021 release candidate (#54) * Scenarios in column to the right with counts * Circle background for scenario counts * saving work * Collapsible scenarios working * Cascading survey questions * Definitions on survey choices * Allow null instructions * Update content.json * Prototype of definitions and help button * saving work * Fix unique key issue for definitions * Fix broken scenario display regression * Help popup first draft * Undo implemented. Todo: derive task state * Derive tasks from survey state. Implement clear button. * Style changes based on feedback - blue background, font sizes * Refactor to have proper alignment of elements on page, plus a title bar * Fix misspelled JSON properties for action_sequence * Fix multi-class definition * Large color & style rework (thanks Mickey) * typo fix * Sticky title bar. Undo & counters in title bar. * Blue close button in help popup * Remove 'example n' from the help popup content * Update readme. Update generation script. Fix compiler warnings. * Sentence case for buttons. Remove empty task messages. * Add copyright headers * Add contributing.md * Compliance and acknowledgements updates * Create dockerfile * Undo button title; footer * Grammatical corrections to readme * Kathy's content revisions * Make footer fixed on the bottom to work around survey overflow issue * Copyright symbol; Small content edit; Extra margin on the TaskList to prevent overflow past the footer * Update doi Co-authored-by: KathleenW1 <68083687+KathleenW1@users.noreply.github.com> Co-authored-by: John (Juan) Lema <jlema@users.noreply.github.com>
2021-01-29 03:52:32 +03:00
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.